public sealed class GlobalSetLabelsRequest : IMessage<GlobalSetLabelsRequest>, IEquatable<GlobalSetLabelsRequest>, IDeepCloneable<GlobalSetLabelsRequest>, IBufferMessage, IMessage
Implements
IMessage<GlobalSetLabelsRequest>, IEquatable<GlobalSetLabelsRequest>, IDeepCloneable<GlobalSetLabelsRequest>, IBufferMessage, IMessageNamespace
Google.Cloud.Compute.V1Assembly
Google.Cloud.Compute.V1.dll
Constructors
GlobalSetLabelsRequest()
public GlobalSetLabelsRequest()
GlobalSetLabelsRequest(GlobalSetLabelsRequest)
public GlobalSetLabelsRequest(GlobalSetLabelsRequest other)
Parameter | |
---|---|
Name | Description |
other | GlobalSetLabelsRequest |
Properties
HasLabelFingerprint
public bool HasLabelFingerprint { get; }
Gets whether the "label_fingerprint" field is set
Property Value | |
---|---|
Type | Description |
Boolean |
LabelFingerprint
public string LabelFingerprint { get; set; }
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.
Property Value | |
---|---|
Type | Description |
String |
Labels
public MapField<string, string> Labels { get; }
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": "").
Property Value | |
---|---|
Type | Description |
MapField<String, String> |