Class: Google::Cloud::Compute::V1::Snapshot
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::Snapshot
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/compute/v1/compute.rb
Overview
Represents a Persistent Disk Snapshot resource. You can use snapshots to back up data on a regular interval. For more information, read Creating persistent disk snapshots. LINT.IfChange
Defined Under Namespace
Modules: Architecture, SnapshotType, Status, StorageBytesStatus Classes: LabelsEntry
Instance Attribute Summary collapse
-
#architecture ⇒ ::String
[Output Only] The architecture of the snapshot.
-
#auto_created ⇒ ::Boolean
[Output Only] Set to true if snapshots are automatically created by applying resource policy on the target disk.
-
#chain_name ⇒ ::String
Creates the new snapshot in the snapshot chain labeled with the specified name.
-
#creation_size_bytes ⇒ ::Integer
[Output Only] Size in bytes of the snapshot at creation time.
-
#creation_timestamp ⇒ ::String
[Output Only] Creation timestamp in RFC3339 text format.
-
#description ⇒ ::String
An optional description of this resource.
-
#disk_size_gb ⇒ ::Integer
[Output Only] Size of the source disk, specified in GB.
-
#download_bytes ⇒ ::Integer
[Output Only] Number of bytes downloaded to restore a snapshot to a disk.
-
#enable_confidential_compute ⇒ ::Boolean
Whether this snapshot is created from a confidential compute mode disk.
-
#guest_flush ⇒ ::Boolean
[Input Only] Whether to attempt an application consistent snapshot by informing the OS to prepare for the snapshot process.
-
#guest_os_features ⇒ ::Array<::Google::Cloud::Compute::V1::GuestOsFeature>
[Output Only] A list of features to enable on the guest operating system.
-
#id ⇒ ::Integer
[Output Only] The unique identifier for the resource.
-
#kind ⇒ ::String
[Output Only] Type of the resource.
-
#label_fingerprint ⇒ ::String
A fingerprint for the labels being applied to this snapshot, which is essentially a hash of the labels set used for optimistic locking.
-
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
Labels to apply to this snapshot.
-
#license_codes ⇒ ::Array<::Integer>
[Output Only] Integer license codes indicating which licenses are attached to this snapshot.
-
#licenses ⇒ ::Array<::String>
[Output Only] A list of public visible licenses that apply to this snapshot.
-
#location_hint ⇒ ::String
An opaque location hint used to place the snapshot close to other resources.
-
#name ⇒ ::String
Name of the resource; provided by the client when the resource is created.
-
#satisfies_pzi ⇒ ::Boolean
Output only.
-
#satisfies_pzs ⇒ ::Boolean
[Output Only] Reserved for future use.
-
#self_link ⇒ ::String
[Output Only] Server-defined URL for the resource.
-
#snapshot_encryption_key ⇒ ::Google::Cloud::Compute::V1::CustomerEncryptionKey
Encrypts the snapshot using a customer-supplied encryption key.
-
#snapshot_type ⇒ ::String
Indicates the type of the snapshot.
-
#source_disk ⇒ ::String
The source disk used to create this snapshot.
-
#source_disk_encryption_key ⇒ ::Google::Cloud::Compute::V1::CustomerEncryptionKey
The customer-supplied encryption key of the source disk.
-
#source_disk_for_recovery_checkpoint ⇒ ::String
The source disk whose recovery checkpoint will be used to create this snapshot.
-
#source_disk_id ⇒ ::String
[Output Only] The ID value of the disk used to create this snapshot.
-
#source_instant_snapshot ⇒ ::String
The source instant snapshot used to create this snapshot.
-
#source_instant_snapshot_encryption_key ⇒ ::Google::Cloud::Compute::V1::CustomerEncryptionKey
Customer provided encryption key when creating Snapshot from Instant Snapshot.
-
#source_instant_snapshot_id ⇒ ::String
[Output Only] The unique ID of the instant snapshot used to create this snapshot.
-
#source_snapshot_schedule_policy ⇒ ::String
[Output Only] URL of the resource policy which created this scheduled snapshot.
-
#source_snapshot_schedule_policy_id ⇒ ::String
[Output Only] ID of the resource policy which created this scheduled snapshot.
-
#status ⇒ ::String
[Output Only] The status of the snapshot.
-
#storage_bytes ⇒ ::Integer
[Output Only] A size of the storage used by the snapshot.
-
#storage_bytes_status ⇒ ::String
[Output Only] An indicator whether storageBytes is in a stable state or it is being adjusted as a result of shared storage reallocation.
-
#storage_locations ⇒ ::Array<::String>
Cloud Storage bucket storage location of the snapshot (regional or multi-regional).
Instance Attribute Details
#architecture ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#auto_created ⇒ ::Boolean
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#chain_name ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#creation_size_bytes ⇒ ::Integer
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#creation_timestamp ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#description ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#disk_size_gb ⇒ ::Integer
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#download_bytes ⇒ ::Integer
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#enable_confidential_compute ⇒ ::Boolean
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#guest_flush ⇒ ::Boolean
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#guest_os_features ⇒ ::Array<::Google::Cloud::Compute::V1::GuestOsFeature>
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#id ⇒ ::Integer
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#kind ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#label_fingerprint ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#labels ⇒ ::Google::Protobuf::Map{::String => ::String}
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#license_codes ⇒ ::Array<::Integer>
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#licenses ⇒ ::Array<::String>
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#location_hint ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#name ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#satisfies_pzi ⇒ ::Boolean
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#satisfies_pzs ⇒ ::Boolean
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#self_link ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#snapshot_encryption_key ⇒ ::Google::Cloud::Compute::V1::CustomerEncryptionKey
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#snapshot_type ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_disk ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_disk_encryption_key ⇒ ::Google::Cloud::Compute::V1::CustomerEncryptionKey
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_disk_for_recovery_checkpoint ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_disk_id ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_instant_snapshot ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_instant_snapshot_encryption_key ⇒ ::Google::Cloud::Compute::V1::CustomerEncryptionKey
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_instant_snapshot_id ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_snapshot_schedule_policy ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#source_snapshot_schedule_policy_id ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#status ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#storage_bytes ⇒ ::Integer
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#storage_bytes_status ⇒ ::String
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |
#storage_locations ⇒ ::Array<::String>
35428 35429 35430 35431 35432 35433 35434 35435 35436 35437 35438 35439 35440 35441 35442 35443 35444 35445 35446 35447 35448 35449 35450 35451 35452 35453 35454 35455 35456 35457 35458 35459 35460 35461 35462 35463 35464 35465 35466 35467 35468 35469 35470 35471 35472 35473 35474 35475 35476 35477 35478 35479 35480 35481 35482 35483 35484 35485 35486 35487 35488 35489 35490 35491 35492 35493 35494 35495 35496 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 35428 class Snapshot include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class LabelsEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # [Output Only] The architecture of the snapshot. Valid values are ARM64 or X86_64. module Architecture # A value indicating that the enum field is not set. UNDEFINED_ARCHITECTURE = 0 # Default value indicating Architecture is not set. ARCHITECTURE_UNSPECIFIED = 394_750_507 # Machines with architecture ARM64 ARM64 = 62_547_450 # Machines with architecture X86_64 X86_64 = 425_300_551 end # Indicates the type of the snapshot. module SnapshotType # A value indicating that the enum field is not set. UNDEFINED_SNAPSHOT_TYPE = 0 ARCHIVE = 506_752_162 STANDARD = 484_642_493 end # [Output Only] The status of the snapshot. This can be CREATING, DELETING, FAILED, READY, or UPLOADING. module Status # A value indicating that the enum field is not set. UNDEFINED_STATUS = 0 # Snapshot creation is in progress. CREATING = 455_564_985 # Snapshot is currently being deleted. DELETING = 528_602_024 # Snapshot creation failed. FAILED = 455_706_685 # Snapshot has been created successfully. READY = 77_848_963 # Snapshot is being uploaded. UPLOADING = 267_603_489 end # [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. module StorageBytesStatus # A value indicating that the enum field is not set. UNDEFINED_STORAGE_BYTES_STATUS = 0 UPDATING = 494_614_342 UP_TO_DATE = 101_306_702 end end |