google-apis-metastore_v1alpha 0.41.0 → 0.42.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23fd75ab5d921ec97d06f7dfd3b435ca240e8c8f03dd2b87f2ae94fae33d6f69
|
4
|
+
data.tar.gz: 38be1cb9d017e3a4e1bfefe63b75c61639f8b5dc13fa7b126ceced6c5a7adb04
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ae43288bf0e1441a2edd51e717567586db21318bcca0da803c4656426a93713ec2cad9336596442f7eaa8d1c32d5b0dc2fb434890714d3933a7509b4e8d076d
|
7
|
+
data.tar.gz: e863b42ada33af820fbe22f526472a62c3ab63c07abc79e7c99bdcd51c7a08274bfe16da75c42471f421a5ceb3f8eb0bc925c3c204deaba883e6457c9ec757f6
|
data/CHANGELOG.md
CHANGED
@@ -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::MetastoreV1alpha::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 MetastoreV1alpha
|
18
18
|
# Version of the google-apis-metastore_v1alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.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 = "
|
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::MetastoreV1alpha::ScalingConfig, decorator: Google::Apis::MetastoreV1alpha::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::MetastoreV1alpha::TelemetryConfig, decorator: Google::Apis::MetastoreV1alpha::TelemetryConfig::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.
|
4
|
+
version: 0.42.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-
|
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_v1alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-metastore_v1alpha/v0.42.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: []
|