google-apis-metastore_v1beta 0.1.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/metastore_v1beta.rb +1 -1
- data/lib/google/apis/metastore_v1beta/classes.rb +126 -16
- data/lib/google/apis/metastore_v1beta/gem_version.rb +3 -3
- data/lib/google/apis/metastore_v1beta/representations.rb +39 -0
- data/lib/google/apis/metastore_v1beta/service.rb +32 -27
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2c8db76a7c3c029df9a79275cdb640bee5d1b6276213cf0f742f510c23b141f
|
4
|
+
data.tar.gz: 29a5ed19cffb97ad58c911a4b8c15f05f52fd7e8f559a6002ec97d5d53967d2f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a954a592c0b3ea40587bad13f4c62daaec20ed46d614d3932ac3a1cd7a2ab8bd55de4233f631fed71767f34c7717e46f0afd32bbd1351d138ce8a84a731a8cd2
|
7
|
+
data.tar.gz: 819e3cb1442cb1288156789506e1efbcd78a0096a473a8bacec3ddd5c9a5561e500ca42992a40950c0420995e522cca2133cc0cb7a9755ace257c9e0e4efc38d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-metastore_v1beta
|
2
2
|
|
3
|
+
### v0.6.0 (2021-03-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210318
|
6
|
+
|
7
|
+
### v0.5.0 (2021-03-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210305
|
10
|
+
* Regenerated using generator version 0.2.0
|
11
|
+
|
12
|
+
### v0.4.0 (2021-03-04)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210226
|
15
|
+
|
16
|
+
### v0.3.0 (2021-02-24)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210222
|
19
|
+
|
20
|
+
### v0.2.0 (2021-02-11)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210210
|
23
|
+
* Regenerated using generator version 0.1.2
|
24
|
+
|
3
25
|
### v0.1.0 (2021-01-07)
|
4
26
|
|
5
27
|
* Regenerated using generator version 0.1.1
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1beta'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
end
|
36
36
|
end
|
@@ -163,6 +163,28 @@ module Google
|
|
163
163
|
end
|
164
164
|
end
|
165
165
|
|
166
|
+
# Specifies how metastore metadata should be integrated with the Data Catalog
|
167
|
+
# service.
|
168
|
+
class DataCatalogConfig
|
169
|
+
include Google::Apis::Core::Hashable
|
170
|
+
|
171
|
+
# Defines whether the metastore metadata should be synced to Data Catalog. The
|
172
|
+
# default value is to disable syncing metastore metadata to Data Catalog.
|
173
|
+
# Corresponds to the JSON property `enabled`
|
174
|
+
# @return [Boolean]
|
175
|
+
attr_accessor :enabled
|
176
|
+
alias_method :enabled?, :enabled
|
177
|
+
|
178
|
+
def initialize(**args)
|
179
|
+
update!(**args)
|
180
|
+
end
|
181
|
+
|
182
|
+
# Update properties of this object
|
183
|
+
def update!(**args)
|
184
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
166
188
|
# A specification of the location of and metadata about a database dump from a
|
167
189
|
# relational database management system.
|
168
190
|
class DatabaseDump
|
@@ -173,8 +195,8 @@ module Google
|
|
173
195
|
# @return [String]
|
174
196
|
attr_accessor :database_type
|
175
197
|
|
176
|
-
# A Cloud Storage object URI that specifies the source from which to
|
177
|
-
# metadata. It must begin with gs://.
|
198
|
+
# A Cloud Storage object or folder URI that specifies the source from which to
|
199
|
+
# import metadata. It must begin with gs://.
|
178
200
|
# Corresponds to the JSON property `gcsUri`
|
179
201
|
# @return [String]
|
180
202
|
attr_accessor :gcs_uri
|
@@ -184,6 +206,11 @@ module Google
|
|
184
206
|
# @return [String]
|
185
207
|
attr_accessor :source_database
|
186
208
|
|
209
|
+
# Optional. The type of the database dump. If unspecified, defaults to MYSQL.
|
210
|
+
# Corresponds to the JSON property `type`
|
211
|
+
# @return [String]
|
212
|
+
attr_accessor :type
|
213
|
+
|
187
214
|
def initialize(**args)
|
188
215
|
update!(**args)
|
189
216
|
end
|
@@ -193,6 +220,7 @@ module Google
|
|
193
220
|
@database_type = args[:database_type] if args.key?(:database_type)
|
194
221
|
@gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
|
195
222
|
@source_database = args[:source_database] if args.key?(:source_database)
|
223
|
+
@type = args[:type] if args.key?(:type)
|
196
224
|
end
|
197
225
|
end
|
198
226
|
|
@@ -217,9 +245,13 @@ module Google
|
|
217
245
|
class ExportMetadataRequest
|
218
246
|
include Google::Apis::Core::Hashable
|
219
247
|
|
220
|
-
#
|
221
|
-
#
|
222
|
-
#
|
248
|
+
# Optional. The type of the database dump. If unspecified, defaults to MYSQL.
|
249
|
+
# Corresponds to the JSON property `databaseDumpType`
|
250
|
+
# @return [String]
|
251
|
+
attr_accessor :database_dump_type
|
252
|
+
|
253
|
+
# A Cloud Storage URI of a folder, in the format gs:///. A sub-folder containing
|
254
|
+
# exported files will be created below it.
|
223
255
|
# Corresponds to the JSON property `destinationGcsFolder`
|
224
256
|
# @return [String]
|
225
257
|
attr_accessor :destination_gcs_folder
|
@@ -242,6 +274,7 @@ module Google
|
|
242
274
|
|
243
275
|
# Update properties of this object
|
244
276
|
def update!(**args)
|
277
|
+
@database_dump_type = args[:database_dump_type] if args.key?(:database_dump_type)
|
245
278
|
@destination_gcs_folder = args[:destination_gcs_folder] if args.key?(:destination_gcs_folder)
|
246
279
|
@request_id = args[:request_id] if args.key?(:request_id)
|
247
280
|
end
|
@@ -379,7 +412,7 @@ module Google
|
|
379
412
|
attr_accessor :krb5_config_gcs_uri
|
380
413
|
|
381
414
|
# A Kerberos principal that exists in the both the keytab the KDC to
|
382
|
-
# authenticate as. A typical principal is of the form
|
415
|
+
# authenticate as. A typical principal is of the form primary/instance@REALM,
|
383
416
|
# but there is no exact format.
|
384
417
|
# Corresponds to the JSON property `principal`
|
385
418
|
# @return [String]
|
@@ -609,8 +642,13 @@ module Google
|
|
609
642
|
class MetadataExport
|
610
643
|
include Google::Apis::Core::Hashable
|
611
644
|
|
645
|
+
# Output only. The type of the database dump.
|
646
|
+
# Corresponds to the JSON property `databaseDumpType`
|
647
|
+
# @return [String]
|
648
|
+
attr_accessor :database_dump_type
|
649
|
+
|
612
650
|
# Output only. A Cloud Storage URI of a folder that metadata are exported to, in
|
613
|
-
# the form of gs:////, where
|
651
|
+
# the form of gs:////, where is automatically generated.
|
614
652
|
# Corresponds to the JSON property `destinationGcsUri`
|
615
653
|
# @return [String]
|
616
654
|
attr_accessor :destination_gcs_uri
|
@@ -636,6 +674,7 @@ module Google
|
|
636
674
|
|
637
675
|
# Update properties of this object
|
638
676
|
def update!(**args)
|
677
|
+
@database_dump_type = args[:database_dump_type] if args.key?(:database_dump_type)
|
639
678
|
@destination_gcs_uri = args[:destination_gcs_uri] if args.key?(:destination_gcs_uri)
|
640
679
|
@end_time = args[:end_time] if args.key?(:end_time)
|
641
680
|
@start_time = args[:start_time] if args.key?(:start_time)
|
@@ -663,9 +702,9 @@ module Google
|
|
663
702
|
# @return [String]
|
664
703
|
attr_accessor :description
|
665
704
|
|
666
|
-
# Immutable. The relative resource name of the metadata import, of the form:
|
705
|
+
# Immutable. The relative resource name of the metadata import, of the form:
|
667
706
|
# projects/`project_number`/locations/`location_id`/services/`service_id`/
|
668
|
-
# metadataImports/`metadata_import_id
|
707
|
+
# metadataImports/`metadata_import_id`.
|
669
708
|
# Corresponds to the JSON property `name`
|
670
709
|
# @return [String]
|
671
710
|
attr_accessor :name
|
@@ -699,12 +738,19 @@ module Google
|
|
699
738
|
class MetadataIntegration
|
700
739
|
include Google::Apis::Core::Hashable
|
701
740
|
|
741
|
+
# Specifies how metastore metadata should be integrated with the Data Catalog
|
742
|
+
# service.
|
743
|
+
# Corresponds to the JSON property `dataCatalogConfig`
|
744
|
+
# @return [Google::Apis::MetastoreV1beta::DataCatalogConfig]
|
745
|
+
attr_accessor :data_catalog_config
|
746
|
+
|
702
747
|
def initialize(**args)
|
703
748
|
update!(**args)
|
704
749
|
end
|
705
750
|
|
706
751
|
# Update properties of this object
|
707
752
|
def update!(**args)
|
753
|
+
@data_catalog_config = args[:data_catalog_config] if args.key?(:data_catalog_config)
|
708
754
|
end
|
709
755
|
end
|
710
756
|
|
@@ -717,6 +763,11 @@ module Google
|
|
717
763
|
# @return [Array<Google::Apis::MetastoreV1beta::MetadataExport>]
|
718
764
|
attr_accessor :metadata_exports
|
719
765
|
|
766
|
+
# Output only. The latest restores of the metastore service.
|
767
|
+
# Corresponds to the JSON property `restores`
|
768
|
+
# @return [Array<Google::Apis::MetastoreV1beta::Restore>]
|
769
|
+
attr_accessor :restores
|
770
|
+
|
720
771
|
def initialize(**args)
|
721
772
|
update!(**args)
|
722
773
|
end
|
@@ -724,6 +775,7 @@ module Google
|
|
724
775
|
# Update properties of this object
|
725
776
|
def update!(**args)
|
726
777
|
@metadata_exports = args[:metadata_exports] if args.key?(:metadata_exports)
|
778
|
+
@restores = args[:restores] if args.key?(:restores)
|
727
779
|
end
|
728
780
|
end
|
729
781
|
|
@@ -877,13 +929,65 @@ module Google
|
|
877
929
|
end
|
878
930
|
end
|
879
931
|
|
932
|
+
# The details of a metadata restore operation.
|
933
|
+
class Restore
|
934
|
+
include Google::Apis::Core::Hashable
|
935
|
+
|
936
|
+
# Output only. The relative resource name of the metastore service backup to
|
937
|
+
# restore from, in the following form:projects/`project_id`/locations/`
|
938
|
+
# location_id`/services/`service_id`/backups/`backup_id`.
|
939
|
+
# Corresponds to the JSON property `backup`
|
940
|
+
# @return [String]
|
941
|
+
attr_accessor :backup
|
942
|
+
|
943
|
+
# Output only. The restore details containing the revision of the service to be
|
944
|
+
# restored to, in format of JSON.
|
945
|
+
# Corresponds to the JSON property `details`
|
946
|
+
# @return [String]
|
947
|
+
attr_accessor :details
|
948
|
+
|
949
|
+
# Output only. The time when the restore ended.
|
950
|
+
# Corresponds to the JSON property `endTime`
|
951
|
+
# @return [String]
|
952
|
+
attr_accessor :end_time
|
953
|
+
|
954
|
+
# Output only. The time when the restore started.
|
955
|
+
# Corresponds to the JSON property `startTime`
|
956
|
+
# @return [String]
|
957
|
+
attr_accessor :start_time
|
958
|
+
|
959
|
+
# Output only. The current state of the restore.
|
960
|
+
# Corresponds to the JSON property `state`
|
961
|
+
# @return [String]
|
962
|
+
attr_accessor :state
|
963
|
+
|
964
|
+
# Output only. The type of restore.
|
965
|
+
# Corresponds to the JSON property `type`
|
966
|
+
# @return [String]
|
967
|
+
attr_accessor :type
|
968
|
+
|
969
|
+
def initialize(**args)
|
970
|
+
update!(**args)
|
971
|
+
end
|
972
|
+
|
973
|
+
# Update properties of this object
|
974
|
+
def update!(**args)
|
975
|
+
@backup = args[:backup] if args.key?(:backup)
|
976
|
+
@details = args[:details] if args.key?(:details)
|
977
|
+
@end_time = args[:end_time] if args.key?(:end_time)
|
978
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
979
|
+
@state = args[:state] if args.key?(:state)
|
980
|
+
@type = args[:type] if args.key?(:type)
|
981
|
+
end
|
982
|
+
end
|
983
|
+
|
880
984
|
# A securely stored value.
|
881
985
|
class Secret
|
882
986
|
include Google::Apis::Core::Hashable
|
883
987
|
|
884
988
|
# The relative resource name of a Secret Manager secret version, in the
|
885
|
-
# following form:
|
886
|
-
# version_id
|
989
|
+
# following form:projects/`project_number`/secrets/`secret_id`/versions/`
|
990
|
+
# version_id`.
|
887
991
|
# Corresponds to the JSON property `cloudSecret`
|
888
992
|
# @return [String]
|
889
993
|
attr_accessor :cloud_secret
|
@@ -945,16 +1049,15 @@ module Google
|
|
945
1049
|
# @return [Google::Apis::MetastoreV1beta::MetadataManagementActivity]
|
946
1050
|
attr_accessor :metadata_management_activity
|
947
1051
|
|
948
|
-
# Immutable. The relative resource name of the metastore service, of the form:
|
949
|
-
# projects/`project_number`/locations/`location_id`/services/`service_id
|
1052
|
+
# Immutable. The relative resource name of the metastore service, of the form:
|
1053
|
+
# projects/`project_number`/locations/`location_id`/services/`service_id`.
|
950
1054
|
# Corresponds to the JSON property `name`
|
951
1055
|
# @return [String]
|
952
1056
|
attr_accessor :name
|
953
1057
|
|
954
1058
|
# Immutable. The relative resource name of the VPC network on which the instance
|
955
|
-
# can be accessed.
|
956
|
-
#
|
957
|
-
# global/networks/`network_id`".
|
1059
|
+
# can be accessed. It is specified in the following form:projects/`
|
1060
|
+
# project_number`/global/networks/`network_id`.
|
958
1061
|
# Corresponds to the JSON property `network`
|
959
1062
|
# @return [String]
|
960
1063
|
attr_accessor :network
|
@@ -964,6 +1067,12 @@ module Google
|
|
964
1067
|
# @return [Fixnum]
|
965
1068
|
attr_accessor :port
|
966
1069
|
|
1070
|
+
# Immutable. The release channel of the service. If unspecified, defaults to
|
1071
|
+
# STABLE.
|
1072
|
+
# Corresponds to the JSON property `releaseChannel`
|
1073
|
+
# @return [String]
|
1074
|
+
attr_accessor :release_channel
|
1075
|
+
|
967
1076
|
# Output only. The current state of the metastore service.
|
968
1077
|
# Corresponds to the JSON property `state`
|
969
1078
|
# @return [String]
|
@@ -1007,6 +1116,7 @@ module Google
|
|
1007
1116
|
@name = args[:name] if args.key?(:name)
|
1008
1117
|
@network = args[:network] if args.key?(:network)
|
1009
1118
|
@port = args[:port] if args.key?(:port)
|
1119
|
+
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
1010
1120
|
@state = args[:state] if args.key?(:state)
|
1011
1121
|
@state_message = args[:state_message] if args.key?(:state_message)
|
1012
1122
|
@tier = args[:tier] if args.key?(:tier)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MetastoreV1beta
|
18
18
|
# Version of the google-apis-metastore_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.6.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210318"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -40,6 +40,12 @@ module Google
|
|
40
40
|
include Google::Apis::Core::JsonObjectSupport
|
41
41
|
end
|
42
42
|
|
43
|
+
class DataCatalogConfig
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
43
49
|
class DatabaseDump
|
44
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
51
|
|
@@ -160,6 +166,12 @@ module Google
|
|
160
166
|
include Google::Apis::Core::JsonObjectSupport
|
161
167
|
end
|
162
168
|
|
169
|
+
class Restore
|
170
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
+
|
172
|
+
include Google::Apis::Core::JsonObjectSupport
|
173
|
+
end
|
174
|
+
|
163
175
|
class Secret
|
164
176
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
177
|
|
@@ -223,12 +235,20 @@ module Google
|
|
223
235
|
end
|
224
236
|
end
|
225
237
|
|
238
|
+
class DataCatalogConfig
|
239
|
+
# @private
|
240
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
241
|
+
property :enabled, as: 'enabled'
|
242
|
+
end
|
243
|
+
end
|
244
|
+
|
226
245
|
class DatabaseDump
|
227
246
|
# @private
|
228
247
|
class Representation < Google::Apis::Core::JsonRepresentation
|
229
248
|
property :database_type, as: 'databaseType'
|
230
249
|
property :gcs_uri, as: 'gcsUri'
|
231
250
|
property :source_database, as: 'sourceDatabase'
|
251
|
+
property :type, as: 'type'
|
232
252
|
end
|
233
253
|
end
|
234
254
|
|
@@ -241,6 +261,7 @@ module Google
|
|
241
261
|
class ExportMetadataRequest
|
242
262
|
# @private
|
243
263
|
class Representation < Google::Apis::Core::JsonRepresentation
|
264
|
+
property :database_dump_type, as: 'databaseDumpType'
|
244
265
|
property :destination_gcs_folder, as: 'destinationGcsFolder'
|
245
266
|
property :request_id, as: 'requestId'
|
246
267
|
end
|
@@ -352,6 +373,7 @@ module Google
|
|
352
373
|
class MetadataExport
|
353
374
|
# @private
|
354
375
|
class Representation < Google::Apis::Core::JsonRepresentation
|
376
|
+
property :database_dump_type, as: 'databaseDumpType'
|
355
377
|
property :destination_gcs_uri, as: 'destinationGcsUri'
|
356
378
|
property :end_time, as: 'endTime'
|
357
379
|
property :start_time, as: 'startTime'
|
@@ -375,6 +397,8 @@ module Google
|
|
375
397
|
class MetadataIntegration
|
376
398
|
# @private
|
377
399
|
class Representation < Google::Apis::Core::JsonRepresentation
|
400
|
+
property :data_catalog_config, as: 'dataCatalogConfig', class: Google::Apis::MetastoreV1beta::DataCatalogConfig, decorator: Google::Apis::MetastoreV1beta::DataCatalogConfig::Representation
|
401
|
+
|
378
402
|
end
|
379
403
|
end
|
380
404
|
|
@@ -383,6 +407,8 @@ module Google
|
|
383
407
|
class Representation < Google::Apis::Core::JsonRepresentation
|
384
408
|
collection :metadata_exports, as: 'metadataExports', class: Google::Apis::MetastoreV1beta::MetadataExport, decorator: Google::Apis::MetastoreV1beta::MetadataExport::Representation
|
385
409
|
|
410
|
+
collection :restores, as: 'restores', class: Google::Apis::MetastoreV1beta::Restore, decorator: Google::Apis::MetastoreV1beta::Restore::Representation
|
411
|
+
|
386
412
|
end
|
387
413
|
end
|
388
414
|
|
@@ -410,6 +436,18 @@ module Google
|
|
410
436
|
end
|
411
437
|
end
|
412
438
|
|
439
|
+
class Restore
|
440
|
+
# @private
|
441
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
442
|
+
property :backup, as: 'backup'
|
443
|
+
property :details, as: 'details'
|
444
|
+
property :end_time, as: 'endTime'
|
445
|
+
property :start_time, as: 'startTime'
|
446
|
+
property :state, as: 'state'
|
447
|
+
property :type, as: 'type'
|
448
|
+
end
|
449
|
+
end
|
450
|
+
|
413
451
|
class Secret
|
414
452
|
# @private
|
415
453
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -435,6 +473,7 @@ module Google
|
|
435
473
|
property :name, as: 'name'
|
436
474
|
property :network, as: 'network'
|
437
475
|
property :port, as: 'port'
|
476
|
+
property :release_channel, as: 'releaseChannel'
|
438
477
|
property :state, as: 'state'
|
439
478
|
property :state_message, as: 'stateMessage'
|
440
479
|
property :tier, as: 'tier'
|
@@ -84,11 +84,15 @@ module Google
|
|
84
84
|
# @param [String] name
|
85
85
|
# The resource that owns the locations collection, if applicable.
|
86
86
|
# @param [String] filter
|
87
|
-
#
|
87
|
+
# A filter to narrow down results to a preferred subset. The filtering language
|
88
|
+
# accepts strings like "displayName=tokyo", and is documented in more detail in
|
89
|
+
# AIP-160 (https://google.aip.dev/160).
|
88
90
|
# @param [Fixnum] page_size
|
89
|
-
# The
|
91
|
+
# The maximum number of results to return. If not set, the service will select a
|
92
|
+
# default.
|
90
93
|
# @param [String] page_token
|
91
|
-
#
|
94
|
+
# A page token received from the next_page_token field in the response. Send
|
95
|
+
# that page token to receive the subsequent page.
|
92
96
|
# @param [String] fields
|
93
97
|
# Selector specifying which fields to include in a partial response.
|
94
98
|
# @param [String] quota_user
|
@@ -232,8 +236,8 @@ module Google
|
|
232
236
|
# Creates a metastore service in a project and location.
|
233
237
|
# @param [String] parent
|
234
238
|
# Required. The relative resource name of the location in which to create a
|
235
|
-
# metastore service, in the following form:
|
236
|
-
# location_id
|
239
|
+
# metastore service, in the following form:projects/`project_number`/locations/`
|
240
|
+
# location_id`.
|
237
241
|
# @param [Google::Apis::MetastoreV1beta::Service] service_object
|
238
242
|
# @param [String] request_id
|
239
243
|
# Optional. A request ID. Specify a unique request ID to allow the server to
|
@@ -283,8 +287,8 @@ module Google
|
|
283
287
|
# Deletes a single service.
|
284
288
|
# @param [String] name
|
285
289
|
# Required. The relative resource name of the metastore service to delete, in
|
286
|
-
# the following form:
|
287
|
-
#
|
290
|
+
# the following form:projects/`project_number`/locations/`location_id`/services/`
|
291
|
+
# service_id`.
|
288
292
|
# @param [String] request_id
|
289
293
|
# Optional. A request ID. Specify a unique request ID to allow the server to
|
290
294
|
# ignore the request if it has completed. The server will ignore subsequent
|
@@ -325,8 +329,8 @@ module Google
|
|
325
329
|
# Exports metadata from a service.
|
326
330
|
# @param [String] service
|
327
331
|
# Required. The relative resource name of the metastore service to run export,
|
328
|
-
# in the following form:
|
329
|
-
# service_id
|
332
|
+
# in the following form:projects/`project_id`/locations/`location_id`/services/`
|
333
|
+
# service_id`.
|
330
334
|
# @param [Google::Apis::MetastoreV1beta::ExportMetadataRequest] export_metadata_request_object
|
331
335
|
# @param [String] fields
|
332
336
|
# Selector specifying which fields to include in a partial response.
|
@@ -360,8 +364,8 @@ module Google
|
|
360
364
|
# Gets the details of a single service.
|
361
365
|
# @param [String] name
|
362
366
|
# Required. The relative resource name of the metastore service to retrieve, in
|
363
|
-
# the following form:
|
364
|
-
#
|
367
|
+
# the following form:projects/`project_number`/locations/`location_id`/services/`
|
368
|
+
# service_id`.
|
365
369
|
# @param [String] fields
|
366
370
|
# Selector specifying which fields to include in a partial response.
|
367
371
|
# @param [String] quota_user
|
@@ -432,13 +436,13 @@ module Google
|
|
432
436
|
# Lists services in a project and location.
|
433
437
|
# @param [String] parent
|
434
438
|
# Required. The relative resource name of the location of metastore services to
|
435
|
-
# list, in the following form:
|
436
|
-
# .
|
439
|
+
# list, in the following form:projects/`project_number`/locations/`location_id`.
|
437
440
|
# @param [String] filter
|
438
441
|
# Optional. The filter to apply to list results.
|
439
442
|
# @param [String] order_by
|
440
|
-
# Optional. Specify the ordering of results as described in Sorting Order
|
441
|
-
#
|
443
|
+
# Optional. Specify the ordering of results as described in Sorting Order (https:
|
444
|
+
# //cloud.google.com/apis/design/design_patterns#sorting_order). If not
|
445
|
+
# specified, the results will be sorted in the default order.
|
442
446
|
# @param [Fixnum] page_size
|
443
447
|
# Optional. The maximum number of services to return. The response may contain
|
444
448
|
# less than the maximum number. If unspecified, no more than 500 services are
|
@@ -482,8 +486,8 @@ module Google
|
|
482
486
|
|
483
487
|
# Updates the parameters of a single service.
|
484
488
|
# @param [String] name
|
485
|
-
# Immutable. The relative resource name of the metastore service, of the form:
|
486
|
-
# projects/`project_number`/locations/`location_id`/services/`service_id
|
489
|
+
# Immutable. The relative resource name of the metastore service, of the form:
|
490
|
+
# projects/`project_number`/locations/`location_id`/services/`service_id`.
|
487
491
|
# @param [Google::Apis::MetastoreV1beta::Service] service_object
|
488
492
|
# @param [String] request_id
|
489
493
|
# Optional. A request ID. Specify a unique request ID to allow the server to
|
@@ -607,8 +611,8 @@ module Google
|
|
607
611
|
# Creates a new MetadataImport in a given project and location.
|
608
612
|
# @param [String] parent
|
609
613
|
# Required. The relative resource name of the service in which to create a
|
610
|
-
# metastore import, in the following form:
|
611
|
-
# location_id`/services/`service_id
|
614
|
+
# metastore import, in the following form:projects/`project_number`/locations/`
|
615
|
+
# location_id`/services/`service_id`.
|
612
616
|
# @param [Google::Apis::MetastoreV1beta::MetadataImport] metadata_import_object
|
613
617
|
# @param [String] metadata_import_id
|
614
618
|
# Required. The ID of the metadata import, which is used as the final component
|
@@ -658,8 +662,8 @@ module Google
|
|
658
662
|
# Gets details of a single import.
|
659
663
|
# @param [String] name
|
660
664
|
# Required. The relative resource name of the metadata import to retrieve, in
|
661
|
-
# the following form:
|
662
|
-
#
|
665
|
+
# the following form:projects/`project_number`/locations/`location_id`/services/`
|
666
|
+
# service_id`/metadataImports/`import_id`.
|
663
667
|
# @param [String] fields
|
664
668
|
# Selector specifying which fields to include in a partial response.
|
665
669
|
# @param [String] quota_user
|
@@ -690,13 +694,14 @@ module Google
|
|
690
694
|
# Lists imports in a service.
|
691
695
|
# @param [String] parent
|
692
696
|
# Required. The relative resource name of the service whose metadata imports to
|
693
|
-
# list, in the following form:
|
694
|
-
# services/`service_id`/metadataImports
|
697
|
+
# list, in the following form:projects/`project_number`/locations/`location_id`/
|
698
|
+
# services/`service_id`/metadataImports.
|
695
699
|
# @param [String] filter
|
696
700
|
# Optional. The filter to apply to list results.
|
697
701
|
# @param [String] order_by
|
698
|
-
# Optional. Specify the ordering of results as described in Sorting Order
|
699
|
-
#
|
702
|
+
# Optional. Specify the ordering of results as described in Sorting Order (https:
|
703
|
+
# //cloud.google.com/apis/design/design_patterns#sorting_order). If not
|
704
|
+
# specified, the results will be sorted in the default order.
|
700
705
|
# @param [Fixnum] page_size
|
701
706
|
# Optional. The maximum number of imports to return. The response may contain
|
702
707
|
# less than the maximum number. If unspecified, no more than 500 imports are
|
@@ -741,9 +746,9 @@ module Google
|
|
741
746
|
# Updates a single import. Only the description field of MetadataImport is
|
742
747
|
# supported to be updated.
|
743
748
|
# @param [String] name
|
744
|
-
# Immutable. The relative resource name of the metadata import, of the form:
|
749
|
+
# Immutable. The relative resource name of the metadata import, of the form:
|
745
750
|
# projects/`project_number`/locations/`location_id`/services/`service_id`/
|
746
|
-
# metadataImports/`metadata_import_id
|
751
|
+
# metadataImports/`metadata_import_id`.
|
747
752
|
# @param [Google::Apis::MetastoreV1beta::MetadataImport] metadata_import_object
|
748
753
|
# @param [String] request_id
|
749
754
|
# Optional. A request ID. Specify a unique request ID to allow the server to
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-metastore_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-03-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.6.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
63
63
|
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
65
|
+
version: '2.5'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.2.13
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Dataproc Metastore API V1beta
|