Class: Google::Apis::RunV1::OwnerReference

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

Constructor Details

#initialize(**args) ⇒ OwnerReference

Returns a new instance of OwnerReference.



2267
2268
2269
# File 'lib/google/apis/run_v1/classes.rb', line 2267

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

Instance Attribute Details

#api_versionString

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

Returns:

  • (String)


2231
2232
2233
# File 'lib/google/apis/run_v1/classes.rb', line 2231

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)


2240
2241
2242
# File 'lib/google/apis/run_v1/classes.rb', line 2240

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)


2246
2247
2248
# File 'lib/google/apis/run_v1/classes.rb', line 2246

def controller
  @controller
end

#kindString

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

Returns:

  • (String)


2253
2254
2255
# File 'lib/google/apis/run_v1/classes.rb', line 2253

def kind
  @kind
end

#nameString

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

Returns:

  • (String)


2259
2260
2261
# File 'lib/google/apis/run_v1/classes.rb', line 2259

def name
  @name
end

#uidString

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

Returns:

  • (String)


2265
2266
2267
# File 'lib/google/apis/run_v1/classes.rb', line 2265

def uid
  @uid
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2272
2273
2274
2275
2276
2277
2278
2279
# File 'lib/google/apis/run_v1/classes.rb', line 2272

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