google-apis-gkehub_v1 0.38.0 → 0.40.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: 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
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-gkehub_v1
|
2
2
|
|
3
|
+
### v0.40.0 (2023-02-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230129
|
6
|
+
|
7
|
+
### v0.39.0 (2023-01-29)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230119
|
10
|
+
* Regenerated using generator version 0.11.1
|
11
|
+
|
3
12
|
### v0.38.0 (2022-12-11)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20221207
|
@@ -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
|
@@ -355,6 +355,20 @@ module Google
|
|
355
355
|
end
|
356
356
|
end
|
357
357
|
|
358
|
+
# CommonFleetDefaultMemberConfigSpec contains default configuration information
|
359
|
+
# for memberships of a fleet
|
360
|
+
class CommonFleetDefaultMemberConfigSpec
|
361
|
+
include Google::Apis::Core::Hashable
|
362
|
+
|
363
|
+
def initialize(**args)
|
364
|
+
update!(**args)
|
365
|
+
end
|
366
|
+
|
367
|
+
# Update properties of this object
|
368
|
+
def update!(**args)
|
369
|
+
end
|
370
|
+
end
|
371
|
+
|
358
372
|
# Configuration for Config Sync
|
359
373
|
class ConfigManagementConfigSync
|
360
374
|
include Google::Apis::Core::Hashable
|
@@ -1089,6 +1103,25 @@ module Google
|
|
1089
1103
|
end
|
1090
1104
|
end
|
1091
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
|
+
|
1092
1125
|
# PolicyControllerMonitoring specifies the backends Policy Controller should
|
1093
1126
|
# export metrics to. For example, to specify metrics should be exported to Cloud
|
1094
1127
|
# Monitoring and Prometheus, specify backends: ["cloudmonitoring", "prometheus"]
|
@@ -1120,6 +1153,11 @@ module Google
|
|
1120
1153
|
# @return [Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState]
|
1121
1154
|
attr_accessor :deployment_state
|
1122
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
|
+
|
1123
1161
|
# The build version of Gatekeeper Policy Controller is using.
|
1124
1162
|
# Corresponds to the JSON property `version`
|
1125
1163
|
# @return [Google::Apis::GkehubV1::ConfigManagementPolicyControllerVersion]
|
@@ -1132,6 +1170,7 @@ module Google
|
|
1132
1170
|
# Update properties of this object
|
1133
1171
|
def update!(**args)
|
1134
1172
|
@deployment_state = args[:deployment_state] if args.key?(:deployment_state)
|
1173
|
+
@migration = args[:migration] if args.key?(:migration)
|
1135
1174
|
@version = args[:version] if args.key?(:version)
|
1136
1175
|
end
|
1137
1176
|
end
|
@@ -1378,6 +1417,12 @@ module Google
|
|
1378
1417
|
# @return [String]
|
1379
1418
|
attr_accessor :delete_time
|
1380
1419
|
|
1420
|
+
# CommonFleetDefaultMemberConfigSpec contains default configuration information
|
1421
|
+
# for memberships of a fleet
|
1422
|
+
# Corresponds to the JSON property `fleetDefaultMemberConfig`
|
1423
|
+
# @return [Google::Apis::GkehubV1::CommonFleetDefaultMemberConfigSpec]
|
1424
|
+
attr_accessor :fleet_default_member_config
|
1425
|
+
|
1381
1426
|
# GCP labels for this Feature.
|
1382
1427
|
# Corresponds to the JSON property `labels`
|
1383
1428
|
# @return [Hash<String,String>]
|
@@ -1467,6 +1512,7 @@ module Google
|
|
1467
1512
|
def update!(**args)
|
1468
1513
|
@create_time = args[:create_time] if args.key?(:create_time)
|
1469
1514
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1515
|
+
@fleet_default_member_config = args[:fleet_default_member_config] if args.key?(:fleet_default_member_config)
|
1470
1516
|
@labels = args[:labels] if args.key?(:labels)
|
1471
1517
|
@membership_specs = args[:membership_specs] if args.key?(:membership_specs)
|
1472
1518
|
@membership_states = args[:membership_states] if args.key?(:membership_states)
|
@@ -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
|
-
GENERATOR_VERSION = "0.11.
|
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
|
@@ -82,6 +82,12 @@ module Google
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
83
83
|
end
|
84
84
|
|
85
|
+
class CommonFleetDefaultMemberConfigSpec
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
|
+
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
89
|
+
end
|
90
|
+
|
85
91
|
class ConfigManagementConfigSync
|
86
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
93
|
|
@@ -190,6 +196,12 @@ module Google
|
|
190
196
|
include Google::Apis::Core::JsonObjectSupport
|
191
197
|
end
|
192
198
|
|
199
|
+
class ConfigManagementPolicyControllerMigration
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
201
|
+
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
203
|
+
end
|
204
|
+
|
193
205
|
class ConfigManagementPolicyControllerMonitoring
|
194
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
195
207
|
|
@@ -620,6 +632,12 @@ module Google
|
|
620
632
|
end
|
621
633
|
end
|
622
634
|
|
635
|
+
class CommonFleetDefaultMemberConfigSpec
|
636
|
+
# @private
|
637
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
638
|
+
end
|
639
|
+
end
|
640
|
+
|
623
641
|
class ConfigManagementConfigSync
|
624
642
|
# @private
|
625
643
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -823,6 +841,13 @@ module Google
|
|
823
841
|
end
|
824
842
|
end
|
825
843
|
|
844
|
+
class ConfigManagementPolicyControllerMigration
|
845
|
+
# @private
|
846
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
847
|
+
property :stage, as: 'stage'
|
848
|
+
end
|
849
|
+
end
|
850
|
+
|
826
851
|
class ConfigManagementPolicyControllerMonitoring
|
827
852
|
# @private
|
828
853
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -835,6 +860,8 @@ module Google
|
|
835
860
|
class Representation < Google::Apis::Core::JsonRepresentation
|
836
861
|
property :deployment_state, as: 'deploymentState', class: Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState, decorator: Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState::Representation
|
837
862
|
|
863
|
+
property :migration, as: 'migration', class: Google::Apis::GkehubV1::ConfigManagementPolicyControllerMigration, decorator: Google::Apis::GkehubV1::ConfigManagementPolicyControllerMigration::Representation
|
864
|
+
|
838
865
|
property :version, as: 'version', class: Google::Apis::GkehubV1::ConfigManagementPolicyControllerVersion, decorator: Google::Apis::GkehubV1::ConfigManagementPolicyControllerVersion::Representation
|
839
866
|
|
840
867
|
end
|
@@ -908,6 +935,8 @@ module Google
|
|
908
935
|
class Representation < Google::Apis::Core::JsonRepresentation
|
909
936
|
property :create_time, as: 'createTime'
|
910
937
|
property :delete_time, as: 'deleteTime'
|
938
|
+
property :fleet_default_member_config, as: 'fleetDefaultMemberConfig', class: Google::Apis::GkehubV1::CommonFleetDefaultMemberConfigSpec, decorator: Google::Apis::GkehubV1::CommonFleetDefaultMemberConfigSpec::Representation
|
939
|
+
|
911
940
|
hash :labels, as: 'labels'
|
912
941
|
hash :membership_specs, as: 'membershipSpecs', class: Google::Apis::GkehubV1::MembershipFeatureSpec, decorator: Google::Apis::GkehubV1::MembershipFeatureSpec::Representation
|
913
942
|
|
@@ -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:
|
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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for GKE Hub API V1
|