Class: Google::Apis::MetastoreV1beta::MetadataImport

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/metastore_v1beta/classes.rb,
lib/google/apis/metastore_v1beta/representations.rb,
lib/google/apis/metastore_v1beta/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.



1114
1115
1116
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1114

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)


1079
1080
1081
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1079

def create_time
  @create_time
end

#database_dumpGoogle::Apis::MetastoreV1beta::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



1085
1086
1087
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1085

def database_dump
  @database_dump
end

#descriptionString

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

Returns:

  • (String)


1090
1091
1092
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1090

def description
  @description
end

#end_timeString

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

Returns:

  • (String)


1095
1096
1097
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1095

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)


1102
1103
1104
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1102

def name
  @name
end

#stateString

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

Returns:

  • (String)


1107
1108
1109
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1107

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)


1112
1113
1114
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1112

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1119
1120
1121
1122
1123
1124
1125
1126
1127
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 1119

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