google-apis-metastore_v1beta 0.14.0 → 0.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc6beb0f99ea1ce968d3397deab8dc7737f25d9f8694140c45345a32cf57a65a
4
- data.tar.gz: 6b73a9c4f58b2099a7d7b529932948deb0fec805bd9a63b7b4afd5bf5a98c600
3
+ metadata.gz: f110c5fe0a721e43959b362dc4da41f72d1ee3424261e72075e3be77b9b8f181
4
+ data.tar.gz: 3dbaae432acfeb321bfefb69b53008997e1b376bbeafa4d4a74b154debfe3767
5
5
  SHA512:
6
- metadata.gz: 1702cb53cd130779239df7d0760351b1e8e3b35aea378d00dcdeb38b9cbd6fd684bf5afa2ae996468b74ebaf9bf8217115c22bbc76ec4e2c798d87cc2c3d39b5
7
- data.tar.gz: d0f04a338eab8077afe79e7efbc753e3fd7773825469624afbda5c5aead285e51d9ac332a79234e0d165998bcc86f8e053a9942dd01d31030274da4dd4229952
6
+ metadata.gz: 6c1aa9ae60f32022674f95dc0b58a0d8f3bee74e34e456c5c67b86f9a716dec183ee949bc0175c3287d9e8c095c3c98fed6cadf68fe8b7ac004326609e2acbb0
7
+ data.tar.gz: feb7fcaf38e725aed74d872f20fe0added485c12194836a95930596e558293e7a0dcb98331265e82d23c62a101e9c257f6f621eb3fd6523f0ac8121468d8390d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.18.0 (2021-11-14)
4
+
5
+ * Regenerated from discovery document revision 20211106
6
+
7
+ ### v0.17.0 (2021-10-24)
8
+
9
+ * Regenerated from discovery document revision 20211018
10
+
11
+ ### v0.16.0 (2021-09-01)
12
+
13
+ * Regenerated from discovery document revision 20210824
14
+
15
+ ### v0.15.0 (2021-07-28)
16
+
17
+ * Regenerated from discovery document revision 20210721
18
+
3
19
  ### v0.14.0 (2021-07-08)
4
20
 
5
21
  * Regenerated from discovery document revision 20210702
data/OVERVIEW.md CHANGED
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
60
60
 
61
61
  More detailed descriptions of the Google simple REST clients are available in two documents.
62
62
 
63
- * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
- * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/master/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
63
+ * The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
64
+ * The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
65
65
 
66
66
  (Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Metastore service in particular.)
67
67
 
@@ -119,6 +119,11 @@ module Google
119
119
  # @return [String]
120
120
  attr_accessor :name
121
121
 
122
+ # Output only. Services that are restoring from the backup.
123
+ # Corresponds to the JSON property `restoringServices`
124
+ # @return [Array<String>]
125
+ attr_accessor :restoring_services
126
+
122
127
  # A managed metastore service that serves metadata queries.
123
128
  # Corresponds to the JSON property `serviceRevision`
124
129
  # @return [Google::Apis::MetastoreV1beta::Service]
@@ -139,12 +144,13 @@ module Google
139
144
  @description = args[:description] if args.key?(:description)
140
145
  @end_time = args[:end_time] if args.key?(:end_time)
141
146
  @name = args[:name] if args.key?(:name)
147
+ @restoring_services = args[:restoring_services] if args.key?(:restoring_services)
142
148
  @service_revision = args[:service_revision] if args.key?(:service_revision)
143
149
  @state = args[:state] if args.key?(:state)
144
150
  end
145
151
  end
146
152
 
147
- # Associates members with a role.
153
+ # Associates members, or principals, with a role.
148
154
  class Binding
149
155
  include Google::Apis::Core::Hashable
150
156
 
@@ -167,7 +173,7 @@ module Google
167
173
  # @return [Google::Apis::MetastoreV1beta::Expr]
168
174
  attr_accessor :condition
169
175
 
170
- # Specifies the identities requesting access for a Cloud Platform resource.
176
+ # Specifies the principals requesting access for a Cloud Platform resource.
171
177
  # members can have the following values: allUsers: A special identifier that
172
178
  # represents anyone who is on the internet; with or without a Google account.
173
179
  # allAuthenticatedUsers: A special identifier that represents anyone who is
@@ -196,8 +202,8 @@ module Google
196
202
  # @return [Array<String>]
197
203
  attr_accessor :members
198
204
 
199
- # Role that is assigned to members. For example, roles/viewer, roles/editor, or
200
- # roles/owner.
205
+ # Role that is assigned to the list of members, or principals. For example,
206
+ # roles/viewer, roles/editor, or roles/owner.
201
207
  # Corresponds to the JSON property `role`
202
208
  # @return [String]
203
209
  attr_accessor :role
@@ -214,6 +220,36 @@ module Google
214
220
  end
215
221
  end
216
222
 
223
+ # Contains information of the customer's network configurations.
224
+ class Consumer
225
+ include Google::Apis::Core::Hashable
226
+
227
+ # Output only. The URI of the endpoint used to access the metastore service.
228
+ # Corresponds to the JSON property `endpointUri`
229
+ # @return [String]
230
+ attr_accessor :endpoint_uri
231
+
232
+ # The subnetwork of the customer project from which an IP address is reserved
233
+ # and used as the Dataproc Metastore service's endpoint. It is accessible to
234
+ # hosts in the subnet and to all hosts in a subnet in the same region and same
235
+ # network. There must be at least one IP address available in the subnet's
236
+ # primary range. The subnet is specified in the following form:`projects/`
237
+ # project_number`/regions/`region_id`/subnetworks/`subnetwork_id`
238
+ # Corresponds to the JSON property `subnetwork`
239
+ # @return [String]
240
+ attr_accessor :subnetwork
241
+
242
+ def initialize(**args)
243
+ update!(**args)
244
+ end
245
+
246
+ # Update properties of this object
247
+ def update!(**args)
248
+ @endpoint_uri = args[:endpoint_uri] if args.key?(:endpoint_uri)
249
+ @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
250
+ end
251
+ end
252
+
217
253
  # Specifies how metastore metadata should be integrated with the Data Catalog
218
254
  # service.
219
255
  class DataCatalogConfig
@@ -275,6 +311,28 @@ module Google
275
311
  end
276
312
  end
277
313
 
314
+ # Specifies how metastore metadata should be integrated with the Dataplex
315
+ # service.
316
+ class DataplexConfig
317
+ include Google::Apis::Core::Hashable
318
+
319
+ # A reference to the Lake resources that this metastore service is attached to.
320
+ # The key is the lake resource name. Example: projects/`project_number`/
321
+ # locations/`location_id`/lakes/`lake_id`.
322
+ # Corresponds to the JSON property `lakeResources`
323
+ # @return [Hash<String,Google::Apis::MetastoreV1beta::Lake>]
324
+ attr_accessor :lake_resources
325
+
326
+ def initialize(**args)
327
+ update!(**args)
328
+ end
329
+
330
+ # Update properties of this object
331
+ def update!(**args)
332
+ @lake_resources = args[:lake_resources] if args.key?(:lake_resources)
333
+ end
334
+ end
335
+
278
336
  # A generic empty message that you can re-use to avoid defining duplicated empty
279
337
  # messages in your APIs. A typical example is to use it as the request or the
280
338
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -418,6 +476,12 @@ module Google
418
476
  # @return [Hash<String,String>]
419
477
  attr_accessor :config_overrides
420
478
 
479
+ # The protocol to use for the metastore service endpoint. If unspecified,
480
+ # defaults to THRIFT.
481
+ # Corresponds to the JSON property `endpointProtocol`
482
+ # @return [String]
483
+ attr_accessor :endpoint_protocol
484
+
421
485
  # Configuration information for a Kerberos principal.
422
486
  # Corresponds to the JSON property `kerberosConfig`
423
487
  # @return [Google::Apis::MetastoreV1beta::KerberosConfig]
@@ -435,6 +499,7 @@ module Google
435
499
  # Update properties of this object
436
500
  def update!(**args)
437
501
  @config_overrides = args[:config_overrides] if args.key?(:config_overrides)
502
+ @endpoint_protocol = args[:endpoint_protocol] if args.key?(:endpoint_protocol)
438
503
  @kerberos_config = args[:kerberos_config] if args.key?(:kerberos_config)
439
504
  @version = args[:version] if args.key?(:version)
440
505
  end
@@ -502,6 +567,26 @@ module Google
502
567
  end
503
568
  end
504
569
 
570
+ # Represents a Lake resource
571
+ class Lake
572
+ include Google::Apis::Core::Hashable
573
+
574
+ # The Lake resource name. Example: projects/`project_number`/locations/`
575
+ # location_id`/lakes/`lake_id`
576
+ # Corresponds to the JSON property `name`
577
+ # @return [String]
578
+ attr_accessor :name
579
+
580
+ def initialize(**args)
581
+ update!(**args)
582
+ end
583
+
584
+ # Update properties of this object
585
+ def update!(**args)
586
+ @name = args[:name] if args.key?(:name)
587
+ end
588
+ end
589
+
505
590
  # Response message for DataprocMetastore.ListBackups.
506
591
  class ListBackupsResponse
507
592
  include Google::Apis::Core::Hashable
@@ -854,6 +939,12 @@ module Google
854
939
  # @return [Google::Apis::MetastoreV1beta::DataCatalogConfig]
855
940
  attr_accessor :data_catalog_config
856
941
 
942
+ # Specifies how metastore metadata should be integrated with the Dataplex
943
+ # service.
944
+ # Corresponds to the JSON property `dataplexConfig`
945
+ # @return [Google::Apis::MetastoreV1beta::DataplexConfig]
946
+ attr_accessor :dataplex_config
947
+
857
948
  def initialize(**args)
858
949
  update!(**args)
859
950
  end
@@ -861,6 +952,7 @@ module Google
861
952
  # Update properties of this object
862
953
  def update!(**args)
863
954
  @data_catalog_config = args[:data_catalog_config] if args.key?(:data_catalog_config)
955
+ @dataplex_config = args[:dataplex_config] if args.key?(:dataplex_config)
864
956
  end
865
957
  end
866
958
 
@@ -889,6 +981,26 @@ module Google
889
981
  end
890
982
  end
891
983
 
984
+ # Network configuration for the Dataproc Metastore service.
985
+ class NetworkConfig
986
+ include Google::Apis::Core::Hashable
987
+
988
+ # Immutable. The consumer-side network configuration for the Dataproc Metastore
989
+ # instance.
990
+ # Corresponds to the JSON property `consumers`
991
+ # @return [Array<Google::Apis::MetastoreV1beta::Consumer>]
992
+ attr_accessor :consumers
993
+
994
+ def initialize(**args)
995
+ update!(**args)
996
+ end
997
+
998
+ # Update properties of this object
999
+ def update!(**args)
1000
+ @consumers = args[:consumers] if args.key?(:consumers)
1001
+ end
1002
+ end
1003
+
892
1004
  # This resource represents a long-running operation that is the result of a
893
1005
  # network API call.
894
1006
  class Operation
@@ -1012,16 +1124,16 @@ module Google
1012
1124
 
1013
1125
  # An Identity and Access Management (IAM) policy, which specifies access
1014
1126
  # controls for Google Cloud resources.A Policy is a collection of bindings. A
1015
- # binding binds one or more members to a single role. Members can be user
1016
- # accounts, service accounts, Google groups, and domains (such as G Suite). A
1017
- # role is a named list of permissions; each role can be an IAM predefined role
1018
- # or a user-created custom role.For some types of Google Cloud resources, a
1019
- # binding can also specify a condition, which is a logical expression that
1020
- # allows access to a resource only if the expression evaluates to true. A
1021
- # condition can add constraints based on attributes of the request, the resource,
1022
- # or both. To learn which resources support conditions in their IAM policies,
1023
- # see the IAM documentation (https://cloud.google.com/iam/help/conditions/
1024
- # resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
1127
+ # binding binds one or more members, or principals, to a single role. Principals
1128
+ # can be user accounts, service accounts, Google groups, and domains (such as G
1129
+ # Suite). A role is a named list of permissions; each role can be an IAM
1130
+ # predefined role or a user-created custom role.For some types of Google Cloud
1131
+ # resources, a binding can also specify a condition, which is a logical
1132
+ # expression that allows access to a resource only if the expression evaluates
1133
+ # to true. A condition can add constraints based on attributes of the request,
1134
+ # the resource, or both. To learn which resources support conditions in their
1135
+ # IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/
1136
+ # conditions/resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
1025
1137
  # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1026
1138
  # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1027
1139
  # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
@@ -1034,7 +1146,7 @@ module Google
1034
1146
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1035
1147
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1036
1148
  # description: Does not grant access after Sep 2020 expression: request.time <
1037
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1149
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1038
1150
  # description of IAM and its features, see the IAM documentation (https://cloud.
1039
1151
  # google.com/iam/docs/).
1040
1152
  class Policy
@@ -1045,9 +1157,14 @@ module Google
1045
1157
  # @return [Array<Google::Apis::MetastoreV1beta::AuditConfig>]
1046
1158
  attr_accessor :audit_configs
1047
1159
 
1048
- # Associates a list of members to a role. Optionally, may specify a condition
1049
- # that determines how and when the bindings are applied. Each of the bindings
1050
- # must contain at least one member.
1160
+ # Associates a list of members, or principals, with a role. Optionally, may
1161
+ # specify a condition that determines how and when the bindings are applied.
1162
+ # Each of the bindings must contain at least one principal.The bindings in a
1163
+ # Policy can refer to up to 1,500 principals; up to 250 of these principals can
1164
+ # be Google groups. Each occurrence of a principal counts towards these limits.
1165
+ # For example, if the bindings grant 50 different roles to user:alice@example.
1166
+ # com, and not to any other principal, then you can add another 1,450 principals
1167
+ # to the bindings in the Policy.
1051
1168
  # Corresponds to the JSON property `bindings`
1052
1169
  # @return [Array<Google::Apis::MetastoreV1beta::Binding>]
1053
1170
  attr_accessor :bindings
@@ -1276,6 +1393,11 @@ module Google
1276
1393
  # @return [String]
1277
1394
  attr_accessor :network
1278
1395
 
1396
+ # Network configuration for the Dataproc Metastore service.
1397
+ # Corresponds to the JSON property `networkConfig`
1398
+ # @return [Google::Apis::MetastoreV1beta::NetworkConfig]
1399
+ attr_accessor :network_config
1400
+
1279
1401
  # The TCP port at which the metastore service is reached. Default: 9083.
1280
1402
  # Corresponds to the JSON property `port`
1281
1403
  # @return [Fixnum]
@@ -1330,6 +1452,7 @@ module Google
1330
1452
  @metadata_management_activity = args[:metadata_management_activity] if args.key?(:metadata_management_activity)
1331
1453
  @name = args[:name] if args.key?(:name)
1332
1454
  @network = args[:network] if args.key?(:network)
1455
+ @network_config = args[:network_config] if args.key?(:network_config)
1333
1456
  @port = args[:port] if args.key?(:port)
1334
1457
  @release_channel = args[:release_channel] if args.key?(:release_channel)
1335
1458
  @state = args[:state] if args.key?(:state)
@@ -1346,16 +1469,16 @@ module Google
1346
1469
 
1347
1470
  # An Identity and Access Management (IAM) policy, which specifies access
1348
1471
  # controls for Google Cloud resources.A Policy is a collection of bindings. A
1349
- # binding binds one or more members to a single role. Members can be user
1350
- # accounts, service accounts, Google groups, and domains (such as G Suite). A
1351
- # role is a named list of permissions; each role can be an IAM predefined role
1352
- # or a user-created custom role.For some types of Google Cloud resources, a
1353
- # binding can also specify a condition, which is a logical expression that
1354
- # allows access to a resource only if the expression evaluates to true. A
1355
- # condition can add constraints based on attributes of the request, the resource,
1356
- # or both. To learn which resources support conditions in their IAM policies,
1357
- # see the IAM documentation (https://cloud.google.com/iam/help/conditions/
1358
- # resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
1472
+ # binding binds one or more members, or principals, to a single role. Principals
1473
+ # can be user accounts, service accounts, Google groups, and domains (such as G
1474
+ # Suite). A role is a named list of permissions; each role can be an IAM
1475
+ # predefined role or a user-created custom role.For some types of Google Cloud
1476
+ # resources, a binding can also specify a condition, which is a logical
1477
+ # expression that allows access to a resource only if the expression evaluates
1478
+ # to true. A condition can add constraints based on attributes of the request,
1479
+ # the resource, or both. To learn which resources support conditions in their
1480
+ # IAM policies, see the IAM documentation (https://cloud.google.com/iam/help/
1481
+ # conditions/resource-policies).JSON example: ` "bindings": [ ` "role": "roles/
1359
1482
  # resourcemanager.organizationAdmin", "members": [ "user:mike@example.com", "
1360
1483
  # group:admins@example.com", "domain:google.com", "serviceAccount:my-project-id@
1361
1484
  # appspot.gserviceaccount.com" ] `, ` "role": "roles/resourcemanager.
@@ -1368,7 +1491,7 @@ module Google
1368
1491
  # resourcemanager.organizationAdmin - members: - user:eve@example.com role:
1369
1492
  # roles/resourcemanager.organizationViewer condition: title: expirable access
1370
1493
  # description: Does not grant access after Sep 2020 expression: request.time <
1371
- # timestamp('2020-10-01T00:00:00.000Z') - etag: BwWWja0YfJA= - version: 3 For a
1494
+ # timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
1372
1495
  # description of IAM and its features, see the IAM documentation (https://cloud.
1373
1496
  # google.com/iam/docs/).
1374
1497
  # Corresponds to the JSON property `policy`
@@ -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.14.0"
19
+ GEM_VERSION = "0.18.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210702"
25
+ REVISION = "20211106"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class Consumer
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class DataCatalogConfig
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -58,6 +64,12 @@ module Google
58
64
  include Google::Apis::Core::JsonObjectSupport
59
65
  end
60
66
 
67
+ class DataplexConfig
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
61
73
  class Empty
62
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
75
 
@@ -100,6 +112,12 @@ module Google
100
112
  include Google::Apis::Core::JsonObjectSupport
101
113
  end
102
114
 
115
+ class Lake
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
103
121
  class ListBackupsResponse
104
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
123
 
@@ -172,6 +190,12 @@ module Google
172
190
  include Google::Apis::Core::JsonObjectSupport
173
191
  end
174
192
 
193
+ class NetworkConfig
194
+ class Representation < Google::Apis::Core::JsonRepresentation; end
195
+
196
+ include Google::Apis::Core::JsonObjectSupport
197
+ end
198
+
175
199
  class Operation
176
200
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
201
 
@@ -262,6 +286,7 @@ module Google
262
286
  property :description, as: 'description'
263
287
  property :end_time, as: 'endTime'
264
288
  property :name, as: 'name'
289
+ collection :restoring_services, as: 'restoringServices'
265
290
  property :service_revision, as: 'serviceRevision', class: Google::Apis::MetastoreV1beta::Service, decorator: Google::Apis::MetastoreV1beta::Service::Representation
266
291
 
267
292
  property :state, as: 'state'
@@ -278,6 +303,14 @@ module Google
278
303
  end
279
304
  end
280
305
 
306
+ class Consumer
307
+ # @private
308
+ class Representation < Google::Apis::Core::JsonRepresentation
309
+ property :endpoint_uri, as: 'endpointUri'
310
+ property :subnetwork, as: 'subnetwork'
311
+ end
312
+ end
313
+
281
314
  class DataCatalogConfig
282
315
  # @private
283
316
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -295,6 +328,14 @@ module Google
295
328
  end
296
329
  end
297
330
 
331
+ class DataplexConfig
332
+ # @private
333
+ class Representation < Google::Apis::Core::JsonRepresentation
334
+ hash :lake_resources, as: 'lakeResources', class: Google::Apis::MetastoreV1beta::Lake, decorator: Google::Apis::MetastoreV1beta::Lake::Representation
335
+
336
+ end
337
+ end
338
+
298
339
  class Empty
299
340
  # @private
300
341
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -331,6 +372,7 @@ module Google
331
372
  # @private
332
373
  class Representation < Google::Apis::Core::JsonRepresentation
333
374
  hash :config_overrides, as: 'configOverrides'
375
+ property :endpoint_protocol, as: 'endpointProtocol'
334
376
  property :kerberos_config, as: 'kerberosConfig', class: Google::Apis::MetastoreV1beta::KerberosConfig, decorator: Google::Apis::MetastoreV1beta::KerberosConfig::Representation
335
377
 
336
378
  property :version, as: 'version'
@@ -355,6 +397,13 @@ module Google
355
397
  end
356
398
  end
357
399
 
400
+ class Lake
401
+ # @private
402
+ class Representation < Google::Apis::Core::JsonRepresentation
403
+ property :name, as: 'name'
404
+ end
405
+ end
406
+
358
407
  class ListBackupsResponse
359
408
  # @private
360
409
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -460,6 +509,8 @@ module Google
460
509
  class Representation < Google::Apis::Core::JsonRepresentation
461
510
  property :data_catalog_config, as: 'dataCatalogConfig', class: Google::Apis::MetastoreV1beta::DataCatalogConfig, decorator: Google::Apis::MetastoreV1beta::DataCatalogConfig::Representation
462
511
 
512
+ property :dataplex_config, as: 'dataplexConfig', class: Google::Apis::MetastoreV1beta::DataplexConfig, decorator: Google::Apis::MetastoreV1beta::DataplexConfig::Representation
513
+
463
514
  end
464
515
  end
465
516
 
@@ -473,6 +524,14 @@ module Google
473
524
  end
474
525
  end
475
526
 
527
+ class NetworkConfig
528
+ # @private
529
+ class Representation < Google::Apis::Core::JsonRepresentation
530
+ collection :consumers, as: 'consumers', class: Google::Apis::MetastoreV1beta::Consumer, decorator: Google::Apis::MetastoreV1beta::Consumer::Representation
531
+
532
+ end
533
+ end
534
+
476
535
  class Operation
477
536
  # @private
478
537
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -557,6 +616,8 @@ module Google
557
616
 
558
617
  property :name, as: 'name'
559
618
  property :network, as: 'network'
619
+ property :network_config, as: 'networkConfig', class: Google::Apis::MetastoreV1beta::NetworkConfig, decorator: Google::Apis::MetastoreV1beta::NetworkConfig::Representation
620
+
560
621
  property :port, as: 'port'
561
622
  property :release_channel, as: 'releaseChannel'
562
623
  property :state, as: 'state'
@@ -399,12 +399,16 @@ module Google
399
399
  # REQUIRED: The resource for which the policy is being requested. See the
400
400
  # operation documentation for the appropriate value for this field.
401
401
  # @param [Fixnum] options_requested_policy_version
402
- # Optional. The policy format version to be returned.Valid values are 0, 1, and
403
- # 3. Requests specifying an invalid value will be rejected.Requests for policies
404
- # with any conditional bindings must specify version 3. Policies without any
405
- # conditional bindings may specify any valid value or leave the field unset.To
406
- # learn which resources support conditions in their IAM policies, see the IAM
407
- # documentation (https://cloud.google.com/iam/help/conditions/resource-policies).
402
+ # Optional. The maximum policy version that will be used to format the policy.
403
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
404
+ # rejected.Requests for policies with any conditional role bindings must specify
405
+ # version 3. Policies with no conditional role bindings may specify any valid
406
+ # value or leave the field unset.The policy in the response might use the policy
407
+ # version that you specified, or it might use a lower policy version. For
408
+ # example, if you specify version 3, but the policy has no conditional role
409
+ # bindings, the response uses version 1.To learn which resources support
410
+ # conditions in their IAM policies, see the IAM documentation (https://cloud.
411
+ # google.com/iam/help/conditions/resource-policies).
408
412
  # @param [String] fields
409
413
  # Selector specifying which fields to include in a partial response.
410
414
  # @param [String] quota_user
@@ -774,12 +778,16 @@ module Google
774
778
  # REQUIRED: The resource for which the policy is being requested. See the
775
779
  # operation documentation for the appropriate value for this field.
776
780
  # @param [Fixnum] options_requested_policy_version
777
- # Optional. The policy format version to be returned.Valid values are 0, 1, and
778
- # 3. Requests specifying an invalid value will be rejected.Requests for policies
779
- # with any conditional bindings must specify version 3. Policies without any
780
- # conditional bindings may specify any valid value or leave the field unset.To
781
- # learn which resources support conditions in their IAM policies, see the IAM
782
- # documentation (https://cloud.google.com/iam/help/conditions/resource-policies).
781
+ # Optional. The maximum policy version that will be used to format the policy.
782
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
783
+ # rejected.Requests for policies with any conditional role bindings must specify
784
+ # version 3. Policies with no conditional role bindings may specify any valid
785
+ # value or leave the field unset.The policy in the response might use the policy
786
+ # version that you specified, or it might use a lower policy version. For
787
+ # example, if you specify version 3, but the policy has no conditional role
788
+ # bindings, the response uses version 1.To learn which resources support
789
+ # conditions in their IAM policies, see the IAM documentation (https://cloud.
790
+ # google.com/iam/help/conditions/resource-policies).
783
791
  # @param [String] fields
784
792
  # Selector specifying which fields to include in a partial response.
785
793
  # @param [String] quota_user
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta'
32
32
 
33
- # See, edit, configure, and delete your Google Cloud Platform data
33
+ # See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
34
34
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
35
35
  end
36
36
  end
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.14.0
4
+ version: 0.18.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-07-12 00:00:00.000000000 Z
11
+ date: 2021-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -57,9 +57,9 @@ licenses:
57
57
  - Apache-2.0
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
- changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.14.0
62
- source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-metastore_v1beta
60
+ changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1beta/CHANGELOG.md
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.18.0
62
+ source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1beta
63
63
  post_install_message:
64
64
  rdoc_options: []
65
65
  require_paths: