Class: Google::Apis::FirebasestorageV1beta::GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata

Returns a new instance of GoogleFirebaseStorageControlplaneV1alphaMigrateLocationDestructivelyMetadata.



92
93
94
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 92

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#create_timeString

The time the LRO was created. Corresponds to the JSON property createTime

Returns:

  • (String)


80
81
82
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 80

def create_time
  @create_time
end

#last_update_timeString

The time the LRO was last updated. Corresponds to the JSON property lastUpdateTime

Returns:

  • (String)


85
86
87
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 85

def last_update_time
  @last_update_time
end

#stateString

The current state of the migration. Corresponds to the JSON property state

Returns:

  • (String)


90
91
92
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 90

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



97
98
99
100
101
# File 'lib/google/apis/firebasestorage_v1beta/classes.rb', line 97

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