google-apis-gkehub_v1beta 0.42.0 → 0.43.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: 277b4a2409963eb326206c0482c151b7db1ca14c464a6101123922357a4181e9
|
4
|
+
data.tar.gz: 57c5053be536eaad36002c04e75bcc6ddf4cb0d80724bf129cd4b4d2618784e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b53eedb71e282e1417d6e94c2efbe13ba072daf3ea60c0b267476302f0aad426020e39290cbffb6145c5f33923efc0a2237920d6b6bf0841f128150a15fa97d
|
7
|
+
data.tar.gz: a802d1c6ec24894acf97b16e74794c225b5200897f5e88e3f96a5ac19530effbd163f056cd95d59bbfbb4b1b16139e93ccd2ef3ea1d74b094aebc46c7fbdf2e8
|
data/CHANGELOG.md
CHANGED
@@ -2789,12 +2789,14 @@ module Google
|
|
2789
2789
|
class PolicyControllerBundleInstallSpec
|
2790
2790
|
include Google::Apis::Core::Hashable
|
2791
2791
|
|
2792
|
-
# the set of namespaces to be exempted from the bundle
|
2792
|
+
# the set of namespaces to be exempted from the bundle TODO (b/271878194):
|
2793
|
+
# Decrement this
|
2793
2794
|
# Corresponds to the JSON property `exemptedNamespaces`
|
2794
2795
|
# @return [Array<String>]
|
2795
2796
|
attr_accessor :exempted_namespaces
|
2796
2797
|
|
2797
|
-
# Management specifies how the bundle will be managed by the controller.
|
2798
|
+
# Management specifies how the bundle will be managed by the controller. TODO (b/
|
2799
|
+
# 271878194): Remove this
|
2798
2800
|
# Corresponds to the JSON property `management`
|
2799
2801
|
# @return [String]
|
2800
2802
|
attr_accessor :management
|
@@ -2939,11 +2941,16 @@ module Google
|
|
2939
2941
|
attr_accessor :component_states
|
2940
2942
|
|
2941
2943
|
# The state of the template library and any bundles included in the chosen
|
2942
|
-
# version of the manifest
|
2944
|
+
# version of the manifest TODO (b/271878194): Remove this
|
2943
2945
|
# Corresponds to the JSON property `contentStates`
|
2944
2946
|
# @return [Hash<String,Google::Apis::GkehubV1beta::PolicyControllerOnClusterState>]
|
2945
2947
|
attr_accessor :content_states
|
2946
2948
|
|
2949
|
+
# The state of the policy controller policy content
|
2950
|
+
# Corresponds to the JSON property `policyContentState`
|
2951
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerPolicyContentState]
|
2952
|
+
attr_accessor :policy_content_state
|
2953
|
+
|
2947
2954
|
# The overall Policy Controller lifecycle state observed by the Hub Feature
|
2948
2955
|
# controller.
|
2949
2956
|
# Corresponds to the JSON property `state`
|
@@ -2958,6 +2965,7 @@ module Google
|
|
2958
2965
|
def update!(**args)
|
2959
2966
|
@component_states = args[:component_states] if args.key?(:component_states)
|
2960
2967
|
@content_states = args[:content_states] if args.key?(:content_states)
|
2968
|
+
@policy_content_state = args[:policy_content_state] if args.key?(:policy_content_state)
|
2961
2969
|
@state = args[:state] if args.key?(:state)
|
2962
2970
|
end
|
2963
2971
|
end
|
@@ -3021,6 +3029,11 @@ module Google
|
|
3021
3029
|
# @return [Hash<String,Google::Apis::GkehubV1beta::PolicyControllerBundleInstallSpec>]
|
3022
3030
|
attr_accessor :bundles
|
3023
3031
|
|
3032
|
+
# The config specifying which default library templates to install.
|
3033
|
+
# Corresponds to the JSON property `templateLibrary`
|
3034
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig]
|
3035
|
+
attr_accessor :template_library
|
3036
|
+
|
3024
3037
|
def initialize(**args)
|
3025
3038
|
update!(**args)
|
3026
3039
|
end
|
@@ -3028,6 +3041,32 @@ module Google
|
|
3028
3041
|
# Update properties of this object
|
3029
3042
|
def update!(**args)
|
3030
3043
|
@bundles = args[:bundles] if args.key?(:bundles)
|
3044
|
+
@template_library = args[:template_library] if args.key?(:template_library)
|
3045
|
+
end
|
3046
|
+
end
|
3047
|
+
|
3048
|
+
# The state of the policy controller policy content
|
3049
|
+
class PolicyControllerPolicyContentState
|
3050
|
+
include Google::Apis::Core::Hashable
|
3051
|
+
|
3052
|
+
# The state of the any bundles included in the chosen version of the manifest
|
3053
|
+
# Corresponds to the JSON property `bundleStates`
|
3054
|
+
# @return [Hash<String,Google::Apis::GkehubV1beta::PolicyControllerOnClusterState>]
|
3055
|
+
attr_accessor :bundle_states
|
3056
|
+
|
3057
|
+
# OnClusterState represents the state of a sub-component of Policy Controller.
|
3058
|
+
# Corresponds to the JSON property `templateLibraryState`
|
3059
|
+
# @return [Google::Apis::GkehubV1beta::PolicyControllerOnClusterState]
|
3060
|
+
attr_accessor :template_library_state
|
3061
|
+
|
3062
|
+
def initialize(**args)
|
3063
|
+
update!(**args)
|
3064
|
+
end
|
3065
|
+
|
3066
|
+
# Update properties of this object
|
3067
|
+
def update!(**args)
|
3068
|
+
@bundle_states = args[:bundle_states] if args.key?(:bundle_states)
|
3069
|
+
@template_library_state = args[:template_library_state] if args.key?(:template_library_state)
|
3031
3070
|
end
|
3032
3071
|
end
|
3033
3072
|
|
@@ -3123,12 +3162,19 @@ module Google
|
|
3123
3162
|
class PolicyControllerTemplateLibraryConfig
|
3124
3163
|
include Google::Apis::Core::Hashable
|
3125
3164
|
|
3126
|
-
# Whether the standard template library should be installed or not.
|
3165
|
+
# Whether the standard template library should be installed or not. TODO (b/
|
3166
|
+
# 271878194): Remove this
|
3127
3167
|
# Corresponds to the JSON property `included`
|
3128
3168
|
# @return [Boolean]
|
3129
3169
|
attr_accessor :included
|
3130
3170
|
alias_method :included?, :included
|
3131
3171
|
|
3172
|
+
# Configures the manner in which the template library is installed on the
|
3173
|
+
# cluster. TODO (b/271878194): Decrement this
|
3174
|
+
# Corresponds to the JSON property `installation`
|
3175
|
+
# @return [String]
|
3176
|
+
attr_accessor :installation
|
3177
|
+
|
3132
3178
|
def initialize(**args)
|
3133
3179
|
update!(**args)
|
3134
3180
|
end
|
@@ -3136,6 +3182,7 @@ module Google
|
|
3136
3182
|
# Update properties of this object
|
3137
3183
|
def update!(**args)
|
3138
3184
|
@included = args[:included] if args.key?(:included)
|
3185
|
+
@installation = args[:installation] if args.key?(:installation)
|
3139
3186
|
end
|
3140
3187
|
end
|
3141
3188
|
|
@@ -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.43.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 = "20230316"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -508,6 +508,12 @@ module Google
|
|
508
508
|
include Google::Apis::Core::JsonObjectSupport
|
509
509
|
end
|
510
510
|
|
511
|
+
class PolicyControllerPolicyContentState
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
|
+
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
515
|
+
end
|
516
|
+
|
511
517
|
class PolicyControllerPolicyControllerDeploymentConfig
|
512
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
513
519
|
|
@@ -1448,6 +1454,8 @@ module Google
|
|
1448
1454
|
|
1449
1455
|
hash :content_states, as: 'contentStates', class: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState::Representation
|
1450
1456
|
|
1457
|
+
property :policy_content_state, as: 'policyContentState', class: Google::Apis::GkehubV1beta::PolicyControllerPolicyContentState, decorator: Google::Apis::GkehubV1beta::PolicyControllerPolicyContentState::Representation
|
1458
|
+
|
1451
1459
|
property :state, as: 'state'
|
1452
1460
|
end
|
1453
1461
|
end
|
@@ -1472,6 +1480,18 @@ module Google
|
|
1472
1480
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1473
1481
|
hash :bundles, as: 'bundles', class: Google::Apis::GkehubV1beta::PolicyControllerBundleInstallSpec, decorator: Google::Apis::GkehubV1beta::PolicyControllerBundleInstallSpec::Representation
|
1474
1482
|
|
1483
|
+
property :template_library, as: 'templateLibrary', class: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig, decorator: Google::Apis::GkehubV1beta::PolicyControllerTemplateLibraryConfig::Representation
|
1484
|
+
|
1485
|
+
end
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
class PolicyControllerPolicyContentState
|
1489
|
+
# @private
|
1490
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1491
|
+
hash :bundle_states, as: 'bundleStates', class: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState::Representation
|
1492
|
+
|
1493
|
+
property :template_library_state, as: 'templateLibraryState', class: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1beta::PolicyControllerOnClusterState::Representation
|
1494
|
+
|
1475
1495
|
end
|
1476
1496
|
end
|
1477
1497
|
|
@@ -1509,6 +1529,7 @@ module Google
|
|
1509
1529
|
# @private
|
1510
1530
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1511
1531
|
property :included, as: 'included'
|
1532
|
+
property :installation, as: 'installation'
|
1512
1533
|
end
|
1513
1534
|
end
|
1514
1535
|
|
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.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-03-
|
11
|
+
date: 2023-03-26 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.43.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: []
|