google-apis-gkehub_v1beta 0.50.0 → 0.52.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: cc209156ad2c0b1c3118b3fed901f6481a411691634a0b27a034d0c1d7ce74c6
|
4
|
+
data.tar.gz: 434bd8e0e6748092cf1f3c1d6aa0577715f3dff0138746b3991b22f01abf122f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ecd179f8fbf94634730ef0d08224b39ef4406d6f7ca9bacd96cc39dff7963413efd72a38283b43c2457fbad8b7f53dd58525bf154802b46ff6011ac193cd936
|
7
|
+
data.tar.gz: '05088f395097ebd8deaa139838de7786a1e993d9d7b94da3f901eaa8c80089331d4cf6cd13a5bf6ddb1fd97d61dde8b7c4fa78e8087dc8ba61837df5525062ad'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1beta
|
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
|
@@ -1692,6 +1692,11 @@ module Google
|
|
1692
1692
|
# @return [String]
|
1693
1693
|
attr_accessor :display_name
|
1694
1694
|
|
1695
|
+
# Optional. Labels for this Fleet.
|
1696
|
+
# Corresponds to the JSON property `labels`
|
1697
|
+
# @return [Hash<String,String>]
|
1698
|
+
attr_accessor :labels
|
1699
|
+
|
1695
1700
|
# Output only. The full, unique resource name of this fleet in the format of `
|
1696
1701
|
# projects/`project`/locations/`location`/fleets/`fleet``. Each Google Cloud
|
1697
1702
|
# project can have at most one fleet resource, named "default".
|
@@ -1725,6 +1730,7 @@ module Google
|
|
1725
1730
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1726
1731
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1727
1732
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1733
|
+
@labels = args[:labels] if args.key?(:labels)
|
1728
1734
|
@name = args[:name] if args.key?(:name)
|
1729
1735
|
@state = args[:state] if args.key?(:state)
|
1730
1736
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -1751,6 +1757,31 @@ module Google
|
|
1751
1757
|
end
|
1752
1758
|
end
|
1753
1759
|
|
1760
|
+
# All error details of the fleet observability feature.
|
1761
|
+
class FleetObservabilityFeatureError
|
1762
|
+
include Google::Apis::Core::Hashable
|
1763
|
+
|
1764
|
+
# The code of the error.
|
1765
|
+
# Corresponds to the JSON property `code`
|
1766
|
+
# @return [String]
|
1767
|
+
attr_accessor :code
|
1768
|
+
|
1769
|
+
# A human-readable description of the current status.
|
1770
|
+
# Corresponds to the JSON property `description`
|
1771
|
+
# @return [String]
|
1772
|
+
attr_accessor :description
|
1773
|
+
|
1774
|
+
def initialize(**args)
|
1775
|
+
update!(**args)
|
1776
|
+
end
|
1777
|
+
|
1778
|
+
# Update properties of this object
|
1779
|
+
def update!(**args)
|
1780
|
+
@code = args[:code] if args.key?(:code)
|
1781
|
+
@description = args[:description] if args.key?(:description)
|
1782
|
+
end
|
1783
|
+
end
|
1784
|
+
|
1754
1785
|
# **Fleet Observability**: The Hub-wide input for the FleetObservability feature.
|
1755
1786
|
class FleetObservabilityFeatureSpec
|
1756
1787
|
include Google::Apis::Core::Hashable
|
@@ -1774,12 +1805,94 @@ module Google
|
|
1774
1805
|
class FleetObservabilityFeatureState
|
1775
1806
|
include Google::Apis::Core::Hashable
|
1776
1807
|
|
1808
|
+
# Feature state for logging feature.
|
1809
|
+
# Corresponds to the JSON property `logging`
|
1810
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityLoggingState]
|
1811
|
+
attr_accessor :logging
|
1812
|
+
|
1813
|
+
# Feature state for monitoring feature.
|
1814
|
+
# Corresponds to the JSON property `monitoring`
|
1815
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityMonitoringState]
|
1816
|
+
attr_accessor :monitoring
|
1817
|
+
|
1818
|
+
def initialize(**args)
|
1819
|
+
update!(**args)
|
1820
|
+
end
|
1821
|
+
|
1822
|
+
# Update properties of this object
|
1823
|
+
def update!(**args)
|
1824
|
+
@logging = args[:logging] if args.key?(:logging)
|
1825
|
+
@monitoring = args[:monitoring] if args.key?(:monitoring)
|
1826
|
+
end
|
1827
|
+
end
|
1828
|
+
|
1829
|
+
# Base state for fleet observability feature.
|
1830
|
+
class FleetObservabilityFleetObservabilityBaseFeatureState
|
1831
|
+
include Google::Apis::Core::Hashable
|
1832
|
+
|
1833
|
+
# The high-level, machine-readable status of this Feature.
|
1834
|
+
# Corresponds to the JSON property `code`
|
1835
|
+
# @return [String]
|
1836
|
+
attr_accessor :code
|
1837
|
+
|
1838
|
+
# Errors after reconciling the monitoring and logging feature if the code is not
|
1839
|
+
# OK.
|
1840
|
+
# Corresponds to the JSON property `errors`
|
1841
|
+
# @return [Array<Google::Apis::GkehubV1beta::FleetObservabilityFeatureError>]
|
1842
|
+
attr_accessor :errors
|
1843
|
+
|
1844
|
+
def initialize(**args)
|
1845
|
+
update!(**args)
|
1846
|
+
end
|
1847
|
+
|
1848
|
+
# Update properties of this object
|
1849
|
+
def update!(**args)
|
1850
|
+
@code = args[:code] if args.key?(:code)
|
1851
|
+
@errors = args[:errors] if args.key?(:errors)
|
1852
|
+
end
|
1853
|
+
end
|
1854
|
+
|
1855
|
+
# Feature state for logging feature.
|
1856
|
+
class FleetObservabilityFleetObservabilityLoggingState
|
1857
|
+
include Google::Apis::Core::Hashable
|
1858
|
+
|
1859
|
+
# Base state for fleet observability feature.
|
1860
|
+
# Corresponds to the JSON property `defaultLog`
|
1861
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState]
|
1862
|
+
attr_accessor :default_log
|
1863
|
+
|
1864
|
+
# Base state for fleet observability feature.
|
1865
|
+
# Corresponds to the JSON property `scopeLog`
|
1866
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState]
|
1867
|
+
attr_accessor :scope_log
|
1868
|
+
|
1869
|
+
def initialize(**args)
|
1870
|
+
update!(**args)
|
1871
|
+
end
|
1872
|
+
|
1873
|
+
# Update properties of this object
|
1874
|
+
def update!(**args)
|
1875
|
+
@default_log = args[:default_log] if args.key?(:default_log)
|
1876
|
+
@scope_log = args[:scope_log] if args.key?(:scope_log)
|
1877
|
+
end
|
1878
|
+
end
|
1879
|
+
|
1880
|
+
# Feature state for monitoring feature.
|
1881
|
+
class FleetObservabilityFleetObservabilityMonitoringState
|
1882
|
+
include Google::Apis::Core::Hashable
|
1883
|
+
|
1884
|
+
# Base state for fleet observability feature.
|
1885
|
+
# Corresponds to the JSON property `state`
|
1886
|
+
# @return [Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState]
|
1887
|
+
attr_accessor :state
|
1888
|
+
|
1777
1889
|
def initialize(**args)
|
1778
1890
|
update!(**args)
|
1779
1891
|
end
|
1780
1892
|
|
1781
1893
|
# Update properties of this object
|
1782
1894
|
def update!(**args)
|
1895
|
+
@state = args[:state] if args.key?(:state)
|
1783
1896
|
end
|
1784
1897
|
end
|
1785
1898
|
|
@@ -1990,6 +2103,11 @@ module Google
|
|
1990
2103
|
# @return [String]
|
1991
2104
|
attr_accessor :tenant
|
1992
2105
|
|
2106
|
+
# Optional. Claim in the AzureAD ID Token that holds the user details.
|
2107
|
+
# Corresponds to the JSON property `userClaim`
|
2108
|
+
# @return [String]
|
2109
|
+
attr_accessor :user_claim
|
2110
|
+
|
1993
2111
|
def initialize(**args)
|
1994
2112
|
update!(**args)
|
1995
2113
|
end
|
@@ -2001,6 +2119,7 @@ module Google
|
|
2001
2119
|
@encrypted_client_secret = args[:encrypted_client_secret] if args.key?(:encrypted_client_secret)
|
2002
2120
|
@kubectl_redirect_uri = args[:kubectl_redirect_uri] if args.key?(:kubectl_redirect_uri)
|
2003
2121
|
@tenant = args[:tenant] if args.key?(:tenant)
|
2122
|
+
@user_claim = args[:user_claim] if args.key?(:user_claim)
|
2004
2123
|
end
|
2005
2124
|
end
|
2006
2125
|
|
@@ -2489,6 +2608,11 @@ module Google
|
|
2489
2608
|
attr_accessor :fleet
|
2490
2609
|
alias_method :fleet?, :fleet
|
2491
2610
|
|
2611
|
+
# Optional. Labels for this MembershipBinding.
|
2612
|
+
# Corresponds to the JSON property `labels`
|
2613
|
+
# @return [Hash<String,String>]
|
2614
|
+
attr_accessor :labels
|
2615
|
+
|
2492
2616
|
# The resource name for the membershipbinding itself `projects/`project`/
|
2493
2617
|
# locations/`location`/memberships/`membership`/bindings/`membershipbinding``
|
2494
2618
|
# Corresponds to the JSON property `name`
|
@@ -2526,6 +2650,7 @@ module Google
|
|
2526
2650
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2527
2651
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
2528
2652
|
@fleet = args[:fleet] if args.key?(:fleet)
|
2653
|
+
@labels = args[:labels] if args.key?(:labels)
|
2529
2654
|
@name = args[:name] if args.key?(:name)
|
2530
2655
|
@scope = args[:scope] if args.key?(:scope)
|
2531
2656
|
@state = args[:state] if args.key?(:state)
|
@@ -2778,6 +2903,11 @@ module Google
|
|
2778
2903
|
# @return [String]
|
2779
2904
|
attr_accessor :delete_time
|
2780
2905
|
|
2906
|
+
# Optional. Labels for this Namespace.
|
2907
|
+
# Corresponds to the JSON property `labels`
|
2908
|
+
# @return [Hash<String,String>]
|
2909
|
+
attr_accessor :labels
|
2910
|
+
|
2781
2911
|
# The resource name for the namespace `projects/`project`/locations/`location`/
|
2782
2912
|
# namespaces/`namespace``
|
2783
2913
|
# Corresponds to the JSON property `name`
|
@@ -2814,6 +2944,7 @@ module Google
|
|
2814
2944
|
def update!(**args)
|
2815
2945
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2816
2946
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
2947
|
+
@labels = args[:labels] if args.key?(:labels)
|
2817
2948
|
@name = args[:name] if args.key?(:name)
|
2818
2949
|
@scope = args[:scope] if args.key?(:scope)
|
2819
2950
|
@state = args[:state] if args.key?(:state)
|
@@ -3081,16 +3212,11 @@ module Google
|
|
3081
3212
|
class PolicyControllerBundleInstallSpec
|
3082
3213
|
include Google::Apis::Core::Hashable
|
3083
3214
|
|
3084
|
-
#
|
3215
|
+
# The set of namespaces to be exempted from the bundle.
|
3085
3216
|
# Corresponds to the JSON property `exemptedNamespaces`
|
3086
3217
|
# @return [Array<String>]
|
3087
3218
|
attr_accessor :exempted_namespaces
|
3088
3219
|
|
3089
|
-
# Management specifies how the bundle will be managed by the controller.
|
3090
|
-
# Corresponds to the JSON property `management`
|
3091
|
-
# @return [String]
|
3092
|
-
attr_accessor :management
|
3093
|
-
|
3094
3220
|
def initialize(**args)
|
3095
3221
|
update!(**args)
|
3096
3222
|
end
|
@@ -3098,7 +3224,6 @@ module Google
|
|
3098
3224
|
# Update properties of this object
|
3099
3225
|
def update!(**args)
|
3100
3226
|
@exempted_namespaces = args[:exempted_namespaces] if args.key?(:exempted_namespaces)
|
3101
|
-
@management = args[:management] if args.key?(:management)
|
3102
3227
|
end
|
3103
3228
|
end
|
3104
3229
|
|
@@ -3169,11 +3294,6 @@ module Google
|
|
3169
3294
|
attr_accessor :referential_rules_enabled
|
3170
3295
|
alias_method :referential_rules_enabled?, :referential_rules_enabled
|
3171
3296
|
|
3172
|
-
# The config specifying which default library templates to install.
|
3173
|
-
# Corresponds to the JSON property `templateLibraryConfig`
|
3174
|
-
# @return [Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig]
|
3175
|
-
attr_accessor :template_library_config
|
3176
|
-
|
3177
3297
|
def initialize(**args)
|
3178
3298
|
update!(**args)
|
3179
3299
|
end
|
@@ -3190,7 +3310,6 @@ module Google
|
|
3190
3310
|
@mutation_enabled = args[:mutation_enabled] if args.key?(:mutation_enabled)
|
3191
3311
|
@policy_content = args[:policy_content] if args.key?(:policy_content)
|
3192
3312
|
@referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
|
3193
|
-
@template_library_config = args[:template_library_config] if args.key?(:template_library_config)
|
3194
3313
|
end
|
3195
3314
|
end
|
3196
3315
|
|
@@ -3230,12 +3349,6 @@ module Google
|
|
3230
3349
|
# @return [Hash<String,Google::Apis::GkehubV1beta::PolicyControllerOnClusterState>]
|
3231
3350
|
attr_accessor :component_states
|
3232
3351
|
|
3233
|
-
# The state of the template library and any bundles included in the chosen
|
3234
|
-
# version of the manifest
|
3235
|
-
# Corresponds to the JSON property `contentStates`
|
3236
|
-
# @return [Hash<String,Google::Apis::GkehubV1beta::PolicyControllerOnClusterState>]
|
3237
|
-
attr_accessor :content_states
|
3238
|
-
|
3239
3352
|
# The state of the policy controller policy content
|
3240
3353
|
# Corresponds to the JSON property `policyContentState`
|
3241
3354
|
# @return [Google::Apis::GkehubV1beta::PolicyControllerPolicyContentState]
|
@@ -3254,7 +3367,6 @@ module Google
|
|
3254
3367
|
# Update properties of this object
|
3255
3368
|
def update!(**args)
|
3256
3369
|
@component_states = args[:component_states] if args.key?(:component_states)
|
3257
|
-
@content_states = args[:content_states] if args.key?(:content_states)
|
3258
3370
|
@policy_content_state = args[:policy_content_state] if args.key?(:policy_content_state)
|
3259
3371
|
@state = args[:state] if args.key?(:state)
|
3260
3372
|
end
|
@@ -3375,6 +3487,11 @@ module Google
|
|
3375
3487
|
# @return [Google::Apis::GkehubV1beta::PolicyControllerResourceRequirements]
|
3376
3488
|
attr_accessor :container_resources
|
3377
3489
|
|
3490
|
+
# Pod affinity configuration.
|
3491
|
+
# Corresponds to the JSON property `podAffinity`
|
3492
|
+
# @return [String]
|
3493
|
+
attr_accessor :pod_affinity
|
3494
|
+
|
3378
3495
|
# Pod anti-affinity enablement.
|
3379
3496
|
# Corresponds to the JSON property `podAntiAffinity`
|
3380
3497
|
# @return [Boolean]
|
@@ -3398,6 +3515,7 @@ module Google
|
|
3398
3515
|
# Update properties of this object
|
3399
3516
|
def update!(**args)
|
3400
3517
|
@container_resources = args[:container_resources] if args.key?(:container_resources)
|
3518
|
+
@pod_affinity = args[:pod_affinity] if args.key?(:pod_affinity)
|
3401
3519
|
@pod_anti_affinity = args[:pod_anti_affinity] if args.key?(:pod_anti_affinity)
|
3402
3520
|
@pod_tolerations = args[:pod_tolerations] if args.key?(:pod_tolerations)
|
3403
3521
|
@replica_count = args[:replica_count] if args.key?(:replica_count)
|
@@ -3458,12 +3576,6 @@ module Google
|
|
3458
3576
|
class PolicyControllerTemplateLibraryConfig
|
3459
3577
|
include Google::Apis::Core::Hashable
|
3460
3578
|
|
3461
|
-
# Whether the standard template library should be installed or not.
|
3462
|
-
# Corresponds to the JSON property `included`
|
3463
|
-
# @return [Boolean]
|
3464
|
-
attr_accessor :included
|
3465
|
-
alias_method :included?, :included
|
3466
|
-
|
3467
3579
|
# Configures the manner in which the template library is installed on the
|
3468
3580
|
# cluster.
|
3469
3581
|
# Corresponds to the JSON property `installation`
|
@@ -3476,7 +3588,6 @@ module Google
|
|
3476
3588
|
|
3477
3589
|
# Update properties of this object
|
3478
3590
|
def update!(**args)
|
3479
|
-
@included = args[:included] if args.key?(:included)
|
3480
3591
|
@installation = args[:installation] if args.key?(:installation)
|
3481
3592
|
end
|
3482
3593
|
end
|
@@ -3537,6 +3648,11 @@ module Google
|
|
3537
3648
|
# @return [String]
|
3538
3649
|
attr_accessor :group
|
3539
3650
|
|
3651
|
+
# Optional. Labels for this RBACRolebinding.
|
3652
|
+
# Corresponds to the JSON property `labels`
|
3653
|
+
# @return [Hash<String,String>]
|
3654
|
+
attr_accessor :labels
|
3655
|
+
|
3540
3656
|
# The resource name for the rbacrolebinding `projects/`project`/locations/`
|
3541
3657
|
# location`/namespaces/`namespace`/rbacrolebindings/`rbacrolebinding`` or `
|
3542
3658
|
# projects/`project`/locations/`location`/memberships/`membership`/
|
@@ -3583,6 +3699,7 @@ module Google
|
|
3583
3699
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3584
3700
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
3585
3701
|
@group = args[:group] if args.key?(:group)
|
3702
|
+
@labels = args[:labels] if args.key?(:labels)
|
3586
3703
|
@name = args[:name] if args.key?(:name)
|
3587
3704
|
@role = args[:role] if args.key?(:role)
|
3588
3705
|
@state = args[:state] if args.key?(:state)
|
@@ -3651,6 +3768,11 @@ module Google
|
|
3651
3768
|
# @return [String]
|
3652
3769
|
attr_accessor :delete_time
|
3653
3770
|
|
3771
|
+
# Optional. Labels for this Scope.
|
3772
|
+
# Corresponds to the JSON property `labels`
|
3773
|
+
# @return [Hash<String,String>]
|
3774
|
+
attr_accessor :labels
|
3775
|
+
|
3654
3776
|
# The resource name for the scope `projects/`project`/locations/`location`/
|
3655
3777
|
# scopes/`scope``
|
3656
3778
|
# Corresponds to the JSON property `name`
|
@@ -3683,6 +3805,7 @@ module Google
|
|
3683
3805
|
@all_memberships = args[:all_memberships] if args.key?(:all_memberships)
|
3684
3806
|
@create_time = args[:create_time] if args.key?(:create_time)
|
3685
3807
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
3808
|
+
@labels = args[:labels] if args.key?(:labels)
|
3686
3809
|
@name = args[:name] if args.key?(:name)
|
3687
3810
|
@state = args[:state] if args.key?(:state)
|
3688
3811
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module GkehubV1beta
|
18
18
|
# Version of the google-apis-gkehub_v1beta 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
|
@@ -298,6 +298,12 @@ module Google
|
|
298
298
|
include Google::Apis::Core::JsonObjectSupport
|
299
299
|
end
|
300
300
|
|
301
|
+
class FleetObservabilityFeatureError
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
301
307
|
class FleetObservabilityFeatureSpec
|
302
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
309
|
|
@@ -310,6 +316,24 @@ module Google
|
|
310
316
|
include Google::Apis::Core::JsonObjectSupport
|
311
317
|
end
|
312
318
|
|
319
|
+
class FleetObservabilityFleetObservabilityBaseFeatureState
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
323
|
+
end
|
324
|
+
|
325
|
+
class FleetObservabilityFleetObservabilityLoggingState
|
326
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
327
|
+
|
328
|
+
include Google::Apis::Core::JsonObjectSupport
|
329
|
+
end
|
330
|
+
|
331
|
+
class FleetObservabilityFleetObservabilityMonitoringState
|
332
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
include Google::Apis::Core::JsonObjectSupport
|
335
|
+
end
|
336
|
+
|
313
337
|
class FleetObservabilityLoggingConfig
|
314
338
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
315
339
|
|
@@ -1159,6 +1183,7 @@ module Google
|
|
1159
1183
|
property :create_time, as: 'createTime'
|
1160
1184
|
property :delete_time, as: 'deleteTime'
|
1161
1185
|
property :display_name, as: 'displayName'
|
1186
|
+
hash :labels, as: 'labels'
|
1162
1187
|
property :name, as: 'name'
|
1163
1188
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::FleetLifecycleState, decorator: Google::Apis::GkehubV1beta::FleetLifecycleState::Representation
|
1164
1189
|
|
@@ -1174,6 +1199,14 @@ module Google
|
|
1174
1199
|
end
|
1175
1200
|
end
|
1176
1201
|
|
1202
|
+
class FleetObservabilityFeatureError
|
1203
|
+
# @private
|
1204
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1205
|
+
property :code, as: 'code'
|
1206
|
+
property :description, as: 'description'
|
1207
|
+
end
|
1208
|
+
end
|
1209
|
+
|
1177
1210
|
class FleetObservabilityFeatureSpec
|
1178
1211
|
# @private
|
1179
1212
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1185,6 +1218,37 @@ module Google
|
|
1185
1218
|
class FleetObservabilityFeatureState
|
1186
1219
|
# @private
|
1187
1220
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1221
|
+
property :logging, as: 'logging', class: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityLoggingState, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityLoggingState::Representation
|
1222
|
+
|
1223
|
+
property :monitoring, as: 'monitoring', class: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityMonitoringState, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityMonitoringState::Representation
|
1224
|
+
|
1225
|
+
end
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
class FleetObservabilityFleetObservabilityBaseFeatureState
|
1229
|
+
# @private
|
1230
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1231
|
+
property :code, as: 'code'
|
1232
|
+
collection :errors, as: 'errors', class: Google::Apis::GkehubV1beta::FleetObservabilityFeatureError, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFeatureError::Representation
|
1233
|
+
|
1234
|
+
end
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class FleetObservabilityFleetObservabilityLoggingState
|
1238
|
+
# @private
|
1239
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1240
|
+
property :default_log, as: 'defaultLog', class: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState::Representation
|
1241
|
+
|
1242
|
+
property :scope_log, as: 'scopeLog', class: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState::Representation
|
1243
|
+
|
1244
|
+
end
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class FleetObservabilityFleetObservabilityMonitoringState
|
1248
|
+
# @private
|
1249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1250
|
+
property :state, as: 'state', class: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState, decorator: Google::Apis::GkehubV1beta::FleetObservabilityFleetObservabilityBaseFeatureState::Representation
|
1251
|
+
|
1188
1252
|
end
|
1189
1253
|
end
|
1190
1254
|
|
@@ -1255,6 +1319,7 @@ module Google
|
|
1255
1319
|
property :encrypted_client_secret, :base64 => true, as: 'encryptedClientSecret'
|
1256
1320
|
property :kubectl_redirect_uri, as: 'kubectlRedirectUri'
|
1257
1321
|
property :tenant, as: 'tenant'
|
1322
|
+
property :user_claim, as: 'userClaim'
|
1258
1323
|
end
|
1259
1324
|
end
|
1260
1325
|
|
@@ -1402,6 +1467,7 @@ module Google
|
|
1402
1467
|
property :create_time, as: 'createTime'
|
1403
1468
|
property :delete_time, as: 'deleteTime'
|
1404
1469
|
property :fleet, as: 'fleet'
|
1470
|
+
hash :labels, as: 'labels'
|
1405
1471
|
property :name, as: 'name'
|
1406
1472
|
property :scope, as: 'scope'
|
1407
1473
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::MembershipBindingLifecycleState, decorator: Google::Apis::GkehubV1beta::MembershipBindingLifecycleState::Representation
|
@@ -1491,6 +1557,7 @@ module Google
|
|
1491
1557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1492
1558
|
property :create_time, as: 'createTime'
|
1493
1559
|
property :delete_time, as: 'deleteTime'
|
1560
|
+
hash :labels, as: 'labels'
|
1494
1561
|
property :name, as: 'name'
|
1495
1562
|
property :scope, as: 'scope'
|
1496
1563
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::NamespaceLifecycleState, decorator: Google::Apis::GkehubV1beta::NamespaceLifecycleState::Representation
|
@@ -1555,7 +1622,6 @@ module Google
|
|
1555
1622
|
# @private
|
1556
1623
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1557
1624
|
collection :exempted_namespaces, as: 'exemptedNamespaces'
|
1558
|
-
property :management, as: 'management'
|
1559
1625
|
end
|
1560
1626
|
end
|
1561
1627
|
|
@@ -1575,8 +1641,6 @@ module Google
|
|
1575
1641
|
property :policy_content, as: 'policyContent', class: Google::Apis::GkehubV1beta::PolicyControllerPolicyContentSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerPolicyContentSpec::Representation
|
1576
1642
|
|
1577
1643
|
property :referential_rules_enabled, as: 'referentialRulesEnabled'
|
1578
|
-
property :template_library_config, as: 'templateLibraryConfig', class: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig, decorator: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig::Representation
|
1579
|
-
|
1580
1644
|
end
|
1581
1645
|
end
|
1582
1646
|
|
@@ -1594,8 +1658,6 @@ module Google
|
|
1594
1658
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1595
1659
|
hash :component_states, as: 'componentStates', class: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState::Representation
|
1596
1660
|
|
1597
|
-
hash :content_states, as: 'contentStates', class: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState::Representation
|
1598
|
-
|
1599
1661
|
property :policy_content_state, as: 'policyContentState', class: Google::Apis::GkehubV1beta::PolicyControllerPolicyContentState, decorator: Google::Apis::GkehubV1beta::PolicyControllerPolicyContentState::Representation
|
1600
1662
|
|
1601
1663
|
property :state, as: 'state'
|
@@ -1644,6 +1706,7 @@ module Google
|
|
1644
1706
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1645
1707
|
property :container_resources, as: 'containerResources', class: Google::Apis::GkehubV1beta::PolicyControllerResourceRequirements, decorator: Google::Apis::GkehubV1beta::PolicyControllerResourceRequirements::Representation
|
1646
1708
|
|
1709
|
+
property :pod_affinity, as: 'podAffinity'
|
1647
1710
|
property :pod_anti_affinity, as: 'podAntiAffinity'
|
1648
1711
|
collection :pod_tolerations, as: 'podTolerations', class: Google::Apis::GkehubV1beta::PolicyControllerToleration, decorator: Google::Apis::GkehubV1beta::PolicyControllerToleration::Representation
|
1649
1712
|
|
@@ -1672,7 +1735,6 @@ module Google
|
|
1672
1735
|
class PolicyControllerTemplateLibraryConfig
|
1673
1736
|
# @private
|
1674
1737
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1675
|
-
property :included, as: 'included'
|
1676
1738
|
property :installation, as: 'installation'
|
1677
1739
|
end
|
1678
1740
|
end
|
@@ -1693,6 +1755,7 @@ module Google
|
|
1693
1755
|
property :create_time, as: 'createTime'
|
1694
1756
|
property :delete_time, as: 'deleteTime'
|
1695
1757
|
property :group, as: 'group'
|
1758
|
+
hash :labels, as: 'labels'
|
1696
1759
|
property :name, as: 'name'
|
1697
1760
|
property :role, as: 'role', class: Google::Apis::GkehubV1beta::Role, decorator: Google::Apis::GkehubV1beta::Role::Representation
|
1698
1761
|
|
@@ -1724,6 +1787,7 @@ module Google
|
|
1724
1787
|
property :all_memberships, as: 'allMemberships'
|
1725
1788
|
property :create_time, as: 'createTime'
|
1726
1789
|
property :delete_time, as: 'deleteTime'
|
1790
|
+
hash :labels, as: 'labels'
|
1727
1791
|
property :name, as: 'name'
|
1728
1792
|
property :state, as: 'state', class: Google::Apis::GkehubV1beta::ScopeLifecycleState, decorator: Google::Apis::GkehubV1beta::ScopeLifecycleState::Representation
|
1729
1793
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-gkehub_v1beta
|
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_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1beta/v0.52.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|