Method: Google::Cloud::NetApp::V1::Backup#create_time
- Defined in:
- proto_docs/google/cloud/netapp/v1/backup.rb
#create_time ⇒ ::Google::Protobuf::Timestamp (readonly)
Returns Output only. The time when the backup was created.
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'proto_docs/google/cloud/netapp/v1/backup.rb', line 67 class Backup 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 # The Backup States module State # State not set. STATE_UNSPECIFIED = 0 # Backup is being created. While in this state, the snapshot for the backup # point-in-time may not have been created yet, and so the point-in-time may # not have been fixed. CREATING = 1 # Backup is being uploaded. While in this state, none of the writes to the # volume will be included in the backup. UPLOADING = 2 # Backup is available for use. READY = 3 # Backup is being deleted. DELETING = 4 # Backup is not valid and cannot be used for creating new volumes or # restoring existing volumes. ERROR = 5 # Backup is being updated. UPDATING = 6 end # Backup types. module Type # Unspecified backup type. TYPE_UNSPECIFIED = 0 # Manual backup type. MANUAL = 1 # Scheduled backup type. SCHEDULED = 2 end end |