google-apis-gkehub_v1 0.50.0 → 0.52.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/gkehub_v1/classes.rb +181 -0
- data/lib/google/apis/gkehub_v1/gem_version.rb +2 -2
- data/lib/google/apis/gkehub_v1/representations.rb +98 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fae71c42d7514f617912730a044986cde72c34c8c46a916c1fdb69bd9739ab31
|
4
|
+
data.tar.gz: b840a32be85dc633c045d952ebafc0424e26202070ebd6a35a75d8145c27bf93
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f4863639de82ce38a2f3e8a264571ef5083ce313e1a5cb3e15446909cd4bae000c615aae9bae5f5a723c23bae30f7199ad1934687da67f511e458b50119b819
|
7
|
+
data.tar.gz: 7972a8031bc3f4c5d5bfe3b7ae32d3761e01ad8b9349378cf4b4f302c83ab350c697c27c2506dd856431a2aea0143e11b4a48b20a342d2009b3a2f75e9f9768a
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1
|
2
2
|
|
3
|
+
### v0.52.0 (2023-07-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230707
|
6
|
+
|
7
|
+
### v0.51.0 (2023-07-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230627
|
10
|
+
|
3
11
|
### v0.50.0 (2023-06-25)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230620
|
@@ -1673,6 +1673,11 @@ module Google
|
|
1673
1673
|
# @return [String]
|
1674
1674
|
attr_accessor :display_name
|
1675
1675
|
|
1676
|
+
# Optional. Labels for this Fleet.
|
1677
|
+
# Corresponds to the JSON property `labels`
|
1678
|
+
# @return [Hash<String,String>]
|
1679
|
+
attr_accessor :labels
|
1680
|
+
|
1676
1681
|
# Output only. The full, unique resource name of this fleet in the format of `
|
1677
1682
|
# projects/`project`/locations/`location`/fleets/`fleet``. Each Google Cloud
|
1678
1683
|
# project can have at most one fleet resource, named "default".
|
@@ -1706,6 +1711,7 @@ module Google
|
|
1706
1711
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1707
1712
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1708
1713
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1714
|
+
@labels = args[:labels] if args.key?(:labels)
|
1709
1715
|
@name = args[:name] if args.key?(:name)
|
1710
1716
|
@state = args[:state] if args.key?(:state)
|
1711
1717
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -1732,16 +1738,47 @@ module Google
|
|
1732
1738
|
end
|
1733
1739
|
end
|
1734
1740
|
|
1741
|
+
# All error details of the fleet observability feature.
|
1742
|
+
class FleetObservabilityFeatureError
|
1743
|
+
include Google::Apis::Core::Hashable
|
1744
|
+
|
1745
|
+
# The code of the error.
|
1746
|
+
# Corresponds to the JSON property `code`
|
1747
|
+
# @return [String]
|
1748
|
+
attr_accessor :code
|
1749
|
+
|
1750
|
+
# A human-readable description of the current status.
|
1751
|
+
# Corresponds to the JSON property `description`
|
1752
|
+
# @return [String]
|
1753
|
+
attr_accessor :description
|
1754
|
+
|
1755
|
+
def initialize(**args)
|
1756
|
+
update!(**args)
|
1757
|
+
end
|
1758
|
+
|
1759
|
+
# Update properties of this object
|
1760
|
+
def update!(**args)
|
1761
|
+
@code = args[:code] if args.key?(:code)
|
1762
|
+
@description = args[:description] if args.key?(:description)
|
1763
|
+
end
|
1764
|
+
end
|
1765
|
+
|
1735
1766
|
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
1736
1767
|
class FleetObservabilityFeatureSpec
|
1737
1768
|
include Google::Apis::Core::Hashable
|
1738
1769
|
|
1770
|
+
# LoggingConfig defines the configuration for different types of logs.
|
1771
|
+
# Corresponds to the JSON property `loggingConfig`
|
1772
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityLoggingConfig]
|
1773
|
+
attr_accessor :logging_config
|
1774
|
+
|
1739
1775
|
def initialize(**args)
|
1740
1776
|
update!(**args)
|
1741
1777
|
end
|
1742
1778
|
|
1743
1779
|
# Update properties of this object
|
1744
1780
|
def update!(**args)
|
1781
|
+
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
1745
1782
|
end
|
1746
1783
|
end
|
1747
1784
|
|
@@ -1749,12 +1786,119 @@ module Google
|
|
1749
1786
|
class FleetObservabilityFeatureState
|
1750
1787
|
include Google::Apis::Core::Hashable
|
1751
1788
|
|
1789
|
+
# Feature state for logging feature.
|
1790
|
+
# Corresponds to the JSON property `logging`
|
1791
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityLoggingState]
|
1792
|
+
attr_accessor :logging
|
1793
|
+
|
1794
|
+
# Feature state for monitoring feature.
|
1795
|
+
# Corresponds to the JSON property `monitoring`
|
1796
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityMonitoringState]
|
1797
|
+
attr_accessor :monitoring
|
1798
|
+
|
1799
|
+
def initialize(**args)
|
1800
|
+
update!(**args)
|
1801
|
+
end
|
1802
|
+
|
1803
|
+
# Update properties of this object
|
1804
|
+
def update!(**args)
|
1805
|
+
@logging = args[:logging] if args.key?(:logging)
|
1806
|
+
@monitoring = args[:monitoring] if args.key?(:monitoring)
|
1807
|
+
end
|
1808
|
+
end
|
1809
|
+
|
1810
|
+
# Base state for fleet observability feature.
|
1811
|
+
class FleetObservabilityFleetObservabilityBaseFeatureState
|
1812
|
+
include Google::Apis::Core::Hashable
|
1813
|
+
|
1814
|
+
# The high-level, machine-readable status of this Feature.
|
1815
|
+
# Corresponds to the JSON property `code`
|
1816
|
+
# @return [String]
|
1817
|
+
attr_accessor :code
|
1818
|
+
|
1819
|
+
# Errors after reconciling the monitoring and logging feature if the code is not
|
1820
|
+
# OK.
|
1821
|
+
# Corresponds to the JSON property `errors`
|
1822
|
+
# @return [Array<Google::Apis::GkehubV1::FleetObservabilityFeatureError>]
|
1823
|
+
attr_accessor :errors
|
1824
|
+
|
1752
1825
|
def initialize(**args)
|
1753
1826
|
update!(**args)
|
1754
1827
|
end
|
1755
1828
|
|
1756
1829
|
# Update properties of this object
|
1757
1830
|
def update!(**args)
|
1831
|
+
@code = args[:code] if args.key?(:code)
|
1832
|
+
@errors = args[:errors] if args.key?(:errors)
|
1833
|
+
end
|
1834
|
+
end
|
1835
|
+
|
1836
|
+
# Feature state for logging feature.
|
1837
|
+
class FleetObservabilityFleetObservabilityLoggingState
|
1838
|
+
include Google::Apis::Core::Hashable
|
1839
|
+
|
1840
|
+
# Base state for fleet observability feature.
|
1841
|
+
# Corresponds to the JSON property `defaultLog`
|
1842
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState]
|
1843
|
+
attr_accessor :default_log
|
1844
|
+
|
1845
|
+
# Base state for fleet observability feature.
|
1846
|
+
# Corresponds to the JSON property `scopeLog`
|
1847
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState]
|
1848
|
+
attr_accessor :scope_log
|
1849
|
+
|
1850
|
+
def initialize(**args)
|
1851
|
+
update!(**args)
|
1852
|
+
end
|
1853
|
+
|
1854
|
+
# Update properties of this object
|
1855
|
+
def update!(**args)
|
1856
|
+
@default_log = args[:default_log] if args.key?(:default_log)
|
1857
|
+
@scope_log = args[:scope_log] if args.key?(:scope_log)
|
1858
|
+
end
|
1859
|
+
end
|
1860
|
+
|
1861
|
+
# Feature state for monitoring feature.
|
1862
|
+
class FleetObservabilityFleetObservabilityMonitoringState
|
1863
|
+
include Google::Apis::Core::Hashable
|
1864
|
+
|
1865
|
+
# Base state for fleet observability feature.
|
1866
|
+
# Corresponds to the JSON property `state`
|
1867
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState]
|
1868
|
+
attr_accessor :state
|
1869
|
+
|
1870
|
+
def initialize(**args)
|
1871
|
+
update!(**args)
|
1872
|
+
end
|
1873
|
+
|
1874
|
+
# Update properties of this object
|
1875
|
+
def update!(**args)
|
1876
|
+
@state = args[:state] if args.key?(:state)
|
1877
|
+
end
|
1878
|
+
end
|
1879
|
+
|
1880
|
+
# LoggingConfig defines the configuration for different types of logs.
|
1881
|
+
class FleetObservabilityLoggingConfig
|
1882
|
+
include Google::Apis::Core::Hashable
|
1883
|
+
|
1884
|
+
# RoutingConfig configures the behaviour of fleet logging feature.
|
1885
|
+
# Corresponds to the JSON property `defaultConfig`
|
1886
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityRoutingConfig]
|
1887
|
+
attr_accessor :default_config
|
1888
|
+
|
1889
|
+
# RoutingConfig configures the behaviour of fleet logging feature.
|
1890
|
+
# Corresponds to the JSON property `fleetScopeLogsConfig`
|
1891
|
+
# @return [Google::Apis::GkehubV1::FleetObservabilityRoutingConfig]
|
1892
|
+
attr_accessor :fleet_scope_logs_config
|
1893
|
+
|
1894
|
+
def initialize(**args)
|
1895
|
+
update!(**args)
|
1896
|
+
end
|
1897
|
+
|
1898
|
+
# Update properties of this object
|
1899
|
+
def update!(**args)
|
1900
|
+
@default_config = args[:default_config] if args.key?(:default_config)
|
1901
|
+
@fleet_scope_logs_config = args[:fleet_scope_logs_config] if args.key?(:fleet_scope_logs_config)
|
1758
1902
|
end
|
1759
1903
|
end
|
1760
1904
|
|
@@ -1786,6 +1930,25 @@ module Google
|
|
1786
1930
|
end
|
1787
1931
|
end
|
1788
1932
|
|
1933
|
+
# RoutingConfig configures the behaviour of fleet logging feature.
|
1934
|
+
class FleetObservabilityRoutingConfig
|
1935
|
+
include Google::Apis::Core::Hashable
|
1936
|
+
|
1937
|
+
# mode configures the logs routing mode.
|
1938
|
+
# Corresponds to the JSON property `mode`
|
1939
|
+
# @return [String]
|
1940
|
+
attr_accessor :mode
|
1941
|
+
|
1942
|
+
def initialize(**args)
|
1943
|
+
update!(**args)
|
1944
|
+
end
|
1945
|
+
|
1946
|
+
# Update properties of this object
|
1947
|
+
def update!(**args)
|
1948
|
+
@mode = args[:mode] if args.key?(:mode)
|
1949
|
+
end
|
1950
|
+
end
|
1951
|
+
|
1789
1952
|
# GenerateConnectManifestResponse contains manifest information for installing/
|
1790
1953
|
# upgrading a Connect agent.
|
1791
1954
|
class GenerateConnectManifestResponse
|
@@ -1952,6 +2115,11 @@ module Google
|
|
1952
2115
|
# @return [String]
|
1953
2116
|
attr_accessor :tenant
|
1954
2117
|
|
2118
|
+
# Optional. Claim in the AzureAD ID Token that holds the user details.
|
2119
|
+
# Corresponds to the JSON property `userClaim`
|
2120
|
+
# @return [String]
|
2121
|
+
attr_accessor :user_claim
|
2122
|
+
|
1955
2123
|
def initialize(**args)
|
1956
2124
|
update!(**args)
|
1957
2125
|
end
|
@@ -1963,6 +2131,7 @@ module Google
|
|
1963
2131
|
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
1964
2132
|
@kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
|
1965
2133
|
@tenant = args[:tenant] if args.key?(:tenant)
|
2134
|
+
@user_claim = args[:user_claim] if args.key?(:user_claim)
|
1966
2135
|
end
|
1967
2136
|
end
|
1968
2137
|
|
@@ -2625,6 +2794,11 @@ module Google
|
|
2625
2794
|
attr_accessor :fleet
|
2626
2795
|
alias_method :fleet?, :fleet
|
2627
2796
|
|
2797
|
+
# Optional. Labels for this MembershipBinding.
|
2798
|
+
# Corresponds to the JSON property `labels`
|
2799
|
+
# @return [Hash<String,String>]
|
2800
|
+
attr_accessor :labels
|
2801
|
+
|
2628
2802
|
# The resource name for the membershipbinding itself `projects/`project`/
|
2629
2803
|
# locations/`location`/memberships/`membership`/bindings/`membershipbinding``
|
2630
2804
|
# Corresponds to the JSON property `name`
|
@@ -2662,6 +2836,7 @@ module Google
|
|
2662
2836
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2663
2837
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
2664
2838
|
@fleet = args[:fleet] if args.key?(:fleet)
|
2839
|
+
@labels = args[:labels] if args.key?(:labels)
|
2665
2840
|
@name = args[:name] if args.key?(:name)
|
2666
2841
|
@scope = args[:scope] if args.key?(:scope)
|
2667
2842
|
@state = args[:state] if args.key?(:state)
|
@@ -3345,6 +3520,11 @@ module Google
|
|
3345
3520
|
# @return [String]
|
3346
3521
|
attr_accessor :delete_time
|
3347
3522
|
|
3523
|
+
# Optional. Labels for this Scope.
|
3524
|
+
# Corresponds to the JSON property `labels`
|
3525
|
+
# @return [Hash<String,String>]
|
3526
|
+
attr_accessor :labels
|
3527
|
+
|
3348
3528
|
# The resource name for the scope `projects/`project`/locations/`location`/
|
3349
3529
|
# scopes/`scope``
|
3350
3530
|
# Corresponds to the JSON property `name`
|
@@ -3377,6 +3557,7 @@ module Google
|
|
3377
3557
|
@all_memberships = args[:all_memberships] if args.key?(:all_memberships)
|
3378
3558
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3379
3559
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
3560
|
+
@labels = args[:labels] if args.key?(:labels)
|
3380
3561
|
@name = args[:name] if args.key?(:name)
|
3381
3562
|
@state = args[:state] if args.key?(:state)
|
3382
3563
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1
|
18
18
|
# Version of the google-apis-gkehub_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.52.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 = "20230707"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -292,6 +292,12 @@ module Google
|
|
292
292
|
include Google::Apis::Core::JsonObjectSupport
|
293
293
|
end
|
294
294
|
|
295
|
+
class FleetObservabilityFeatureError
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
295
301
|
class FleetObservabilityFeatureSpec
|
296
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
303
|
|
@@ -304,6 +310,30 @@ module Google
|
|
304
310
|
include Google::Apis::Core::JsonObjectSupport
|
305
311
|
end
|
306
312
|
|
313
|
+
class FleetObservabilityFleetObservabilityBaseFeatureState
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
|
+
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
317
|
+
end
|
318
|
+
|
319
|
+
class FleetObservabilityFleetObservabilityLoggingState
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
325
|
+
class FleetObservabilityFleetObservabilityMonitoringState
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class FleetObservabilityLoggingConfig
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
307
337
|
class FleetObservabilityMembershipSpec
|
308
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
309
339
|
|
@@ -316,6 +346,12 @@ module Google
|
|
316
346
|
include Google::Apis::Core::JsonObjectSupport
|
317
347
|
end
|
318
348
|
|
349
|
+
class FleetObservabilityRoutingConfig
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
351
|
+
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
353
|
+
end
|
354
|
+
|
319
355
|
class GenerateConnectManifestResponse
|
320
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
357
|
|
@@ -1066,6 +1102,7 @@ module Google
|
|
1066
1102
|
property :create_time, as: 'createTime'
|
1067
1103
|
property :delete_time, as: 'deleteTime'
|
1068
1104
|
property :display_name, as: 'displayName'
|
1105
|
+
hash :labels, as: 'labels'
|
1069
1106
|
property :name, as: 'name'
|
1070
1107
|
property :state, as: 'state', class: Google::Apis::GkehubV1::FleetLifecycleState, decorator: Google::Apis::GkehubV1::FleetLifecycleState::Representation
|
1071
1108
|
|
@@ -1081,15 +1118,66 @@ module Google
|
|
1081
1118
|
end
|
1082
1119
|
end
|
1083
1120
|
|
1121
|
+
class FleetObservabilityFeatureError
|
1122
|
+
# @private
|
1123
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1124
|
+
property :code, as: 'code'
|
1125
|
+
property :description, as: 'description'
|
1126
|
+
end
|
1127
|
+
end
|
1128
|
+
|
1084
1129
|
class FleetObservabilityFeatureSpec
|
1085
1130
|
# @private
|
1086
1131
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1132
|
+
property :logging_config, as: 'loggingConfig', class: Google::Apis::GkehubV1::FleetObservabilityLoggingConfig, decorator: Google::Apis::GkehubV1::FleetObservabilityLoggingConfig::Representation
|
1133
|
+
|
1087
1134
|
end
|
1088
1135
|
end
|
1089
1136
|
|
1090
1137
|
class FleetObservabilityFeatureState
|
1091
1138
|
# @private
|
1092
1139
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1140
|
+
property :logging, as: 'logging', class: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityLoggingState, decorator: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityLoggingState::Representation
|
1141
|
+
|
1142
|
+
property :monitoring, as: 'monitoring', class: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityMonitoringState, decorator: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityMonitoringState::Representation
|
1143
|
+
|
1144
|
+
end
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class FleetObservabilityFleetObservabilityBaseFeatureState
|
1148
|
+
# @private
|
1149
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1150
|
+
property :code, as: 'code'
|
1151
|
+
collection :errors, as: 'errors', class: Google::Apis::GkehubV1::FleetObservabilityFeatureError, decorator: Google::Apis::GkehubV1::FleetObservabilityFeatureError::Representation
|
1152
|
+
|
1153
|
+
end
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
class FleetObservabilityFleetObservabilityLoggingState
|
1157
|
+
# @private
|
1158
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1159
|
+
property :default_log, as: 'defaultLog', class: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState, decorator: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState::Representation
|
1160
|
+
|
1161
|
+
property :scope_log, as: 'scopeLog', class: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState, decorator: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState::Representation
|
1162
|
+
|
1163
|
+
end
|
1164
|
+
end
|
1165
|
+
|
1166
|
+
class FleetObservabilityFleetObservabilityMonitoringState
|
1167
|
+
# @private
|
1168
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1169
|
+
property :state, as: 'state', class: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState, decorator: Google::Apis::GkehubV1::FleetObservabilityFleetObservabilityBaseFeatureState::Representation
|
1170
|
+
|
1171
|
+
end
|
1172
|
+
end
|
1173
|
+
|
1174
|
+
class FleetObservabilityLoggingConfig
|
1175
|
+
# @private
|
1176
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1177
|
+
property :default_config, as: 'defaultConfig', class: Google::Apis::GkehubV1::FleetObservabilityRoutingConfig, decorator: Google::Apis::GkehubV1::FleetObservabilityRoutingConfig::Representation
|
1178
|
+
|
1179
|
+
property :fleet_scope_logs_config, as: 'fleetScopeLogsConfig', class: Google::Apis::GkehubV1::FleetObservabilityRoutingConfig, decorator: Google::Apis::GkehubV1::FleetObservabilityRoutingConfig::Representation
|
1180
|
+
|
1093
1181
|
end
|
1094
1182
|
end
|
1095
1183
|
|
@@ -1105,6 +1193,13 @@ module Google
|
|
1105
1193
|
end
|
1106
1194
|
end
|
1107
1195
|
|
1196
|
+
class FleetObservabilityRoutingConfig
|
1197
|
+
# @private
|
1198
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1199
|
+
property :mode, as: 'mode'
|
1200
|
+
end
|
1201
|
+
end
|
1202
|
+
|
1108
1203
|
class GenerateConnectManifestResponse
|
1109
1204
|
# @private
|
1110
1205
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1152,6 +1247,7 @@ module Google
|
|
1152
1247
|
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1153
1248
|
property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
|
1154
1249
|
property :tenant, as: 'tenant'
|
1250
|
+
property :user_claim, as: 'userClaim'
|
1155
1251
|
end
|
1156
1252
|
end
|
1157
1253
|
|
@@ -1330,6 +1426,7 @@ module Google
|
|
1330
1426
|
property :create_time, as: 'createTime'
|
1331
1427
|
property :delete_time, as: 'deleteTime'
|
1332
1428
|
property :fleet, as: 'fleet'
|
1429
|
+
hash :labels, as: 'labels'
|
1333
1430
|
property :name, as: 'name'
|
1334
1431
|
property :scope, as: 'scope'
|
1335
1432
|
property :state, as: 'state', class: Google::Apis::GkehubV1::MembershipBindingLifecycleState, decorator: Google::Apis::GkehubV1::MembershipBindingLifecycleState::Representation
|
@@ -1511,6 +1608,7 @@ module Google
|
|
1511
1608
|
property :all_memberships, as: 'allMemberships'
|
1512
1609
|
property :create_time, as: 'createTime'
|
1513
1610
|
property :delete_time, as: 'deleteTime'
|
1611
|
+
hash :labels, as: 'labels'
|
1514
1612
|
property :name, as: 'name'
|
1515
1613
|
property :state, as: 'state', class: Google::Apis::GkehubV1::ScopeLifecycleState, decorator: Google::Apis::GkehubV1::ScopeLifecycleState::Representation
|
1516
1614
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.52.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-07-16 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-gkehub_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.52.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|