class Google::Apis::GkehubV1beta1::GenerateExclusivityManifestResponse

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

Attributes

cr_manifest[RW]

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` @return [String]

crd_manifest[RW]

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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gkehub_v1beta1/classes.rb, line 369
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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