Skip to content

Commit 73f5045

Browse files
feat: Automated regeneration of metastore v1 client (googleapis#21996)
Auto-created at 2025-03-09 09:58:47 +0000 using the toys pull request generator.
1 parent fd61962 commit 73f5045

File tree

5 files changed

+22
-2
lines changed

5 files changed

+22
-2
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268013,6 +268013,8 @@
268013268013
"/metastore:v1/MultiRegionMetadata": multi_region_metadata
268014268014
"/metastore:v1/MultiRegionMetadata/constituentRegions": constituent_regions
268015268015
"/metastore:v1/MultiRegionMetadata/constituentRegions/constituent_region": constituent_region
268016+
"/metastore:v1/MultiRegionMetadata/continent": continent
268017+
"/metastore:v1/MultiRegionMetadata/witnessRegion": witness_region
268016268018
"/metastore:v1/NetworkConfig": network_config
268017268019
"/metastore:v1/NetworkConfig/consumers": consumers
268018268020
"/metastore:v1/NetworkConfig/consumers/consumer": consumer

generated/google-apis-metastore_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-metastore_v1
22

3+
### v0.32.0 (2025-03-09)
4+
5+
* Regenerated from discovery document revision 20250227
6+
37
### v0.31.0 (2025-02-26)
48

59
* Regenerated from discovery document revision 20250121

generated/google-apis-metastore_v1/lib/google/apis/metastore_v1/classes.rb

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1761,13 +1761,25 @@ class MultiRegionMetadata
17611761
# @return [Array<String>]
17621762
attr_accessor :constituent_regions
17631763

1764+
# The continent for this multi-region.
1765+
# Corresponds to the JSON property `continent`
1766+
# @return [String]
1767+
attr_accessor :continent
1768+
1769+
# The Spanner witness region for this multi-region.
1770+
# Corresponds to the JSON property `witnessRegion`
1771+
# @return [String]
1772+
attr_accessor :witness_region
1773+
17641774
def initialize(**args)
17651775
update!(**args)
17661776
end
17671777

17681778
# Update properties of this object
17691779
def update!(**args)
17701780
@constituent_regions = args[:constituent_regions] if args.key?(:constituent_regions)
1781+
@continent = args[:continent] if args.key?(:continent)
1782+
@witness_region = args[:witness_region] if args.key?(:witness_region)
17711783
end
17721784
end
17731785

generated/google-apis-metastore_v1/lib/google/apis/metastore_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module MetastoreV1
1818
# Version of the google-apis-metastore_v1 gem
19-
GEM_VERSION = "0.31.0"
19+
GEM_VERSION = "0.32.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250121"
25+
REVISION = "20250227"
2626
end
2727
end
2828
end

generated/google-apis-metastore_v1/lib/google/apis/metastore_v1/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,8 @@ class MultiRegionMetadata
886886
# @private
887887
class Representation < Google::Apis::Core::JsonRepresentation
888888
collection :constituent_regions, as: 'constituentRegions'
889+
property :continent, as: 'continent'
890+
property :witness_region, as: 'witnessRegion'
889891
end
890892
end
891893

0 commit comments

Comments
 (0)