Class: Google::Apis::GkehubV1beta1::GenerateExclusivityManifestResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/gkehub_v1beta1/classes.rb,
lib/google/apis/gkehub_v1beta1/representations.rb,
lib/google/apis/gkehub_v1beta1/representations.rb

Overview

The response of the exclusivity artifacts manifests for the client to apply.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GenerateExclusivityManifestResponse

Returns a new instance of GenerateExclusivityManifestResponse.



369
370
371
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 369

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

Instance Attribute Details

#cr_manifestString

The YAML manifest of the membership CR to apply if a new version of the CR is available. Empty if no update needs to be applied. Corresponds to the JSON property crManifest

Returns:

  • (String)


361
362
363
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 361

def cr_manifest
  @cr_manifest
end

#crd_manifestString

The YAML manifest of the membership CRD to apply if a newer version of the CRD is available. Empty if no update needs to be applied. Corresponds to the JSON property crdManifest

Returns:

  • (String)


367
368
369
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 367

def crd_manifest
  @crd_manifest
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



374
375
376
377
# File 'lib/google/apis/gkehub_v1beta1/classes.rb', line 374

def update!(**args)
  @cr_manifest = args[:cr_manifest] if args.key?(:cr_manifest)
  @crd_manifest = args[:crd_manifest] if args.key?(:crd_manifest)
end