google-apis-metastore_v1 0.28.0 → 0.30.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: d7e7b830686d9d21e2cf7e9d9e66f29b5efb6a71034a973d694ea1d2adc842b1
4
- data.tar.gz: ce72c20117ec248ec21413d693672e3ec0697d6554afe19d9f99800bd42108d4
3
+ metadata.gz: a809f3c00c896602afe4e408cce8710cf814ac1b9e73d2b023cb27de89cd9a83
4
+ data.tar.gz: ca3ec86098a4604aca34318cae868b97198bec09c3a48bb845ef9c52277c3c70
5
5
  SHA512:
6
- metadata.gz: 9c8bbe75acd2c400fee71a105d22121b1101e7f213b2b10548633a04129a42bc0117bccde98ed863dcf31e08759b7aa8a1319af31a8803acc5aaaa4ff016ad35
7
- data.tar.gz: 0f236ca7e108c33d9d4c63566a864d038027ed579ca845100139b74de3e8041a48b336fb18cc6277851d77a2d6debf6bd2cfb8832dee04860b52cda7daada538
6
+ metadata.gz: 569e6bd98115c78f705f24bc608217fa605b6f39e30fb5a4af06ee8d80871ab33cbd129775241c944f7f874d378cf477655c55f4a0427499f74d334c52f3640a
7
+ data.tar.gz: 8ee0ff38c66b5d31517f7529b3e04d2d96c12db2352fbad3ea4ec7154ad61e7ce5b6c77b8da885c34a775d8f091e20f86354f468d3f78a2b264fd80fcbf7bc0f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-metastore_v1
2
2
 
3
+ ### v0.30.0 (2024-12-08)
4
+
5
+ * Regenerated from discovery document revision 20241203
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.29.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240709
11
+
3
12
  ### v0.28.0 (2024-07-07)
4
13
 
5
14
  * Regenerated from discovery document revision 20240627
@@ -675,6 +675,38 @@ module Google
675
675
  end
676
676
  end
677
677
 
678
+ # Metadata about a custom region. This is only populated if the region is a
679
+ # custom region. For single/multi regions, it will be empty.
680
+ class CustomRegionMetadata
681
+ include Google::Apis::Core::Hashable
682
+
683
+ # The read-only regions for this custom region.
684
+ # Corresponds to the JSON property `optionalReadOnlyRegions`
685
+ # @return [Array<String>]
686
+ attr_accessor :optional_read_only_regions
687
+
688
+ # The read-write regions for this custom region.
689
+ # Corresponds to the JSON property `requiredReadWriteRegions`
690
+ # @return [Array<String>]
691
+ attr_accessor :required_read_write_regions
692
+
693
+ # The Spanner witness region for this custom region.
694
+ # Corresponds to the JSON property `witnessRegion`
695
+ # @return [String]
696
+ attr_accessor :witness_region
697
+
698
+ def initialize(**args)
699
+ update!(**args)
700
+ end
701
+
702
+ # Update properties of this object
703
+ def update!(**args)
704
+ @optional_read_only_regions = args[:optional_read_only_regions] if args.key?(:optional_read_only_regions)
705
+ @required_read_write_regions = args[:required_read_write_regions] if args.key?(:required_read_write_regions)
706
+ @witness_region = args[:witness_region] if args.key?(:witness_region)
707
+ end
708
+ end
709
+
678
710
  # Specifies how metastore metadata should be integrated with the Data Catalog
679
711
  # service.
680
712
  class DataCatalogConfig
@@ -1410,6 +1442,11 @@ module Google
1410
1442
  class LocationMetadata
1411
1443
  include Google::Apis::Core::Hashable
1412
1444
 
1445
+ # Possible configurations supported if the current region is a custom region.
1446
+ # Corresponds to the JSON property `customRegionMetadata`
1447
+ # @return [Array<Google::Apis::MetastoreV1::CustomRegionMetadata>]
1448
+ attr_accessor :custom_region_metadata
1449
+
1413
1450
  # The metadata for the multi-region that includes the constituent regions. The
1414
1451
  # metadata is only populated if the region is multi-region. For single region or
1415
1452
  # custom dual region, it will be empty.
@@ -1430,6 +1467,7 @@ module Google
1430
1467
 
1431
1468
  # Update properties of this object
1432
1469
  def update!(**args)
1470
+ @custom_region_metadata = args[:custom_region_metadata] if args.key?(:custom_region_metadata)
1433
1471
  @multi_region_metadata = args[:multi_region_metadata] if args.key?(:multi_region_metadata)
1434
1472
  @supported_hive_metastore_versions = args[:supported_hive_metastore_versions] if args.key?(:supported_hive_metastore_versions)
1435
1473
  end
@@ -1834,9 +1872,9 @@ module Google
1834
1872
  attr_accessor :end_time
1835
1873
 
1836
1874
  # Output only. Identifies whether the caller has requested cancellation of the
1837
- # operation. Operations that have successfully been cancelled have Operation.
1838
- # error value with a google.rpc.Status.code of 1, corresponding to Code.
1839
- # CANCELLED.
1875
+ # operation. Operations that have successfully been cancelled have google.
1876
+ # longrunning.Operation.error value with a google.rpc.Status.code of 1,
1877
+ # corresponding to Code.CANCELLED.
1840
1878
  # Corresponds to the JSON property `requestedCancellation`
1841
1879
  # @return [Boolean]
1842
1880
  attr_accessor :requested_cancellation
@@ -2067,7 +2105,7 @@ module Google
2067
2105
  end
2068
2106
  end
2069
2107
 
2070
- # Request message for DataprocMetastore.Restore.
2108
+ # Request message for DataprocMetastore.RestoreService.
2071
2109
  class RestoreServiceRequest
2072
2110
  include Google::Apis::Core::Hashable
2073
2111
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MetastoreV1
18
18
  # Version of the google-apis-metastore_v1 gem
19
- GEM_VERSION = "0.28.0"
19
+ GEM_VERSION = "0.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240627"
25
+ REVISION = "20241203"
26
26
  end
27
27
  end
28
28
  end
@@ -124,6 +124,12 @@ module Google
124
124
  include Google::Apis::Core::JsonObjectSupport
125
125
  end
126
126
 
127
+ class CustomRegionMetadata
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
127
133
  class DataCatalogConfig
128
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
129
135
 
@@ -574,6 +580,15 @@ module Google
574
580
  end
575
581
  end
576
582
 
583
+ class CustomRegionMetadata
584
+ # @private
585
+ class Representation < Google::Apis::Core::JsonRepresentation
586
+ collection :optional_read_only_regions, as: 'optionalReadOnlyRegions'
587
+ collection :required_read_write_regions, as: 'requiredReadWriteRegions'
588
+ property :witness_region, as: 'witnessRegion'
589
+ end
590
+ end
591
+
577
592
  class DataCatalogConfig
578
593
  # @private
579
594
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -778,6 +793,8 @@ module Google
778
793
  class LocationMetadata
779
794
  # @private
780
795
  class Representation < Google::Apis::Core::JsonRepresentation
796
+ collection :custom_region_metadata, as: 'customRegionMetadata', class: Google::Apis::MetastoreV1::CustomRegionMetadata, decorator: Google::Apis::MetastoreV1::CustomRegionMetadata::Representation
797
+
781
798
  property :multi_region_metadata, as: 'multiRegionMetadata', class: Google::Apis::MetastoreV1::MultiRegionMetadata, decorator: Google::Apis::MetastoreV1::MultiRegionMetadata::Representation
782
799
 
783
800
  collection :supported_hive_metastore_versions, as: 'supportedHiveMetastoreVersions', class: Google::Apis::MetastoreV1::HiveMetastoreVersion, decorator: Google::Apis::MetastoreV1::HiveMetastoreVersion::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-metastore_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.30.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-07-07 00:00:00.000000000 Z
11
+ date: 2024-12-08 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.28.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1/v0.30.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-metastore_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Dataproc Metastore API V1