google-apis-metastore_v1beta 0.42.0 → 0.44.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: c702b7035b48f6ed275e02b6fe942b38e85a03c0a5efaf809086d8d44d0c23e3
4
- data.tar.gz: beeaeee7e2870556fef8376f564854e7c7a4a266cdae92dff77b71c1ed59f800
3
+ metadata.gz: 44d153ee0f5176beca7e9c9cee819a58fb726fa66a9300a05cfc951cfd1be864
4
+ data.tar.gz: fc79bd7bc555801ab3e7670d3852a6bfaba0ca6d7325242385cbe01052b2e156
5
5
  SHA512:
6
- metadata.gz: 4d31de1e14c17724aee158e41b95ca219060df081cd5f98eecb0c88495911d9e05c0f01f55fb147f1f4ce3d0c78287b66068be77a21e34c15303ccf8df24f960
7
- data.tar.gz: 6a03fe2cc8b1e0b4cdedf177d620483d9a3292bee6d17bc306125053ec92eb3d489f61aa5aa515386c29af02947f385ac1c6c8eb721b416a5a79a52c739a499a
6
+ metadata.gz: 990a64dded044fad22ebee1d2f696ce308f12807b33f02acc837776167b308e0d5d0e9006d0da023cf1727c5d631e9ca28e3d632a42d6bb1a72178bb26d65783
7
+ data.tar.gz: 71e1465488038b3c34a4cb987f7a12e4c550313f33432dc7acf72faa4d032bfd38b46f5051fba74eae7fa458361454fd2aa6ea83350f581481c3febc02584ea4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-metastore_v1beta
2
2
 
3
+ ### v0.44.0 (2023-03-12)
4
+
5
+ * Regenerated from discovery document revision 20230305
6
+
7
+ ### v0.43.0 (2023-03-05)
8
+
9
+ * Regenerated from discovery document revision 20230228
10
+
3
11
  ### v0.42.0 (2023-02-15)
4
12
 
5
13
  * 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.44.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 = "20230305"
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
@@ -576,13 +576,7 @@ module Google
576
576
  end
577
577
 
578
578
  # Lists operations that match the specified filter in the request. If the server
579
- # doesn't support this method, it returns UNIMPLEMENTED.NOTE: the name binding
580
- # allows API services to override the binding to use different resource name
581
- # schemes, such as users/*/operations. To override the binding, API services can
582
- # add a binding such as "/v1/`name=users/*`/operations" to their service
583
- # configuration. For backwards compatibility, the default name includes the
584
- # operations collection id, however overriding users must ensure the name
585
- # binding is the parent resource, without the operations collection id.
579
+ # doesn't support this method, it returns UNIMPLEMENTED.
586
580
  # @param [String] name
587
581
  # The name of the operation's parent resource.
588
582
  # @param [String] filter
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.44.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-12 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.44.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: []