google-apis-metastore_v1alpha 0.62.0 → 0.64.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: 894bf50e8a2257396358e9a3f3be9dc4e59a6567877cc796f5a05a0e757a0833
4
- data.tar.gz: b6e19977fc5b11c44b1b755d9b5316f6fcea242dfb8c69825d3384e5e435b31e
3
+ metadata.gz: b07a97a80c483430249da55b50a55b0fb510bcc9e540beafed613135c5f56de7
4
+ data.tar.gz: 2560d7cd63db6001a1f14aa9329db00d3c0a54eb9a2d591a84277089da634093
5
5
  SHA512:
6
- metadata.gz: 1d53db64b442829857f316a5507a364578981d51ecd02adda7eca57de3d16a30bc8695d4a26e49564b60549c8796771eadba5445fe4196866e7adea5cf1d808e
7
- data.tar.gz: 4569931e5c713b52a0c0703eba0736be2122eb0200957955b2d9bbe8bfb668bc771c30371ca99ea1bd45a1cedfb1bd502514918fe87002cf5e1cbb468a184969
6
+ metadata.gz: bd4d9b649de5846f3c9b3427a99dfd6e5990265f721533f0b90729b0b79254bbe390c9ec733d59587f68a29c75a2e073dde681bb0df82a8782afe6e6b2fdc77c
7
+ data.tar.gz: 979512bc0fbf313b095b5843b67fd441155bbc87cfcd5f9a588e10d65974c966e38ec640bc7841f105bc56e9220bc6e50aa3cbf0706d101cf12530fc9ecc4a02
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-metastore_v1alpha
2
2
 
3
+ ### v0.64.0 (2024-07-25)
4
+
5
+ * Regenerated from discovery document revision 20240709
6
+
7
+ ### v0.63.0 (2024-06-16)
8
+
9
+ * Regenerated from discovery document revision 20240611
10
+
3
11
  ### v0.62.0 (2024-05-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20240510
@@ -717,6 +717,34 @@ module Google
717
717
  end
718
718
  end
719
719
 
720
+ # Custom configuration used to specify regions that the metastore service runs
721
+ # in. Currently only supported in the us multi-region.
722
+ class CustomRegionConfig
723
+ include Google::Apis::Core::Hashable
724
+
725
+ # Optional. The list of read-only regions where the metastore service runs in.
726
+ # These regions should be part (or subset) of the multi-region.
727
+ # Corresponds to the JSON property `readOnlyRegions`
728
+ # @return [Array<String>]
729
+ attr_accessor :read_only_regions
730
+
731
+ # Required. The list of read-write regions where the metastore service runs in.
732
+ # These regions should be part (or subset) of the multi-region.
733
+ # Corresponds to the JSON property `readWriteRegions`
734
+ # @return [Array<String>]
735
+ attr_accessor :read_write_regions
736
+
737
+ def initialize(**args)
738
+ update!(**args)
739
+ end
740
+
741
+ # Update properties of this object
742
+ def update!(**args)
743
+ @read_only_regions = args[:read_only_regions] if args.key?(:read_only_regions)
744
+ @read_write_regions = args[:read_write_regions] if args.key?(:read_write_regions)
745
+ end
746
+ end
747
+
720
748
  # Metadata about a custom region. This is only populated if the region is a
721
749
  # custom region. For single/multi regions, it will be empty.
722
750
  class CustomRegionMetadata
@@ -1840,6 +1868,33 @@ module Google
1840
1868
  end
1841
1869
  end
1842
1870
 
1871
+ # The multi-region config for the Dataproc Metastore service.
1872
+ class MultiRegionConfig
1873
+ include Google::Apis::Core::Hashable
1874
+
1875
+ # Output only. The list of root CA certificates that a gRPC client uses to
1876
+ # connect to a multi-regional Dataproc Metastore service.
1877
+ # Corresponds to the JSON property `certificates`
1878
+ # @return [Array<Google::Apis::MetastoreV1alpha::RootCaCertificate>]
1879
+ attr_accessor :certificates
1880
+
1881
+ # Custom configuration used to specify regions that the metastore service runs
1882
+ # in. Currently only supported in the us multi-region.
1883
+ # Corresponds to the JSON property `customRegionConfig`
1884
+ # @return [Google::Apis::MetastoreV1alpha::CustomRegionConfig]
1885
+ attr_accessor :custom_region_config
1886
+
1887
+ def initialize(**args)
1888
+ update!(**args)
1889
+ end
1890
+
1891
+ # Update properties of this object
1892
+ def update!(**args)
1893
+ @certificates = args[:certificates] if args.key?(:certificates)
1894
+ @custom_region_config = args[:custom_region_config] if args.key?(:custom_region_config)
1895
+ end
1896
+ end
1897
+
1843
1898
  # The metadata for the multi-region that includes the constituent regions. The
1844
1899
  # metadata is only populated if the region is multi-region. For single region or
1845
1900
  # custom dual region, it will be empty.
@@ -2295,6 +2350,32 @@ module Google
2295
2350
  end
2296
2351
  end
2297
2352
 
2353
+ # A gRPC client must install all root CA certificates to connect to a multi-
2354
+ # regional Dataproc Metastore service and achieve failover.
2355
+ class RootCaCertificate
2356
+ include Google::Apis::Core::Hashable
2357
+
2358
+ # The root CA certificate in PEM format. The maximum length is 65536 bytes.
2359
+ # Corresponds to the JSON property `certificate`
2360
+ # @return [String]
2361
+ attr_accessor :certificate
2362
+
2363
+ # The certificate expiration time in timestamp format.
2364
+ # Corresponds to the JSON property `expirationTime`
2365
+ # @return [String]
2366
+ attr_accessor :expiration_time
2367
+
2368
+ def initialize(**args)
2369
+ update!(**args)
2370
+ end
2371
+
2372
+ # Update properties of this object
2373
+ def update!(**args)
2374
+ @certificate = args[:certificate] if args.key?(:certificate)
2375
+ @expiration_time = args[:expiration_time] if args.key?(:expiration_time)
2376
+ end
2377
+ end
2378
+
2298
2379
  # Represents the scaling configuration of a metastore service.
2299
2380
  class ScalingConfig
2300
2381
  include Google::Apis::Core::Hashable
@@ -2470,6 +2551,11 @@ module Google
2470
2551
  # @return [Google::Apis::MetastoreV1alpha::MetadataManagementActivity]
2471
2552
  attr_accessor :metadata_management_activity
2472
2553
 
2554
+ # The multi-region config for the Dataproc Metastore service.
2555
+ # Corresponds to the JSON property `multiRegionConfig`
2556
+ # @return [Google::Apis::MetastoreV1alpha::MultiRegionConfig]
2557
+ attr_accessor :multi_region_config
2558
+
2473
2559
  # Immutable. The relative resource name of the metastore service, in the
2474
2560
  # following format:projects/`project_number`/locations/`location_id`/services/`
2475
2561
  # service_id`.
@@ -2558,6 +2644,7 @@ module Google
2558
2644
  @maintenance_window = args[:maintenance_window] if args.key?(:maintenance_window)
2559
2645
  @metadata_integration = args[:metadata_integration] if args.key?(:metadata_integration)
2560
2646
  @metadata_management_activity = args[:metadata_management_activity] if args.key?(:metadata_management_activity)
2647
+ @multi_region_config = args[:multi_region_config] if args.key?(:multi_region_config)
2561
2648
  @name = args[:name] if args.key?(:name)
2562
2649
  @network = args[:network] if args.key?(:network)
2563
2650
  @network_config = args[:network_config] if args.key?(:network_config)
@@ -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.62.0"
19
+ GEM_VERSION = "0.64.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240510"
25
+ REVISION = "20240709"
26
26
  end
27
27
  end
28
28
  end
@@ -136,6 +136,12 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
+ class CustomRegionConfig
140
+ class Representation < Google::Apis::Core::JsonRepresentation; end
141
+
142
+ include Google::Apis::Core::JsonObjectSupport
143
+ end
144
+
139
145
  class CustomRegionMetadata
140
146
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
147
 
@@ -334,6 +340,12 @@ module Google
334
340
  include Google::Apis::Core::JsonObjectSupport
335
341
  end
336
342
 
343
+ class MultiRegionConfig
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
337
349
  class MultiRegionMetadata
338
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
351
 
@@ -400,6 +412,12 @@ module Google
400
412
  include Google::Apis::Core::JsonObjectSupport
401
413
  end
402
414
 
415
+ class RootCaCertificate
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
403
421
  class ScalingConfig
404
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
405
423
 
@@ -630,6 +648,14 @@ module Google
630
648
  end
631
649
  end
632
650
 
651
+ class CustomRegionConfig
652
+ # @private
653
+ class Representation < Google::Apis::Core::JsonRepresentation
654
+ collection :read_only_regions, as: 'readOnlyRegions'
655
+ collection :read_write_regions, as: 'readWriteRegions'
656
+ end
657
+ end
658
+
633
659
  class CustomRegionMetadata
634
660
  # @private
635
661
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -949,6 +975,16 @@ module Google
949
975
  end
950
976
  end
951
977
 
978
+ class MultiRegionConfig
979
+ # @private
980
+ class Representation < Google::Apis::Core::JsonRepresentation
981
+ collection :certificates, as: 'certificates', class: Google::Apis::MetastoreV1alpha::RootCaCertificate, decorator: Google::Apis::MetastoreV1alpha::RootCaCertificate::Representation
982
+
983
+ property :custom_region_config, as: 'customRegionConfig', class: Google::Apis::MetastoreV1alpha::CustomRegionConfig, decorator: Google::Apis::MetastoreV1alpha::CustomRegionConfig::Representation
984
+
985
+ end
986
+ end
987
+
952
988
  class MultiRegionMetadata
953
989
  # @private
954
990
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1053,6 +1089,14 @@ module Google
1053
1089
  end
1054
1090
  end
1055
1091
 
1092
+ class RootCaCertificate
1093
+ # @private
1094
+ class Representation < Google::Apis::Core::JsonRepresentation
1095
+ property :certificate, as: 'certificate'
1096
+ property :expiration_time, as: 'expirationTime'
1097
+ end
1098
+ end
1099
+
1056
1100
  class ScalingConfig
1057
1101
  # @private
1058
1102
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1102,6 +1146,8 @@ module Google
1102
1146
 
1103
1147
  property :metadata_management_activity, as: 'metadataManagementActivity', class: Google::Apis::MetastoreV1alpha::MetadataManagementActivity, decorator: Google::Apis::MetastoreV1alpha::MetadataManagementActivity::Representation
1104
1148
 
1149
+ property :multi_region_config, as: 'multiRegionConfig', class: Google::Apis::MetastoreV1alpha::MultiRegionConfig, decorator: Google::Apis::MetastoreV1alpha::MultiRegionConfig::Representation
1150
+
1105
1151
  property :name, as: 'name'
1106
1152
  property :network, as: 'network'
1107
1153
  property :network_config, as: 'networkConfig', class: Google::Apis::MetastoreV1alpha::NetworkConfig, decorator: Google::Apis::MetastoreV1alpha::NetworkConfig::Representation
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.62.0
4
+ version: 0.64.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: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-07-25 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.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.64.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: []