Class: Google::Apis::FirebasestorageV1beta::GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata
- Inherits:
-
Object
- Object
- Google::Apis::FirebasestorageV1beta::GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/firebasestorage_v1beta/classes.rb,
lib/google/apis/firebasestorage_v1beta/representations.rb,
lib/google/apis/firebasestorage_v1beta/representations.rb
Overview
Metadata for MigrateLocationDestructively LRO.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time the LRO was created.
-
#last_update_time ⇒ String
The time the LRO was last updated.
-
#state ⇒ String
The current state of the migration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata
constructor
A new instance of GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata
Returns a new instance of GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata.
132 133 134 |
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 132 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time the LRO was created.
Corresponds to the JSON property createTime
120 121 122 |
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 120 def create_time @create_time end |
#last_update_time ⇒ String
The time the LRO was last updated.
Corresponds to the JSON property lastUpdateTime
125 126 127 |
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 125 def last_update_time @last_update_time end |
#state ⇒ String
The current state of the migration.
Corresponds to the JSON property state
130 131 132 |
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 130 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
137 138 139 140 141 |
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 137 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @last_update_time = args[:last_update_time] if args.key?(:last_update_time) @state = args[:state] if args.key?(:state) end |