Class: Google::Apis::RunV1beta1::OwnerReference

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/run_v1beta1/classes.rb,
generated/google/apis/run_v1beta1/representations.rb,
generated/google/apis/run_v1beta1/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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ OwnerReference

Returns a new instance of OwnerReference



1193
1194
1195
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1193

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#api_versionString

API version of the referent. Corresponds to the JSON property apiVersion

Returns:

  • (String)


1153
1154
1155
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1153

def api_version
  @api_version
end

#block_owner_deletionBoolean 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

Returns:

  • (Boolean)


1164
1165
1166
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1164

def block_owner_deletion
  @block_owner_deletion
end

#controllerBoolean Also known as: controller?

If true, this reference points to the managing controller. +optional Corresponds to the JSON property controller

Returns:

  • (Boolean)


1171
1172
1173
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1171

def controller
  @controller
end

#kindString

Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds Corresponds to the JSON property kind

Returns:

  • (String)


1179
1180
1181
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1179

def kind
  @kind
end

#nameString

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names Corresponds to the JSON property name

Returns:

  • (String)


1185
1186
1187
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1185

def name
  @name
end

#uidString

UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids Corresponds to the JSON property uid

Returns:

  • (String)


1191
1192
1193
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1191

def uid
  @uid
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1198
1199
1200
1201
1202
1203
1204
1205
# File 'generated/google/apis/run_v1beta1/classes.rb', line 1198

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