Class: Google::Apis::RunV1alpha1::OwnerReference
- Inherits:
-
Object
- Object
- Google::Apis::RunV1alpha1::OwnerReference
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/run_v1alpha1/classes.rb,
generated/google/apis/run_v1alpha1/representations.rb,
generated/google/apis/run_v1alpha1/representations.rb
Overview
OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.
Instance Attribute Summary collapse
-
#api_version ⇒ String
API version of the referent.
-
#block_owner_deletion ⇒ Boolean
(also: #block_owner_deletion?)
If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed.
-
#controller ⇒ Boolean
(also: #controller?)
If true, this reference points to the managing controller.
-
#kind ⇒ String
Kind of the referent.
-
#name ⇒ String
Name of the referent.
-
#uid ⇒ String
UID of the referent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OwnerReference
constructor
A new instance of OwnerReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OwnerReference
Returns a new instance of OwnerReference
2642 2643 2644 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2642 def initialize(**args) update!(**args) end |
Instance Attribute Details
#api_version ⇒ String
API version of the referent.
Corresponds to the JSON property apiVersion
2602 2603 2604 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2602 def api_version @api_version end |
#block_owner_deletion ⇒ Boolean Also known as: block_owner_deletion?
If true, AND if the owner has the "foregroundDeletion" finalizer, then
the owner cannot be deleted from the key-value store until this
reference is removed.
Defaults to false.
To set this field, a user needs "delete" permission of the owner,
otherwise 422 (Unprocessable Entity) will be returned.
+optional
Corresponds to the JSON property blockOwnerDeletion
2613 2614 2615 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2613 def block_owner_deletion @block_owner_deletion end |
#controller ⇒ Boolean Also known as: controller?
If true, this reference points to the managing controller.
+optional
Corresponds to the JSON property controller
2620 2621 2622 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2620 def controller @controller end |
#kind ⇒ String
Kind of the referent.
More info:
https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds
Corresponds to the JSON property kind
2628 2629 2630 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2628 def kind @kind end |
#name ⇒ String
Name of the referent.
More info: http://kubernetes.io/docs/user-guide/identifiers#names
Corresponds to the JSON property name
2634 2635 2636 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2634 def name @name end |
#uid ⇒ String
UID of the referent.
More info: http://kubernetes.io/docs/user-guide/identifiers#uids
Corresponds to the JSON property uid
2640 2641 2642 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2640 def uid @uid end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2647 2648 2649 2650 2651 2652 2653 2654 |
# File 'generated/google/apis/run_v1alpha1/classes.rb', line 2647 def update!(**args) @api_version = args[:api_version] if args.key?(:api_version) @block_owner_deletion = args[:block_owner_deletion] if args.key?(:block_owner_deletion) @controller = args[:controller] if args.key?(:controller) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @uid = args[:uid] if args.key?(:uid) end |