Class: Google::Apis::GkehubV1alpha::GenerateExclusivityManifestResponse
- Inherits:
-
Object
- Object
- Google::Apis::GkehubV1alpha::GenerateExclusivityManifestResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gkehub_v1alpha/classes.rb,
lib/google/apis/gkehub_v1alpha/representations.rb,
lib/google/apis/gkehub_v1alpha/representations.rb
Overview
The response of the exclusivity artifacts manifests for the client to apply.
Instance Attribute Summary collapse
-
#cr_manifest ⇒ String
The YAML manifest of the membership CR to apply if a new version of the CR is available.
-
#crd_manifest ⇒ String
The YAML manifest of the membership CRD to apply if a newer version of the CRD is available.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GenerateExclusivityManifestResponse
constructor
A new instance of GenerateExclusivityManifestResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GenerateExclusivityManifestResponse
Returns a new instance of GenerateExclusivityManifestResponse.
2944 2945 2946 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2944 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cr_manifest ⇒ String
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
2936 2937 2938 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2936 def cr_manifest @cr_manifest end |
#crd_manifest ⇒ String
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
2942 2943 2944 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2942 def crd_manifest @crd_manifest end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2949 2950 2951 2952 |
# File 'lib/google/apis/gkehub_v1alpha/classes.rb', line 2949 def update!(**args) @cr_manifest = args[:cr_manifest] if args.key?(:cr_manifest) @crd_manifest = args[:crd_manifest] if args.key?(:crd_manifest) end |