google-apis-metastore_v1alpha 0.17.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: 3d0295fc1341421eb51142fff394831ddcc6df885c22cb389e6916174aa5ded0
4
- data.tar.gz: c021a8776e9099b6d004f6f4ba8e122c3308a6cd142830c3f27177c1268bd6d3
3
+ metadata.gz: a188bdf41c0d6ceb02b2e32b5aeadd5149bda6966edbe9e98895622643ee10e4
4
+ data.tar.gz: 8eebffa5a19d5d329777008f0e966d5df41ade66dcc71f1cd775d0fdbad6f767
5
5
  SHA512:
6
- metadata.gz: 7b2d7159d584b7c83720052cc410bb8a2040a85f26e6dba7658cd6a2f4190e4dbc9fca9b3d8b10b5042ffb291770eae12e270c710dda3d5a418ac8d358f985a5
7
- data.tar.gz: a431acb9b1ce3e986e403e87e3e1836a3aae1c2ce4c8d71f2d2c67802c7d520e4be4307b972449264dff2797ebe9d7f7854ab2448fe40a6bcd1d18cd3c868b89
6
+ metadata.gz: 82dd68fefd8ff805b13be1ee32052906f177e813e57eb2a98fdd4916ec013e0ef7996393cbefaa3eded9d196f5cc53cc67d23210c5955ddeeba590040734dd64
7
+ data.tar.gz: 45994c775e5d822f8c02bf52db834121d033f2c5f2ca151caa2c4eed6c475c1a6b8df4425e4ce458aaacf2984f6349b6e261d084fc8c343f59fcf61542d7b5fd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1alpha
2
2
 
3
+ ### v0.18.0 (2021-11-14)
4
+
5
+ * Regenerated from discovery document revision 20211106
6
+
3
7
  ### v0.17.0 (2021-10-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20211018
@@ -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::MetastoreV1alpha::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::MetastoreV1alpha::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 MetastoreV1alpha
18
18
  # Version of the google-apis-metastore_v1alpha gem
19
- GEM_VERSION = "0.17.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 = "20211018"
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::MetastoreV1alpha::Consumer, decorator: Google::Apis::MetastoreV1alpha::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::MetastoreV1alpha::NetworkConfig, decorator: Google::Apis::MetastoreV1alpha::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 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
@@ -939,12 +947,16 @@ module Google
939
947
  # REQUIRED: The resource for which the policy is being requested. See the
940
948
  # operation documentation for the appropriate value for this field.
941
949
  # @param [Fixnum] options_requested_policy_version
942
- # Optional. The policy format version to be returned.Valid values are 0, 1, and
943
- # 3. Requests specifying an invalid value will be rejected.Requests for policies
944
- # with any conditional bindings must specify version 3. Policies without any
945
- # conditional bindings may specify any valid value or leave the field unset.To
946
- # learn which resources support conditions in their IAM policies, see the IAM
947
- # documentation (https://cloud.google.com/iam/help/conditions/resource-policies).
950
+ # Optional. The maximum policy version that will be used to format the policy.
951
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
952
+ # rejected.Requests for policies with any conditional role bindings must specify
953
+ # version 3. Policies with no conditional role bindings may specify any valid
954
+ # value or leave the field unset.The policy in the response might use the policy
955
+ # version that you specified, or it might use a lower policy version. For
956
+ # example, if you specify version 3, but the policy has no conditional role
957
+ # bindings, the response uses version 1.To learn which resources support
958
+ # conditions in their IAM policies, see the IAM documentation (https://cloud.
959
+ # google.com/iam/help/conditions/resource-policies).
948
960
  # @param [String] fields
949
961
  # Selector specifying which fields to include in a partial response.
950
962
  # @param [String] quota_user
@@ -1053,12 +1065,16 @@ module Google
1053
1065
  # REQUIRED: The resource for which the policy is being requested. See the
1054
1066
  # operation documentation for the appropriate value for this field.
1055
1067
  # @param [Fixnum] options_requested_policy_version
1056
- # Optional. The policy format version to be returned.Valid values are 0, 1, and
1057
- # 3. Requests specifying an invalid value will be rejected.Requests for policies
1058
- # with any conditional bindings must specify version 3. Policies without any
1059
- # conditional bindings may specify any valid value or leave the field unset.To
1060
- # learn which resources support conditions in their IAM policies, see the IAM
1061
- # documentation (https://cloud.google.com/iam/help/conditions/resource-policies).
1068
+ # Optional. The maximum policy version that will be used to format the policy.
1069
+ # Valid values are 0, 1, and 3. Requests specifying an invalid value will be
1070
+ # rejected.Requests for policies with any conditional role bindings must specify
1071
+ # version 3. Policies with no conditional role bindings may specify any valid
1072
+ # value or leave the field unset.The policy in the response might use the policy
1073
+ # version that you specified, or it might use a lower policy version. For
1074
+ # example, if you specify version 3, but the policy has no conditional role
1075
+ # bindings, the response uses version 1.To learn which resources support
1076
+ # conditions in their IAM policies, see the IAM documentation (https://cloud.
1077
+ # google.com/iam/help/conditions/resource-policies).
1062
1078
  # @param [String] fields
1063
1079
  # Selector specifying which fields to include in a partial response.
1064
1080
  # @param [String] quota_user
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-metastore_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.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-10-27 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
@@ -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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.17.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.18.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []