Class: Google::Apis::ComputeV1::GlobalSetLabelsRequest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::GlobalSetLabelsRequest
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#label_fingerprint ⇒ String
The fingerprint of the previous set of labels for this resource, used to detect conflicts.
-
#labels ⇒ Hash<String,String>
A list of labels to apply for this resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GlobalSetLabelsRequest
constructor
A new instance of GlobalSetLabelsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ GlobalSetLabelsRequest
Returns a new instance of GlobalSetLabelsRequest
6755 6756 6757 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6755 def initialize(**args) update!(**args) end |
Instance Attribute Details
#label_fingerprint ⇒ String
The fingerprint of the previous set of labels for this resource, used to
detect conflicts. The fingerprint is initially generated by Compute Engine and
changes after every request to modify or update labels. You must always
provide an up-to-date fingerprint hash when updating or changing labels,
otherwise the request will fail with error 412 conditionNotMet. Make a get()
request to the resource to get the latest fingerprint.
Corresponds to the JSON property labelFingerprint
NOTE: Values are automatically base64 encoded/decoded in the client library.
6742 6743 6744 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6742 def label_fingerprint @label_fingerprint end |
#labels ⇒ Hash<String,String>
A list of labels to apply for this resource. Each label key & value must
comply with RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?
which means the
first character must be a lowercase letter, and all following characters must
be a dash, lowercase letter, or digit, except the last character, which cannot
be a dash. For example, "webserver-frontend": "images". A label value can also
be empty (e.g. "my-label": "").
Corresponds to the JSON property labels
6753 6754 6755 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6753 def labels @labels end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6760 6761 6762 6763 |
# File 'generated/google/apis/compute_v1/classes.rb', line 6760 def update!(**args) @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint) @labels = args[:labels] if args.key?(:labels) end |