google-apis-gkehub_v1 0.94.0 → 0.95.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: a153ba2a8bf7a41920e27e02fbddcef4181bbfd2f04ee9f4b037a64f91ec9343
|
|
4
|
+
data.tar.gz: 3ff1639308e625467306abcdfe9403441797efecd8cdbc682db0eded5a6e5af0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ae6245628bbc77b902091cc7bb063ba613f37085e34eb7d5ea76097649671074aa6591fe77bcb8b026c12508991d46f8aa6de64408c87431e151510296be1856
|
|
7
|
+
data.tar.gz: ed53bc266289c2688780ace8d0a6785c6b4a2ef417fa56377df6f1d2dacce715657f6585859cd376d149689963cb5632a1573ba1d1f486d72fc6bf14edae0d1c
|
data/CHANGELOG.md
CHANGED
|
@@ -741,6 +741,11 @@ module Google
|
|
|
741
741
|
# @return [Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec]
|
|
742
742
|
attr_accessor :rbacrolebindingactuation
|
|
743
743
|
|
|
744
|
+
# **WorkloadIdentity**: Global feature specification.
|
|
745
|
+
# Corresponds to the JSON property `workloadidentity`
|
|
746
|
+
# @return [Google::Apis::GkehubV1::WorkloadIdentityFeatureSpec]
|
|
747
|
+
attr_accessor :workloadidentity
|
|
748
|
+
|
|
744
749
|
def initialize(**args)
|
|
745
750
|
update!(**args)
|
|
746
751
|
end
|
|
@@ -753,6 +758,7 @@ module Google
|
|
|
753
758
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
|
754
759
|
@multiclusteringress = args[:multiclusteringress] if args.key?(:multiclusteringress)
|
|
755
760
|
@rbacrolebindingactuation = args[:rbacrolebindingactuation] if args.key?(:rbacrolebindingactuation)
|
|
761
|
+
@workloadidentity = args[:workloadidentity] if args.key?(:workloadidentity)
|
|
756
762
|
end
|
|
757
763
|
end
|
|
758
764
|
|
|
@@ -788,6 +794,11 @@ module Google
|
|
|
788
794
|
# @return [Google::Apis::GkehubV1::FeatureState]
|
|
789
795
|
attr_accessor :state
|
|
790
796
|
|
|
797
|
+
# **WorkloadIdentity**: Global feature state.
|
|
798
|
+
# Corresponds to the JSON property `workloadidentity`
|
|
799
|
+
# @return [Google::Apis::GkehubV1::WorkloadIdentityFeatureState]
|
|
800
|
+
attr_accessor :workloadidentity
|
|
801
|
+
|
|
791
802
|
def initialize(**args)
|
|
792
803
|
update!(**args)
|
|
793
804
|
end
|
|
@@ -799,6 +810,7 @@ module Google
|
|
|
799
810
|
@fleetobservability = args[:fleetobservability] if args.key?(:fleetobservability)
|
|
800
811
|
@rbacrolebindingactuation = args[:rbacrolebindingactuation] if args.key?(:rbacrolebindingactuation)
|
|
801
812
|
@state = args[:state] if args.key?(:state)
|
|
813
|
+
@workloadidentity = args[:workloadidentity] if args.key?(:workloadidentity)
|
|
802
814
|
end
|
|
803
815
|
end
|
|
804
816
|
|
|
@@ -891,16 +903,21 @@ module Google
|
|
|
891
903
|
class ConfigManagementConfigSync
|
|
892
904
|
include Google::Apis::Core::Hashable
|
|
893
905
|
|
|
894
|
-
# Optional. Configuration for deployment overrides.
|
|
906
|
+
# Optional. Configuration for deployment overrides. Applies only to Config Sync
|
|
907
|
+
# deployments with containers that are not a root or namespace reconciler: `
|
|
908
|
+
# reconciler-manager`, `otel-collector`, `resource-group-controller-manager`, `
|
|
909
|
+
# admission-webhook`. To override a root or namespace reconciler, use the
|
|
910
|
+
# rootsync or reposync fields at https://docs.cloud.google.com/kubernetes-engine/
|
|
911
|
+
# config-sync/docs/reference/rootsync-reposync-fields#override-resources instead.
|
|
895
912
|
# Corresponds to the JSON property `deploymentOverrides`
|
|
896
913
|
# @return [Array<Google::Apis::GkehubV1::ConfigManagementDeploymentOverride>]
|
|
897
914
|
attr_accessor :deployment_overrides
|
|
898
915
|
|
|
899
|
-
# Optional. Enables the installation of
|
|
900
|
-
#
|
|
901
|
-
# exist. If set to false,
|
|
902
|
-
#
|
|
903
|
-
#
|
|
916
|
+
# Optional. Enables the installation of Config Sync. If set to true, the Feature
|
|
917
|
+
# will manage Config Sync resources, and apply the other ConfigSync fields if
|
|
918
|
+
# they exist. If set to false, the Feature will ignore all other ConfigSync
|
|
919
|
+
# fields and delete the Config Sync resources. If omitted, ConfigSync is
|
|
920
|
+
# considered enabled if the git or oci field is present.
|
|
904
921
|
# Corresponds to the JSON property `enabled`
|
|
905
922
|
# @return [Boolean]
|
|
906
923
|
attr_accessor :enabled
|
|
@@ -930,15 +947,18 @@ module Google
|
|
|
930
947
|
attr_accessor :oci
|
|
931
948
|
|
|
932
949
|
# Optional. Set to true to enable the Config Sync admission webhook to prevent
|
|
933
|
-
# drifts. If set to
|
|
934
|
-
# not prevent drifts.
|
|
950
|
+
# drifts. If set to false, disables the Config Sync admission webhook and does
|
|
951
|
+
# not prevent drifts. Defaults to false. See https://docs.cloud.google.com/
|
|
952
|
+
# kubernetes-engine/config-sync/docs/how-to/prevent-config-drift for details.
|
|
935
953
|
# Corresponds to the JSON property `preventDrift`
|
|
936
954
|
# @return [Boolean]
|
|
937
955
|
attr_accessor :prevent_drift
|
|
938
956
|
alias_method :prevent_drift?, :prevent_drift
|
|
939
957
|
|
|
940
|
-
# Optional. Specifies whether the Config Sync
|
|
941
|
-
# unstructured
|
|
958
|
+
# Optional. Specifies whether the Config Sync repo is in `hierarchical` or `
|
|
959
|
+
# unstructured` mode. Defaults to `hierarchical`. See https://docs.cloud.google.
|
|
960
|
+
# com/kubernetes-engine/config-sync/docs/concepts/configs#organize-configs for
|
|
961
|
+
# an explanation.
|
|
942
962
|
# Corresponds to the JSON property `sourceFormat`
|
|
943
963
|
# @return [String]
|
|
944
964
|
attr_accessor :source_format
|
|
@@ -1198,22 +1218,30 @@ module Google
|
|
|
1198
1218
|
# @return [String]
|
|
1199
1219
|
attr_accessor :container_name
|
|
1200
1220
|
|
|
1201
|
-
# Optional. The cpu limit of the container.
|
|
1221
|
+
# Optional. The cpu limit of the container. Use the following CPU resource units:
|
|
1222
|
+
# https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/
|
|
1223
|
+
# #meaning-of-cpu.
|
|
1202
1224
|
# Corresponds to the JSON property `cpuLimit`
|
|
1203
1225
|
# @return [String]
|
|
1204
1226
|
attr_accessor :cpu_limit
|
|
1205
1227
|
|
|
1206
|
-
# Optional. The cpu request of the container.
|
|
1228
|
+
# Optional. The cpu request of the container. Use the following CPU resource
|
|
1229
|
+
# units: https://kubernetes.io/docs/concepts/configuration/manage-resources-
|
|
1230
|
+
# containers/#meaning-of-cpu.
|
|
1207
1231
|
# Corresponds to the JSON property `cpuRequest`
|
|
1208
1232
|
# @return [String]
|
|
1209
1233
|
attr_accessor :cpu_request
|
|
1210
1234
|
|
|
1211
|
-
# Optional. The memory limit of the container.
|
|
1235
|
+
# Optional. The memory limit of the container. Use the following memory resource
|
|
1236
|
+
# units: https://kubernetes.io/docs/concepts/configuration/manage-resources-
|
|
1237
|
+
# containers/#meaning-of-memory.
|
|
1212
1238
|
# Corresponds to the JSON property `memoryLimit`
|
|
1213
1239
|
# @return [String]
|
|
1214
1240
|
attr_accessor :memory_limit
|
|
1215
1241
|
|
|
1216
|
-
# Optional. The memory request of the container.
|
|
1242
|
+
# Optional. The memory request of the container. Use the following memory
|
|
1243
|
+
# resource units: https://kubernetes.io/docs/concepts/configuration/manage-
|
|
1244
|
+
# resources-containers/#meaning-of-memory.
|
|
1217
1245
|
# Corresponds to the JSON property `memoryRequest`
|
|
1218
1246
|
# @return [String]
|
|
1219
1247
|
attr_accessor :memory_request
|
|
@@ -1336,13 +1364,13 @@ module Google
|
|
|
1336
1364
|
include Google::Apis::Core::Hashable
|
|
1337
1365
|
|
|
1338
1366
|
# Optional. The Google Cloud Service Account Email used for auth when
|
|
1339
|
-
# secret_type is
|
|
1367
|
+
# secret_type is `gcpserviceaccount`.
|
|
1340
1368
|
# Corresponds to the JSON property `gcpServiceAccountEmail`
|
|
1341
1369
|
# @return [String]
|
|
1342
1370
|
attr_accessor :gcp_service_account_email
|
|
1343
1371
|
|
|
1344
1372
|
# Optional. URL for the HTTPS proxy to be used when communicating with the Git
|
|
1345
|
-
# repo.
|
|
1373
|
+
# repo. Only specify when secret_type is `cookiefile`, `token`, or `none`.
|
|
1346
1374
|
# Corresponds to the JSON property `httpsProxy`
|
|
1347
1375
|
# @return [String]
|
|
1348
1376
|
attr_accessor :https_proxy
|
|
@@ -1354,8 +1382,8 @@ module Google
|
|
|
1354
1382
|
attr_accessor :policy_dir
|
|
1355
1383
|
|
|
1356
1384
|
# Required. Type of secret configured for access to the Git repo. Must be one of
|
|
1357
|
-
# ssh
|
|
1358
|
-
# validation of this is case-sensitive.
|
|
1385
|
+
# `ssh`, `cookiefile`, `gcenode`, `token`, `gcpserviceaccount`, `githubapp` or `
|
|
1386
|
+
# none`. The validation of this is case-sensitive.
|
|
1359
1387
|
# Corresponds to the JSON property `secretType`
|
|
1360
1388
|
# @return [String]
|
|
1361
1389
|
attr_accessor :secret_type
|
|
@@ -1561,12 +1589,13 @@ module Google
|
|
|
1561
1589
|
class ConfigManagementMembershipSpec
|
|
1562
1590
|
include Google::Apis::Core::Hashable
|
|
1563
1591
|
|
|
1564
|
-
# Optional.
|
|
1565
|
-
# selector annotation or ClusterSelector, for applying configs to only a
|
|
1566
|
-
# of clusters.
|
|
1567
|
-
#
|
|
1592
|
+
# Optional. User-specified cluster name used by the Config Sync cluster-name-
|
|
1593
|
+
# selector annotation or ClusterSelector object, for applying configs to only a
|
|
1594
|
+
# subset of clusters. Read more about the cluster-name-selector annotation and
|
|
1595
|
+
# ClusterSelector object at https://docs.cloud.google.com/kubernetes-engine/
|
|
1596
|
+
# config-sync/docs/how-to/cluster-scoped-objects#limiting-configs. Only set this
|
|
1568
1597
|
# field if a name different from the cluster's fleet membership name is used by
|
|
1569
|
-
# Config Sync cluster-name-selector annotation or ClusterSelector.
|
|
1598
|
+
# the Config Sync cluster-name-selector annotation or ClusterSelector.
|
|
1570
1599
|
# Corresponds to the JSON property `cluster`
|
|
1571
1600
|
# @return [String]
|
|
1572
1601
|
attr_accessor :cluster
|
|
@@ -1592,7 +1621,10 @@ module Google
|
|
|
1592
1621
|
# @return [Google::Apis::GkehubV1::ConfigManagementPolicyController]
|
|
1593
1622
|
attr_accessor :policy_controller
|
|
1594
1623
|
|
|
1595
|
-
# Optional. Version of
|
|
1624
|
+
# Optional. Version of Config Sync to install. Defaults to the latest supported
|
|
1625
|
+
# Config Sync version if the config_sync field is enabled. See supported
|
|
1626
|
+
# versions at https://cloud.google.com/kubernetes-engine/config-sync/docs/get-
|
|
1627
|
+
# support-config-sync#version_support_policy.
|
|
1596
1628
|
# Corresponds to the JSON property `version`
|
|
1597
1629
|
# @return [String]
|
|
1598
1630
|
attr_accessor :version
|
|
@@ -1675,7 +1707,7 @@ module Google
|
|
|
1675
1707
|
include Google::Apis::Core::Hashable
|
|
1676
1708
|
|
|
1677
1709
|
# Optional. The Google Cloud Service Account Email used for auth when
|
|
1678
|
-
# secret_type is
|
|
1710
|
+
# secret_type is `gcpserviceaccount`.
|
|
1679
1711
|
# Corresponds to the JSON property `gcpServiceAccountEmail`
|
|
1680
1712
|
# @return [String]
|
|
1681
1713
|
attr_accessor :gcp_service_account_email
|
|
@@ -1687,8 +1719,8 @@ module Google
|
|
|
1687
1719
|
attr_accessor :policy_dir
|
|
1688
1720
|
|
|
1689
1721
|
# Required. Type of secret configured for access to the OCI repo. Must be one of
|
|
1690
|
-
# gcenode
|
|
1691
|
-
# is case-sensitive.
|
|
1722
|
+
# `gcenode`, `gcpserviceaccount`, `k8sserviceaccount` or `none`. The validation
|
|
1723
|
+
# of this is case-sensitive.
|
|
1692
1724
|
# Corresponds to the JSON property `secretType`
|
|
1693
1725
|
# @return [String]
|
|
1694
1726
|
attr_accessor :secret_type
|
|
@@ -4315,6 +4347,12 @@ module Google
|
|
|
4315
4347
|
# @return [Google::Apis::GkehubV1::FeatureState]
|
|
4316
4348
|
attr_accessor :state
|
|
4317
4349
|
|
|
4350
|
+
# **WorkloadIdentity**: The membership-specific state for WorkloadIdentity
|
|
4351
|
+
# feature.
|
|
4352
|
+
# Corresponds to the JSON property `workloadidentity`
|
|
4353
|
+
# @return [Google::Apis::GkehubV1::WorkloadIdentityMembershipState]
|
|
4354
|
+
attr_accessor :workloadidentity
|
|
4355
|
+
|
|
4318
4356
|
def initialize(**args)
|
|
4319
4357
|
update!(**args)
|
|
4320
4358
|
end
|
|
@@ -4329,6 +4367,7 @@ module Google
|
|
|
4329
4367
|
@policycontroller = args[:policycontroller] if args.key?(:policycontroller)
|
|
4330
4368
|
@servicemesh = args[:servicemesh] if args.key?(:servicemesh)
|
|
4331
4369
|
@state = args[:state] if args.key?(:state)
|
|
4370
|
+
@workloadidentity = args[:workloadidentity] if args.key?(:workloadidentity)
|
|
4332
4371
|
end
|
|
4333
4372
|
end
|
|
4334
4373
|
|
|
@@ -5979,6 +6018,174 @@ module Google
|
|
|
5979
6018
|
@kind = args[:kind] if args.key?(:kind)
|
|
5980
6019
|
end
|
|
5981
6020
|
end
|
|
6021
|
+
|
|
6022
|
+
# **WorkloadIdentity**: Global feature specification.
|
|
6023
|
+
class WorkloadIdentityFeatureSpec
|
|
6024
|
+
include Google::Apis::Core::Hashable
|
|
6025
|
+
|
|
6026
|
+
# Pool to be used for Workload Identity. This pool in trust-domain mode is used
|
|
6027
|
+
# with Fleet Tenancy, so that sameness can be enforced. ex: projects/example/
|
|
6028
|
+
# locations/global/workloadidentitypools/custompool
|
|
6029
|
+
# Corresponds to the JSON property `scopeTenancyPool`
|
|
6030
|
+
# @return [String]
|
|
6031
|
+
attr_accessor :scope_tenancy_pool
|
|
6032
|
+
|
|
6033
|
+
def initialize(**args)
|
|
6034
|
+
update!(**args)
|
|
6035
|
+
end
|
|
6036
|
+
|
|
6037
|
+
# Update properties of this object
|
|
6038
|
+
def update!(**args)
|
|
6039
|
+
@scope_tenancy_pool = args[:scope_tenancy_pool] if args.key?(:scope_tenancy_pool)
|
|
6040
|
+
end
|
|
6041
|
+
end
|
|
6042
|
+
|
|
6043
|
+
# **WorkloadIdentity**: Global feature state.
|
|
6044
|
+
class WorkloadIdentityFeatureState
|
|
6045
|
+
include Google::Apis::Core::Hashable
|
|
6046
|
+
|
|
6047
|
+
# The state of the IAM namespaces for the fleet.
|
|
6048
|
+
# Corresponds to the JSON property `namespaceStateDetails`
|
|
6049
|
+
# @return [Hash<String,Google::Apis::GkehubV1::WorkloadIdentityNamespaceStateDetail>]
|
|
6050
|
+
attr_accessor :namespace_state_details
|
|
6051
|
+
|
|
6052
|
+
# Deprecated, this field will be erased after code is changed to use the new
|
|
6053
|
+
# field.
|
|
6054
|
+
# Corresponds to the JSON property `namespaceStates`
|
|
6055
|
+
# @return [Hash<String,String>]
|
|
6056
|
+
attr_accessor :namespace_states
|
|
6057
|
+
|
|
6058
|
+
# The full name of the scope-tenancy pool for the fleet.
|
|
6059
|
+
# Corresponds to the JSON property `scopeTenancyWorkloadIdentityPool`
|
|
6060
|
+
# @return [String]
|
|
6061
|
+
attr_accessor :scope_tenancy_workload_identity_pool
|
|
6062
|
+
|
|
6063
|
+
# The full name of the svc.id.goog pool for the fleet.
|
|
6064
|
+
# Corresponds to the JSON property `workloadIdentityPool`
|
|
6065
|
+
# @return [String]
|
|
6066
|
+
attr_accessor :workload_identity_pool
|
|
6067
|
+
|
|
6068
|
+
# The state of the Workload Identity Pools for the fleet.
|
|
6069
|
+
# Corresponds to the JSON property `workloadIdentityPoolStateDetails`
|
|
6070
|
+
# @return [Hash<String,Google::Apis::GkehubV1::WorkloadIdentityWorkloadIdentityPoolStateDetail>]
|
|
6071
|
+
attr_accessor :workload_identity_pool_state_details
|
|
6072
|
+
|
|
6073
|
+
def initialize(**args)
|
|
6074
|
+
update!(**args)
|
|
6075
|
+
end
|
|
6076
|
+
|
|
6077
|
+
# Update properties of this object
|
|
6078
|
+
def update!(**args)
|
|
6079
|
+
@namespace_state_details = args[:namespace_state_details] if args.key?(:namespace_state_details)
|
|
6080
|
+
@namespace_states = args[:namespace_states] if args.key?(:namespace_states)
|
|
6081
|
+
@scope_tenancy_workload_identity_pool = args[:scope_tenancy_workload_identity_pool] if args.key?(:scope_tenancy_workload_identity_pool)
|
|
6082
|
+
@workload_identity_pool = args[:workload_identity_pool] if args.key?(:workload_identity_pool)
|
|
6083
|
+
@workload_identity_pool_state_details = args[:workload_identity_pool_state_details] if args.key?(:workload_identity_pool_state_details)
|
|
6084
|
+
end
|
|
6085
|
+
end
|
|
6086
|
+
|
|
6087
|
+
# IdentityProviderStateDetail represents the state of an Identity Provider.
|
|
6088
|
+
class WorkloadIdentityIdentityProviderStateDetail
|
|
6089
|
+
include Google::Apis::Core::Hashable
|
|
6090
|
+
|
|
6091
|
+
# The state of the Identity Provider.
|
|
6092
|
+
# Corresponds to the JSON property `code`
|
|
6093
|
+
# @return [String]
|
|
6094
|
+
attr_accessor :code
|
|
6095
|
+
|
|
6096
|
+
# A human-readable description of the current state or returned error.
|
|
6097
|
+
# Corresponds to the JSON property `description`
|
|
6098
|
+
# @return [String]
|
|
6099
|
+
attr_accessor :description
|
|
6100
|
+
|
|
6101
|
+
def initialize(**args)
|
|
6102
|
+
update!(**args)
|
|
6103
|
+
end
|
|
6104
|
+
|
|
6105
|
+
# Update properties of this object
|
|
6106
|
+
def update!(**args)
|
|
6107
|
+
@code = args[:code] if args.key?(:code)
|
|
6108
|
+
@description = args[:description] if args.key?(:description)
|
|
6109
|
+
end
|
|
6110
|
+
end
|
|
6111
|
+
|
|
6112
|
+
# **WorkloadIdentity**: The membership-specific state for WorkloadIdentity
|
|
6113
|
+
# feature.
|
|
6114
|
+
class WorkloadIdentityMembershipState
|
|
6115
|
+
include Google::Apis::Core::Hashable
|
|
6116
|
+
|
|
6117
|
+
# Deprecated, this field will be erased after code is changed to use the new
|
|
6118
|
+
# field.
|
|
6119
|
+
# Corresponds to the JSON property `description`
|
|
6120
|
+
# @return [String]
|
|
6121
|
+
attr_accessor :description
|
|
6122
|
+
|
|
6123
|
+
# The state of the Identity Providers corresponding to the membership.
|
|
6124
|
+
# Corresponds to the JSON property `identityProviderStateDetails`
|
|
6125
|
+
# @return [Hash<String,Google::Apis::GkehubV1::WorkloadIdentityIdentityProviderStateDetail>]
|
|
6126
|
+
attr_accessor :identity_provider_state_details
|
|
6127
|
+
|
|
6128
|
+
def initialize(**args)
|
|
6129
|
+
update!(**args)
|
|
6130
|
+
end
|
|
6131
|
+
|
|
6132
|
+
# Update properties of this object
|
|
6133
|
+
def update!(**args)
|
|
6134
|
+
@description = args[:description] if args.key?(:description)
|
|
6135
|
+
@identity_provider_state_details = args[:identity_provider_state_details] if args.key?(:identity_provider_state_details)
|
|
6136
|
+
end
|
|
6137
|
+
end
|
|
6138
|
+
|
|
6139
|
+
# NamespaceStateDetail represents the state of a IAM namespace.
|
|
6140
|
+
class WorkloadIdentityNamespaceStateDetail
|
|
6141
|
+
include Google::Apis::Core::Hashable
|
|
6142
|
+
|
|
6143
|
+
# The state of the IAM namespace.
|
|
6144
|
+
# Corresponds to the JSON property `code`
|
|
6145
|
+
# @return [String]
|
|
6146
|
+
attr_accessor :code
|
|
6147
|
+
|
|
6148
|
+
# A human-readable description of the current state or returned error.
|
|
6149
|
+
# Corresponds to the JSON property `description`
|
|
6150
|
+
# @return [String]
|
|
6151
|
+
attr_accessor :description
|
|
6152
|
+
|
|
6153
|
+
def initialize(**args)
|
|
6154
|
+
update!(**args)
|
|
6155
|
+
end
|
|
6156
|
+
|
|
6157
|
+
# Update properties of this object
|
|
6158
|
+
def update!(**args)
|
|
6159
|
+
@code = args[:code] if args.key?(:code)
|
|
6160
|
+
@description = args[:description] if args.key?(:description)
|
|
6161
|
+
end
|
|
6162
|
+
end
|
|
6163
|
+
|
|
6164
|
+
# WorkloadIdentityPoolStateDetail represents the state of the Workload Identity
|
|
6165
|
+
# Pools for the fleet.
|
|
6166
|
+
class WorkloadIdentityWorkloadIdentityPoolStateDetail
|
|
6167
|
+
include Google::Apis::Core::Hashable
|
|
6168
|
+
|
|
6169
|
+
# The state of the Workload Identity Pool.
|
|
6170
|
+
# Corresponds to the JSON property `code`
|
|
6171
|
+
# @return [String]
|
|
6172
|
+
attr_accessor :code
|
|
6173
|
+
|
|
6174
|
+
# A human-readable description of the current state or returned error.
|
|
6175
|
+
# Corresponds to the JSON property `description`
|
|
6176
|
+
# @return [String]
|
|
6177
|
+
attr_accessor :description
|
|
6178
|
+
|
|
6179
|
+
def initialize(**args)
|
|
6180
|
+
update!(**args)
|
|
6181
|
+
end
|
|
6182
|
+
|
|
6183
|
+
# Update properties of this object
|
|
6184
|
+
def update!(**args)
|
|
6185
|
+
@code = args[:code] if args.key?(:code)
|
|
6186
|
+
@description = args[:description] if args.key?(:description)
|
|
6187
|
+
end
|
|
6188
|
+
end
|
|
5982
6189
|
end
|
|
5983
6190
|
end
|
|
5984
6191
|
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.95.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260126"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -994,6 +994,42 @@ module Google
|
|
|
994
994
|
include Google::Apis::Core::JsonObjectSupport
|
|
995
995
|
end
|
|
996
996
|
|
|
997
|
+
class WorkloadIdentityFeatureSpec
|
|
998
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
999
|
+
|
|
1000
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1001
|
+
end
|
|
1002
|
+
|
|
1003
|
+
class WorkloadIdentityFeatureState
|
|
1004
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1005
|
+
|
|
1006
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
class WorkloadIdentityIdentityProviderStateDetail
|
|
1010
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1011
|
+
|
|
1012
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1013
|
+
end
|
|
1014
|
+
|
|
1015
|
+
class WorkloadIdentityMembershipState
|
|
1016
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1017
|
+
|
|
1018
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1019
|
+
end
|
|
1020
|
+
|
|
1021
|
+
class WorkloadIdentityNamespaceStateDetail
|
|
1022
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1023
|
+
|
|
1024
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1025
|
+
end
|
|
1026
|
+
|
|
1027
|
+
class WorkloadIdentityWorkloadIdentityPoolStateDetail
|
|
1028
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1029
|
+
|
|
1030
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1031
|
+
end
|
|
1032
|
+
|
|
997
1033
|
class AppDevExperienceFeatureSpec
|
|
998
1034
|
# @private
|
|
999
1035
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1199,6 +1235,8 @@ module Google
|
|
|
1199
1235
|
|
|
1200
1236
|
property :rbacrolebindingactuation, as: 'rbacrolebindingactuation', class: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec, decorator: Google::Apis::GkehubV1::RbacRoleBindingActuationFeatureSpec::Representation
|
|
1201
1237
|
|
|
1238
|
+
property :workloadidentity, as: 'workloadidentity', class: Google::Apis::GkehubV1::WorkloadIdentityFeatureSpec, decorator: Google::Apis::GkehubV1::WorkloadIdentityFeatureSpec::Representation
|
|
1239
|
+
|
|
1202
1240
|
end
|
|
1203
1241
|
end
|
|
1204
1242
|
|
|
@@ -1215,6 +1253,8 @@ module Google
|
|
|
1215
1253
|
|
|
1216
1254
|
property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
|
|
1217
1255
|
|
|
1256
|
+
property :workloadidentity, as: 'workloadidentity', class: Google::Apis::GkehubV1::WorkloadIdentityFeatureState, decorator: Google::Apis::GkehubV1::WorkloadIdentityFeatureState::Representation
|
|
1257
|
+
|
|
1218
1258
|
end
|
|
1219
1259
|
end
|
|
1220
1260
|
|
|
@@ -2211,6 +2251,8 @@ module Google
|
|
|
2211
2251
|
|
|
2212
2252
|
property :state, as: 'state', class: Google::Apis::GkehubV1::FeatureState, decorator: Google::Apis::GkehubV1::FeatureState::Representation
|
|
2213
2253
|
|
|
2254
|
+
property :workloadidentity, as: 'workloadidentity', class: Google::Apis::GkehubV1::WorkloadIdentityMembershipState, decorator: Google::Apis::GkehubV1::WorkloadIdentityMembershipState::Representation
|
|
2255
|
+
|
|
2214
2256
|
end
|
|
2215
2257
|
end
|
|
2216
2258
|
|
|
@@ -2666,6 +2708,59 @@ module Google
|
|
|
2666
2708
|
property :kind, as: 'kind'
|
|
2667
2709
|
end
|
|
2668
2710
|
end
|
|
2711
|
+
|
|
2712
|
+
class WorkloadIdentityFeatureSpec
|
|
2713
|
+
# @private
|
|
2714
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2715
|
+
property :scope_tenancy_pool, as: 'scopeTenancyPool'
|
|
2716
|
+
end
|
|
2717
|
+
end
|
|
2718
|
+
|
|
2719
|
+
class WorkloadIdentityFeatureState
|
|
2720
|
+
# @private
|
|
2721
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2722
|
+
hash :namespace_state_details, as: 'namespaceStateDetails', class: Google::Apis::GkehubV1::WorkloadIdentityNamespaceStateDetail, decorator: Google::Apis::GkehubV1::WorkloadIdentityNamespaceStateDetail::Representation
|
|
2723
|
+
|
|
2724
|
+
hash :namespace_states, as: 'namespaceStates'
|
|
2725
|
+
property :scope_tenancy_workload_identity_pool, as: 'scopeTenancyWorkloadIdentityPool'
|
|
2726
|
+
property :workload_identity_pool, as: 'workloadIdentityPool'
|
|
2727
|
+
hash :workload_identity_pool_state_details, as: 'workloadIdentityPoolStateDetails', class: Google::Apis::GkehubV1::WorkloadIdentityWorkloadIdentityPoolStateDetail, decorator: Google::Apis::GkehubV1::WorkloadIdentityWorkloadIdentityPoolStateDetail::Representation
|
|
2728
|
+
|
|
2729
|
+
end
|
|
2730
|
+
end
|
|
2731
|
+
|
|
2732
|
+
class WorkloadIdentityIdentityProviderStateDetail
|
|
2733
|
+
# @private
|
|
2734
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2735
|
+
property :code, as: 'code'
|
|
2736
|
+
property :description, as: 'description'
|
|
2737
|
+
end
|
|
2738
|
+
end
|
|
2739
|
+
|
|
2740
|
+
class WorkloadIdentityMembershipState
|
|
2741
|
+
# @private
|
|
2742
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2743
|
+
property :description, as: 'description'
|
|
2744
|
+
hash :identity_provider_state_details, as: 'identityProviderStateDetails', class: Google::Apis::GkehubV1::WorkloadIdentityIdentityProviderStateDetail, decorator: Google::Apis::GkehubV1::WorkloadIdentityIdentityProviderStateDetail::Representation
|
|
2745
|
+
|
|
2746
|
+
end
|
|
2747
|
+
end
|
|
2748
|
+
|
|
2749
|
+
class WorkloadIdentityNamespaceStateDetail
|
|
2750
|
+
# @private
|
|
2751
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2752
|
+
property :code, as: 'code'
|
|
2753
|
+
property :description, as: 'description'
|
|
2754
|
+
end
|
|
2755
|
+
end
|
|
2756
|
+
|
|
2757
|
+
class WorkloadIdentityWorkloadIdentityPoolStateDetail
|
|
2758
|
+
# @private
|
|
2759
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2760
|
+
property :code, as: 'code'
|
|
2761
|
+
property :description, as: 'description'
|
|
2762
|
+
end
|
|
2763
|
+
end
|
|
2669
2764
|
end
|
|
2670
2765
|
end
|
|
2671
2766
|
end
|
|
@@ -123,7 +123,11 @@ module Google
|
|
|
123
123
|
execute_or_queue_command(command, &block)
|
|
124
124
|
end
|
|
125
125
|
|
|
126
|
-
# Lists information about the supported locations for this service.
|
|
126
|
+
# Lists information about the supported locations for this service. This method
|
|
127
|
+
# can be called in two ways: * **List all public locations:** Use the path `GET /
|
|
128
|
+
# v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
|
|
129
|
+
# projects/`project_id`/locations`. This may include public locations as well as
|
|
130
|
+
# private or other locations specifically visible to the project.
|
|
127
131
|
# @param [String] name
|
|
128
132
|
# The resource that owns the locations collection, if applicable.
|
|
129
133
|
# @param [Array<String>, String] extra_location_types
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.95.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1/v0.95.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|