Class: Google::Apis::MetastoreV1alpha::MetadataImport

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/metastore_v1alpha/classes.rb,
lib/google/apis/metastore_v1alpha/representations.rb,
lib/google/apis/metastore_v1alpha/representations.rb

Overview

A metastore resource that imports metadata.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MetadataImport

Returns a new instance of MetadataImport.



965
966
967
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 965

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

Instance Attribute Details

#create_timeString

Output only. The time when the metadata import was started. Corresponds to the JSON property createTime

Returns:

  • (String)


930
931
932
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 930

def create_time
  @create_time
end

#database_dumpGoogle::Apis::MetastoreV1alpha::DatabaseDump

A specification of the location of and metadata about a database dump from a relational database management system. Corresponds to the JSON property databaseDump



936
937
938
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 936

def database_dump
  @database_dump
end

#descriptionString

The description of the metadata import. Corresponds to the JSON property description

Returns:

  • (String)


941
942
943
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 941

def description
  @description
end

#end_timeString

Output only. The time when the metadata import finished. Corresponds to the JSON property endTime

Returns:

  • (String)


946
947
948
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 946

def end_time
  @end_time
end

#nameString

Immutable. The relative resource name of the metadata import, of the form: projects/project_number/locations/location_id/services/service_id/ metadataImports/metadata_import_id. Corresponds to the JSON property name

Returns:

  • (String)


953
954
955
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 953

def name
  @name
end

#stateString

Output only. The current state of the metadata import. Corresponds to the JSON property state

Returns:

  • (String)


958
959
960
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 958

def state
  @state
end

#update_timeString

Output only. The time when the metadata import was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


963
964
965
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 963

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



970
971
972
973
974
975
976
977
978
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 970

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @database_dump = args[:database_dump] if args.key?(:database_dump)
  @description = args[:description] if args.key?(:description)
  @end_time = args[:end_time] if args.key?(:end_time)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end