class Google::Apis::ComputeBeta::Snapshot

A persistent disk snapshot resource.

Attributes

creation_timestamp[RW]
Output Only

Creation timestamp in RFC3339 text format.

Corresponds to the JSON property `creationTimestamp` @return [String]

description[RW]

An optional description of this resource. Provide this property when you create the resource. Corresponds to the JSON property `description` @return [String]

disk_size_gb[RW]
Output Only

Size of the snapshot, specified in GB.

Corresponds to the JSON property `diskSizeGb` @return [String]

id[RW]
Output Only

The unique identifier for the resource. This identifier is

defined by the server. Corresponds to the JSON property `id` @return [String]

kind[RW]
Output Only

Type of the resource. Always compute#snapshot for Snapshot

resources. Corresponds to the JSON property `kind` @return [String]

label_fingerprint[RW]

A fingerprint for the labels being applied to this snapshot, which is essentially a hash of the labels set used for optimistic locking. 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 in order to update or change labels. To see the latest fingerprint, make a get() request to retrieve a snapshot. Corresponds to the JSON property `labelFingerprint` @return [String]

labels[RW]

Labels to apply to this snapshot. These can be later modified by the setLabels( ) method. 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]*)? 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. A label value can also be empty (e.g. “example-label”: “”). Corresponds to the JSON property `labels` @return [Hash<String,String>]

licenses[RW]
Output Only

A list of public visible licenses that apply to this snapshot.

This can be because the original image had licenses attached (such as a Windows image). Corresponds to the JSON property `licenses` @return [Array<String>]

name[RW]

Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-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. Corresponds to the JSON property `name` @return [String]

snapshot_encryption_key[RW]

Represents a customer-supplied encryption key Corresponds to the JSON property `snapshotEncryptionKey` @return [Google::Apis::ComputeBeta::CustomerEncryptionKey]

source_disk[RW]
Output Only

The source disk used to create this snapshot.

Corresponds to the JSON property `sourceDisk` @return [String]

source_disk_encryption_key[RW]

Represents a customer-supplied encryption key Corresponds to the JSON property `sourceDiskEncryptionKey` @return [Google::Apis::ComputeBeta::CustomerEncryptionKey]

source_disk_id[RW]
Output Only

The ID value of the disk used to create this snapshot. This

value may be used to determine whether the snapshot was taken from the current or a previous instance of a given disk name. Corresponds to the JSON property `sourceDiskId` @return [String]

status[RW]
Output Only

The status of the snapshot. This can be CREATING, DELETING,

FAILED, READY, or UPLOADING. Corresponds to the JSON property `status` @return [String]

storage_bytes[RW]
Output Only

A size of the the storage used by the snapshot. As snapshots

share storage, this number is expected to change with snapshot creation/ deletion. Corresponds to the JSON property `storageBytes` @return [String]

storage_bytes_status[RW]
Output Only

An indicator whether storageBytes is in a stable state or it is

being adjusted as a result of shared storage reallocation. This status can either be UPDATING, meaning the size of the snapshot is being updated, or UP_TO_DATE, meaning the size of the snapshot is up-to-date. Corresponds to the JSON property `storageBytesStatus` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/compute_beta/classes.rb, line 7413
def update!(**args)
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
  @description = args[:description] if args.key?(:description)
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
  @labels = args[:labels] if args.key?(:labels)
  @licenses = args[:licenses] if args.key?(:licenses)
  @name = args[:name] if args.key?(:name)
  @self_link = args[:self_link] if args.key?(:self_link)
  @snapshot_encryption_key = args[:snapshot_encryption_key] if args.key?(:snapshot_encryption_key)
  @source_disk = args[:source_disk] if args.key?(:source_disk)
  @source_disk_encryption_key = args[:source_disk_encryption_key] if args.key?(:source_disk_encryption_key)
  @source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
  @status = args[:status] if args.key?(:status)
  @storage_bytes = args[:storage_bytes] if args.key?(:storage_bytes)
  @storage_bytes_status = args[:storage_bytes_status] if args.key?(:storage_bytes_status)
end