google-apis-metastore_v1beta 0.41.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d0e448892b0432f0b61b9b62e23f46f671ed1f145efef248faaa452cc158d9f8
|
4
|
+
data.tar.gz: 04c679f46ff8cf8623162079e56ec42a6d14529730adc14abd9e49a14d829676
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 660a5d29d7a2094f9fd4519a53495b06a5b76e966d036e69a1cdfc77c79e4e1e9d2c48eee19afa3a4a647f513d9bd1f853fc6cce6353d2d7cc0d0ee47f38713f
|
7
|
+
data.tar.gz: 7b5b3dcdd59cbf9357ca7aedba25e6841c6ae6ffb95ee43f4949512cc5270476b3a89d38ffac4342d094c2248350fc8da1232e9c09ca2e0b41c590ffaaed9939
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.42.0 (2023-02-15)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.12.0
|
10
|
+
|
3
11
|
### v0.41.0 (2023-02-05)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230131
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
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::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.
|
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-
|
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
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.11.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.
|
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: []
|