google-apis-metastore_v1beta 0.42.0 → 0.43.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: c702b7035b48f6ed275e02b6fe942b38e85a03c0a5efaf809086d8d44d0c23e3
4
- data.tar.gz: beeaeee7e2870556fef8376f564854e7c7a4a266cdae92dff77b71c1ed59f800
3
+ metadata.gz: d0e448892b0432f0b61b9b62e23f46f671ed1f145efef248faaa452cc158d9f8
4
+ data.tar.gz: 04c679f46ff8cf8623162079e56ec42a6d14529730adc14abd9e49a14d829676
5
5
  SHA512:
6
- metadata.gz: 4d31de1e14c17724aee158e41b95ca219060df081cd5f98eecb0c88495911d9e05c0f01f55fb147f1f4ce3d0c78287b66068be77a21e34c15303ccf8df24f960
7
- data.tar.gz: 6a03fe2cc8b1e0b4cdedf177d620483d9a3292bee6d17bc306125053ec92eb3d489f61aa5aa515386c29af02947f385ac1c6c8eb721b416a5a79a52c739a499a
6
+ metadata.gz: 660a5d29d7a2094f9fd4519a53495b06a5b76e966d036e69a1cdfc77c79e4e1e9d2c48eee19afa3a4a647f513d9bd1f853fc6cce6353d2d7cc0d0ee47f38713f
7
+ data.tar.gz: 7b5b3dcdd59cbf9357ca7aedba25e6841c6ae6ffb95ee43f4949512cc5270476b3a89d38ffac4342d094c2248350fc8da1232e9c09ca2e0b41c590ffaaed9939
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.43.0 (2023-03-05)
4
+
5
+ * Regenerated from discovery document revision 20230228
6
+
3
7
  ### v0.42.0 (2023-02-15)
4
8
 
5
9
  * Regenerated using generator version 0.12.0
@@ -1683,6 +1683,33 @@ module Google
1683
1683
  end
1684
1684
  end
1685
1685
 
1686
+ # Represents the scaling configuration of a metastore service.
1687
+ class ScalingConfig
1688
+ include Google::Apis::Core::Hashable
1689
+
1690
+ # An enum of readable instance sizes, with each instance size mapping to a float
1691
+ # value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1))
1692
+ # Corresponds to the JSON property `instanceSize`
1693
+ # @return [String]
1694
+ attr_accessor :instance_size
1695
+
1696
+ # Scaling factor, increments of 0.1 for values less than 1.0, and increments of
1697
+ # 1.0 for values greater than 1.0.
1698
+ # Corresponds to the JSON property `scalingFactor`
1699
+ # @return [Float]
1700
+ attr_accessor :scaling_factor
1701
+
1702
+ def initialize(**args)
1703
+ update!(**args)
1704
+ end
1705
+
1706
+ # Update properties of this object
1707
+ def update!(**args)
1708
+ @instance_size = args[:instance_size] if args.key?(:instance_size)
1709
+ @scaling_factor = args[:scaling_factor] if args.key?(:scaling_factor)
1710
+ end
1711
+ end
1712
+
1686
1713
  # A securely stored value.
1687
1714
  class Secret
1688
1715
  include Google::Apis::Core::Hashable
@@ -1791,6 +1818,11 @@ module Google
1791
1818
  # @return [String]
1792
1819
  attr_accessor :release_channel
1793
1820
 
1821
+ # Represents the scaling configuration of a metastore service.
1822
+ # Corresponds to the JSON property `scalingConfig`
1823
+ # @return [Google::Apis::MetastoreV1beta::ScalingConfig]
1824
+ attr_accessor :scaling_config
1825
+
1794
1826
  # Output only. The current state of the metastore service.
1795
1827
  # Corresponds to the JSON property `state`
1796
1828
  # @return [String]
@@ -1843,6 +1875,7 @@ module Google
1843
1875
  @network_config = args[:network_config] if args.key?(:network_config)
1844
1876
  @port = args[:port] if args.key?(:port)
1845
1877
  @release_channel = args[:release_channel] if args.key?(:release_channel)
1878
+ @scaling_config = args[:scaling_config] if args.key?(:scaling_config)
1846
1879
  @state = args[:state] if args.key?(:state)
1847
1880
  @state_message = args[:state_message] if args.key?(:state_message)
1848
1881
  @telemetry_config = args[:telemetry_config] if args.key?(:telemetry_config)
@@ -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.42.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230131"
25
+ REVISION = "20230228"
26
26
  end
27
27
  end
28
28
  end
@@ -304,6 +304,12 @@ module Google
304
304
  include Google::Apis::Core::JsonObjectSupport
305
305
  end
306
306
 
307
+ class ScalingConfig
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
307
313
  class Secret
308
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
309
315
 
@@ -784,6 +790,14 @@ module Google
784
790
  end
785
791
  end
786
792
 
793
+ class ScalingConfig
794
+ # @private
795
+ class Representation < Google::Apis::Core::JsonRepresentation
796
+ property :instance_size, as: 'instanceSize'
797
+ property :scaling_factor, as: 'scalingFactor'
798
+ end
799
+ end
800
+
787
801
  class Secret
788
802
  # @private
789
803
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -815,6 +829,8 @@ module Google
815
829
 
816
830
  property :port, as: 'port'
817
831
  property :release_channel, as: 'releaseChannel'
832
+ property :scaling_config, as: 'scalingConfig', class: Google::Apis::MetastoreV1beta::ScalingConfig, decorator: Google::Apis::MetastoreV1beta::ScalingConfig::Representation
833
+
818
834
  property :state, as: 'state'
819
835
  property :state_message, as: 'stateMessage'
820
836
  property :telemetry_config, as: 'telemetryConfig', class: Google::Apis::MetastoreV1beta::TelemetryConfig, decorator: Google::Apis::MetastoreV1beta::TelemetryConfig::Representation
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.42.0
4
+ version: 0.43.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: 2023-02-19 00:00:00.000000000 Z
11
+ date: 2023-03-05 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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1beta/v0.43.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: []