google-apis-metastore_v1beta 0.17.0 → 0.18.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f110c5fe0a721e43959b362dc4da41f72d1ee3424261e72075e3be77b9b8f181
|
4
|
+
data.tar.gz: 3dbaae432acfeb321bfefb69b53008997e1b376bbeafa4d4a74b154debfe3767
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c1aa9ae60f32022674f95dc0b58a0d8f3bee74e34e456c5c67b86f9a716dec183ee949bc0175c3287d9e8c095c3c98fed6cadf68fe8b7ac004326609e2acbb0
|
7
|
+
data.tar.gz: feb7fcaf38e725aed74d872f20fe0added485c12194836a95930596e558293e7a0dcb98331265e82d23c62a101e9c257f6f621eb3fd6523f0ac8121468d8390d
|
data/CHANGELOG.md
CHANGED
@@ -220,6 +220,36 @@ module Google
|
|
220
220
|
end
|
221
221
|
end
|
222
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
|
+
|
223
253
|
# Specifies how metastore metadata should be integrated with the Data Catalog
|
224
254
|
# service.
|
225
255
|
class DataCatalogConfig
|
@@ -951,6 +981,26 @@ module Google
|
|
951
981
|
end
|
952
982
|
end
|
953
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
|
+
|
954
1004
|
# This resource represents a long-running operation that is the result of a
|
955
1005
|
# network API call.
|
956
1006
|
class Operation
|
@@ -1343,6 +1393,11 @@ module Google
|
|
1343
1393
|
# @return [String]
|
1344
1394
|
attr_accessor :network
|
1345
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
|
+
|
1346
1401
|
# The TCP port at which the metastore service is reached. Default: 9083.
|
1347
1402
|
# Corresponds to the JSON property `port`
|
1348
1403
|
# @return [Fixnum]
|
@@ -1397,6 +1452,7 @@ module Google
|
|
1397
1452
|
@metadata_management_activity = args[:metadata_management_activity] if args.key?(:metadata_management_activity)
|
1398
1453
|
@name = args[:name] if args.key?(:name)
|
1399
1454
|
@network = args[:network] if args.key?(:network)
|
1455
|
+
@network_config = args[:network_config] if args.key?(:network_config)
|
1400
1456
|
@port = args[:port] if args.key?(:port)
|
1401
1457
|
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
1402
1458
|
@state = args[:state] if args.key?(:state)
|
@@ -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.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 = "
|
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
|
|
@@ -184,6 +190,12 @@ module Google
|
|
184
190
|
include Google::Apis::Core::JsonObjectSupport
|
185
191
|
end
|
186
192
|
|
193
|
+
class NetworkConfig
|
194
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
|
+
|
196
|
+
include Google::Apis::Core::JsonObjectSupport
|
197
|
+
end
|
198
|
+
|
187
199
|
class Operation
|
188
200
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
201
|
|
@@ -291,6 +303,14 @@ module Google
|
|
291
303
|
end
|
292
304
|
end
|
293
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
|
+
|
294
314
|
class DataCatalogConfig
|
295
315
|
# @private
|
296
316
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -504,6 +524,14 @@ module Google
|
|
504
524
|
end
|
505
525
|
end
|
506
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
|
+
|
507
535
|
class Operation
|
508
536
|
# @private
|
509
537
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -588,6 +616,8 @@ module Google
|
|
588
616
|
|
589
617
|
property :name, as: 'name'
|
590
618
|
property :network, as: 'network'
|
619
|
+
property :network_config, as: 'networkConfig', class: Google::Apis::MetastoreV1beta::NetworkConfig, decorator: Google::Apis::MetastoreV1beta::NetworkConfig::Representation
|
620
|
+
|
591
621
|
property :port, as: 'port'
|
592
622
|
property :release_channel, as: 'releaseChannel'
|
593
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
|
403
|
-
# 3. Requests specifying an invalid value will be
|
404
|
-
# with any conditional bindings must specify
|
405
|
-
# conditional bindings may specify any valid
|
406
|
-
#
|
407
|
-
#
|
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
|
778
|
-
# 3. Requests specifying an invalid value will be
|
779
|
-
# with any conditional bindings must specify
|
780
|
-
# conditional bindings may specify any valid
|
781
|
-
#
|
782
|
-
#
|
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
|
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.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-
|
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
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.18.0
|
62
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: []
|