google-apis-gkehub_v1 0.39.0 → 0.40.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: f056ac3a96a73de065c4e253146556d4acaa9319999f03f13ea0513bf737c165
|
4
|
+
data.tar.gz: 37eab6b45ac9db4f71faee963ebca1982220f3453cd8185d5ea92c83c548f400
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3271efbaff431e216e5e57283d76ea134e11ee5f7d72bda063b70f7d0c54a6aa7d148d9cc7e4ab008309cf8cffa692c702e8b12c0679e99e9d5ee2980a69029
|
7
|
+
data.tar.gz: 818697d5e51ea0a3c6dc56cc31d2a0a67bcc0d147be649ec41c4eb83f9bf48587e11f97c7be63af6fd7bc16dd892f5d3be73a534050b6568347da89091c94666
|
data/CHANGELOG.md
CHANGED
@@ -238,22 +238,22 @@ module Google
|
|
238
238
|
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
239
239
|
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
240
240
|
# email address that represents a Google group. For example, `admins@example.com`
|
241
|
-
# . * `
|
242
|
-
#
|
243
|
-
#
|
244
|
-
#
|
245
|
-
# the
|
246
|
-
#
|
247
|
-
#
|
241
|
+
# . * `domain:`domain``: The G Suite domain (primary) that represents all the
|
242
|
+
# users of that domain. For example, `google.com` or `example.com`. * `deleted:
|
243
|
+
# user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
244
|
+
# representing a user that has been recently deleted. For example, `alice@
|
245
|
+
# example.com?uid=123456789012345678901`. If the user is recovered, this value
|
246
|
+
# reverts to `user:`emailid`` and the recovered user retains the role in the
|
247
|
+
# binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
|
248
|
+
# (plus unique identifier) representing a service account that has been recently
|
249
|
+
# deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
248
250
|
# 123456789012345678901`. If the service account is undeleted, this value
|
249
251
|
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
250
252
|
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
251
253
|
# An email address (plus unique identifier) representing a Google group that has
|
252
254
|
# been recently deleted. For example, `admins@example.com?uid=
|
253
255
|
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
254
|
-
# group:`emailid`` and the recovered group retains the role in the binding.
|
255
|
-
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
256
|
-
# of that domain. For example, `google.com` or `example.com`.
|
256
|
+
# group:`emailid`` and the recovered group retains the role in the binding.
|
257
257
|
# Corresponds to the JSON property `members`
|
258
258
|
# @return [Array<String>]
|
259
259
|
attr_accessor :members
|
@@ -1103,6 +1103,25 @@ module Google
|
|
1103
1103
|
end
|
1104
1104
|
end
|
1105
1105
|
|
1106
|
+
# State for the migration of PolicyController from ACM -> PoCo Hub.
|
1107
|
+
class ConfigManagementPolicyControllerMigration
|
1108
|
+
include Google::Apis::Core::Hashable
|
1109
|
+
|
1110
|
+
# Stage of the migration.
|
1111
|
+
# Corresponds to the JSON property `stage`
|
1112
|
+
# @return [String]
|
1113
|
+
attr_accessor :stage
|
1114
|
+
|
1115
|
+
def initialize(**args)
|
1116
|
+
update!(**args)
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
# Update properties of this object
|
1120
|
+
def update!(**args)
|
1121
|
+
@stage = args[:stage] if args.key?(:stage)
|
1122
|
+
end
|
1123
|
+
end
|
1124
|
+
|
1106
1125
|
# PolicyControllerMonitoring specifies the backends Policy Controller should
|
1107
1126
|
# export metrics to. For example, to specify metrics should be exported to Cloud
|
1108
1127
|
# Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
|
@@ -1134,6 +1153,11 @@ module Google
|
|
1134
1153
|
# @return [Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState]
|
1135
1154
|
attr_accessor :deployment_state
|
1136
1155
|
|
1156
|
+
# State for the migration of PolicyController from ACM -> PoCo Hub.
|
1157
|
+
# Corresponds to the JSON property `migration`
|
1158
|
+
# @return [Google::Apis::GkehubV1::ConfigManagementPolicyControllerMigration]
|
1159
|
+
attr_accessor :migration
|
1160
|
+
|
1137
1161
|
# The build version of Gatekeeper Policy Controller is using.
|
1138
1162
|
# Corresponds to the JSON property `version`
|
1139
1163
|
# @return [Google::Apis::GkehubV1::ConfigManagementPolicyControllerVersion]
|
@@ -1146,6 +1170,7 @@ module Google
|
|
1146
1170
|
# Update properties of this object
|
1147
1171
|
def update!(**args)
|
1148
1172
|
@deployment_state = args[:deployment_state] if args.key?(:deployment_state)
|
1173
|
+
@migration = args[:migration] if args.key?(:migration)
|
1149
1174
|
@version = args[:version] if args.key?(:version)
|
1150
1175
|
end
|
1151
1176
|
end
|
@@ -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.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -196,6 +196,12 @@ module Google
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
197
197
|
end
|
198
198
|
|
199
|
+
class ConfigManagementPolicyControllerMigration
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
199
205
|
class ConfigManagementPolicyControllerMonitoring
|
200
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
207
|
|
@@ -835,6 +841,13 @@ module Google
|
|
835
841
|
end
|
836
842
|
end
|
837
843
|
|
844
|
+
class ConfigManagementPolicyControllerMigration
|
845
|
+
# @private
|
846
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
847
|
+
property :stage, as: 'stage'
|
848
|
+
end
|
849
|
+
end
|
850
|
+
|
838
851
|
class ConfigManagementPolicyControllerMonitoring
|
839
852
|
# @private
|
840
853
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -847,6 +860,8 @@ module Google
|
|
847
860
|
class Representation < Google::Apis::Core::JsonRepresentation
|
848
861
|
property :deployment_state, as: 'deploymentState', class: Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState, decorator: Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState::Representation
|
849
862
|
|
863
|
+
property :migration, as: 'migration', class: Google::Apis::GkehubV1::ConfigManagementPolicyControllerMigration, decorator: Google::Apis::GkehubV1::ConfigManagementPolicyControllerMigration::Representation
|
864
|
+
|
850
865
|
property :version, as: 'version', class: Google::Apis::GkehubV1::ConfigManagementPolicyControllerVersion, decorator: Google::Apis::GkehubV1::ConfigManagementPolicyControllerVersion::Representation
|
851
866
|
|
852
867
|
end
|
@@ -713,7 +713,8 @@ module Google
|
|
713
713
|
# Lists Memberships in a given project and location.
|
714
714
|
# @param [String] parent
|
715
715
|
# Required. The parent (project and location) where the Memberships will be
|
716
|
-
# listed. Specified in the format `projects/*/locations/*`.
|
716
|
+
# listed. Specified in the format `projects/*/locations/*`. `projects/*/
|
717
|
+
# locations/-` list memberships in all the regions.
|
717
718
|
# @param [String] filter
|
718
719
|
# Optional. Lists Memberships that match the filter expression, following the
|
719
720
|
# syntax outlined in https://google.aip.dev/160. Examples: - Name is `bar` in
|
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.40.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-02-05 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.40.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: []
|