compute
v1
|
#include <metadata.h>
Classes | |
class | MetadataItems |
Public Member Functions | |
Metadata (const Json::Value &storage) | |
Metadata (Json::Value *storage) | |
virtual | ~Metadata () |
const StringPiece | GetTypeName () const |
bool | has_fingerprint () const |
void | clear_fingerprint () |
const StringPiece | get_fingerprint () const |
void | set_fingerprint (const StringPiece &value) |
bool | has_items () const |
void | clear_items () |
const client::JsonCppArray< MetadataItems > | get_items () const |
client::JsonCppArray< MetadataItems > | mutable_items () |
bool | has_kind () const |
void | clear_kind () |
const StringPiece | get_kind () const |
void | set_kind (const StringPiece &value) |
Static Public Member Functions | |
static Metadata * | New () |
A metadata key/value entry.
|
explicit |
Standard constructor for an immutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
explicit |
Standard constructor for a mutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
virtual |
Standard destructor.
|
inline |
Clears the 'fingerprint
' attribute.
|
inline |
Clears the 'items
' attribute.
|
inline |
Clears the 'kind
' attribute.
|
inline |
Get the value of the 'fingerprint
' attribute.
|
inline |
Get a reference to the value of the 'items
' attribute.
|
inline |
Get the value of the 'kind
' attribute.
|
inline |
Returns a string denoting the type of this data object.
google_compute_api::Metadata
|
inline |
Determine if the 'fingerprint
' attribute was set.
fingerprint
' attribute was set.
|
inline |
Determine if the 'items
' attribute was set.
items
' attribute was set.
|
inline |
Determine if the 'kind
' attribute was set.
kind
' attribute was set.
|
inline |
Gets a reference to a mutable value of the 'items
' property.
Array of key/value pairs. The total size of all keys and values must be less than 512 KB.
|
static |
Creates a new default instance.
|
inline |
Change the 'fingerprint
' attribute.
Specifies a fingerprint for this request, which is essentially a hash of the metadata's contents and used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update metadata. You must always provide an up-to-date fingerprint hash in order to update or change metadata, otherwise the request will fail with error 412 conditionNotMet.
To see the latest fingerprint, make a get() request to retrieve the resource.
[in] | value | The new value. |
|
inline |
Change the 'kind
' attribute.
[Output Only] Type of the resource. Always compute::metadata for metadata.
[in] | value | The new value. |