google-apis-metastore_v1alpha 0.35.0 → 0.36.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: 599504ceaa8a0ffba66d4a69f91691dcdb5ed93c1ac603be50912c2469546bf9
|
4
|
+
data.tar.gz: 49156450fa8b3736df13a809e93cb2ecc056bedd8332ef014fe03cb15544785e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d247a7b0b2b1b4b0ba4e8f663664c2eb3cbcfe85743699fcb572f10c107093ed05b530767d89e33594551bb3bf7efddb085899e667a2053604ac3291925ac0de
|
7
|
+
data.tar.gz: 2a9653e902e7a0a33806f10e5094bd4ec27d20b3673b0adf7924c3418b31866d9951be5f8aee47ec1cc20cc20007a42700c747730af76ae8ade77a2f7377c9af
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-metastore_v1alpha
|
2
2
|
|
3
|
+
### v0.36.0 (2022-10-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20221012
|
6
|
+
* Regenerated using generator version 0.11.0
|
7
|
+
|
3
8
|
### v0.35.0 (2022-09-29)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220919
|
@@ -299,12 +299,12 @@ module Google
|
|
299
299
|
# @return [String]
|
300
300
|
attr_accessor :endpoint_uri
|
301
301
|
|
302
|
-
# The subnetwork of the customer project from which an IP address is
|
303
|
-
# and used as the Dataproc Metastore service's endpoint. It is
|
304
|
-
# hosts in the subnet and to all hosts in a subnet in the same
|
305
|
-
# network. There must be at least one IP address available in
|
306
|
-
# primary range. The subnet is specified in the following form:`
|
307
|
-
# project_number`/regions/`region_id`/subnetworks/`subnetwork_id`
|
302
|
+
# Immutable. The subnetwork of the customer project from which an IP address is
|
303
|
+
# reserved and used as the Dataproc Metastore service's endpoint. It is
|
304
|
+
# accessible to hosts in the subnet and to all hosts in a subnet in the same
|
305
|
+
# region and same network. There must be at least one IP address available in
|
306
|
+
# the subnet's primary range. The subnet is specified in the following form:`
|
307
|
+
# projects/`project_number`/regions/`region_id`/subnetworks/`subnetwork_id`
|
308
308
|
# Corresponds to the JSON property `subnetwork`
|
309
309
|
# @return [String]
|
310
310
|
attr_accessor :subnetwork
|
@@ -1656,6 +1656,11 @@ module Google
|
|
1656
1656
|
# @return [String]
|
1657
1657
|
attr_accessor :state_message
|
1658
1658
|
|
1659
|
+
# Telemetry Configuration for the Dataproc Metastore service.
|
1660
|
+
# Corresponds to the JSON property `telemetryConfig`
|
1661
|
+
# @return [Google::Apis::MetastoreV1alpha::TelemetryConfig]
|
1662
|
+
attr_accessor :telemetry_config
|
1663
|
+
|
1659
1664
|
# The tier of the service.
|
1660
1665
|
# Corresponds to the JSON property `tier`
|
1661
1666
|
# @return [String]
|
@@ -1694,6 +1699,7 @@ module Google
|
|
1694
1699
|
@release_channel = args[:release_channel] if args.key?(:release_channel)
|
1695
1700
|
@state = args[:state] if args.key?(:state)
|
1696
1701
|
@state_message = args[:state_message] if args.key?(:state_message)
|
1702
|
+
@telemetry_config = args[:telemetry_config] if args.key?(:telemetry_config)
|
1697
1703
|
@tier = args[:tier] if args.key?(:tier)
|
1698
1704
|
@uid = args[:uid] if args.key?(:uid)
|
1699
1705
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -1792,6 +1798,25 @@ module Google
|
|
1792
1798
|
end
|
1793
1799
|
end
|
1794
1800
|
|
1801
|
+
# Telemetry Configuration for the Dataproc Metastore service.
|
1802
|
+
class TelemetryConfig
|
1803
|
+
include Google::Apis::Core::Hashable
|
1804
|
+
|
1805
|
+
#
|
1806
|
+
# Corresponds to the JSON property `logFormat`
|
1807
|
+
# @return [String]
|
1808
|
+
attr_accessor :log_format
|
1809
|
+
|
1810
|
+
def initialize(**args)
|
1811
|
+
update!(**args)
|
1812
|
+
end
|
1813
|
+
|
1814
|
+
# Update properties of this object
|
1815
|
+
def update!(**args)
|
1816
|
+
@log_format = args[:log_format] if args.key?(:log_format)
|
1817
|
+
end
|
1818
|
+
end
|
1819
|
+
|
1795
1820
|
# Request message for TestIamPermissions method.
|
1796
1821
|
class TestIamPermissionsRequest
|
1797
1822
|
include Google::Apis::Core::Hashable
|
@@ -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.36.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221012"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -286,6 +286,12 @@ module Google
|
|
286
286
|
include Google::Apis::Core::JsonObjectSupport
|
287
287
|
end
|
288
288
|
|
289
|
+
class TelemetryConfig
|
290
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
|
+
|
292
|
+
include Google::Apis::Core::JsonObjectSupport
|
293
|
+
end
|
294
|
+
|
289
295
|
class TestIamPermissionsRequest
|
290
296
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
297
|
|
@@ -719,6 +725,8 @@ module Google
|
|
719
725
|
property :release_channel, as: 'releaseChannel'
|
720
726
|
property :state, as: 'state'
|
721
727
|
property :state_message, as: 'stateMessage'
|
728
|
+
property :telemetry_config, as: 'telemetryConfig', class: Google::Apis::MetastoreV1alpha::TelemetryConfig, decorator: Google::Apis::MetastoreV1alpha::TelemetryConfig::Representation
|
729
|
+
|
722
730
|
property :tier, as: 'tier'
|
723
731
|
property :uid, as: 'uid'
|
724
732
|
property :update_time, as: 'updateTime'
|
@@ -743,6 +751,13 @@ module Google
|
|
743
751
|
end
|
744
752
|
end
|
745
753
|
|
754
|
+
class TelemetryConfig
|
755
|
+
# @private
|
756
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
757
|
+
property :log_format, as: 'logFormat'
|
758
|
+
end
|
759
|
+
end
|
760
|
+
|
746
761
|
class TestIamPermissionsRequest
|
747
762
|
# @private
|
748
763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.36.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: 2022-10-
|
11
|
+
date: 2022-10-31 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.9.
|
19
|
+
version: 0.9.1
|
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.9.
|
29
|
+
version: 0.9.1
|
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_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.36.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: []
|