@@ -908,11 +908,21 @@ class ConfigManagementConfigSyncDeploymentState
908908 # @return [String]
909909 attr_accessor :monitor
910910
911+ # Deployment state of otel-collector
912+ # Corresponds to the JSON property `otelCollector`
913+ # @return [String]
914+ attr_accessor :otel_collector
915+
911916 # Deployment state of reconciler-manager pod
912917 # Corresponds to the JSON property `reconcilerManager`
913918 # @return [String]
914919 attr_accessor :reconciler_manager
915920
921+ # Deployment state of resource-group-controller-manager
922+ # Corresponds to the JSON property `resourceGroupControllerManager`
923+ # @return [String]
924+ attr_accessor :resource_group_controller_manager
925+
916926 # Deployment state of root-reconciler
917927 # Corresponds to the JSON property `rootReconciler`
918928 # @return [String]
@@ -933,7 +943,9 @@ def update!(**args)
933943 @git_sync = args [ :git_sync ] if args . key? ( :git_sync )
934944 @importer = args [ :importer ] if args . key? ( :importer )
935945 @monitor = args [ :monitor ] if args . key? ( :monitor )
946+ @otel_collector = args [ :otel_collector ] if args . key? ( :otel_collector )
936947 @reconciler_manager = args [ :reconciler_manager ] if args . key? ( :reconciler_manager )
948+ @resource_group_controller_manager = args [ :resource_group_controller_manager ] if args . key? ( :resource_group_controller_manager )
937949 @root_reconciler = args [ :root_reconciler ] if args . key? ( :root_reconciler )
938950 @syncer = args [ :syncer ] if args . key? ( :syncer )
939951 end
@@ -1017,7 +1029,7 @@ def update!(**args)
10171029 class ConfigManagementConfigSyncVersion
10181030 include Google ::Apis ::Core ::Hashable
10191031
1020- # Version of the deployed admission_webhook pod
1032+ # Version of the deployed admission-webhook pod
10211033 # Corresponds to the JSON property `admissionWebhook`
10221034 # @return [String]
10231035 attr_accessor :admission_webhook
@@ -1037,11 +1049,21 @@ class ConfigManagementConfigSyncVersion
10371049 # @return [String]
10381050 attr_accessor :monitor
10391051
1052+ # Version of the deployed otel-collector pod
1053+ # Corresponds to the JSON property `otelCollector`
1054+ # @return [String]
1055+ attr_accessor :otel_collector
1056+
10401057 # Version of the deployed reconciler-manager pod
10411058 # Corresponds to the JSON property `reconcilerManager`
10421059 # @return [String]
10431060 attr_accessor :reconciler_manager
10441061
1062+ # Version of the deployed resource-group-controller-manager pod
1063+ # Corresponds to the JSON property `resourceGroupControllerManager`
1064+ # @return [String]
1065+ attr_accessor :resource_group_controller_manager
1066+
10451067 # Version of the deployed reconciler container in root-reconciler pod
10461068 # Corresponds to the JSON property `rootReconciler`
10471069 # @return [String]
@@ -1062,7 +1084,9 @@ def update!(**args)
10621084 @git_sync = args [ :git_sync ] if args . key? ( :git_sync )
10631085 @importer = args [ :importer ] if args . key? ( :importer )
10641086 @monitor = args [ :monitor ] if args . key? ( :monitor )
1087+ @otel_collector = args [ :otel_collector ] if args . key? ( :otel_collector )
10651088 @reconciler_manager = args [ :reconciler_manager ] if args . key? ( :reconciler_manager )
1089+ @resource_group_controller_manager = args [ :resource_group_controller_manager ] if args . key? ( :resource_group_controller_manager )
10661090 @root_reconciler = args [ :root_reconciler ] if args . key? ( :root_reconciler )
10671091 @syncer = args [ :syncer ] if args . key? ( :syncer )
10681092 end
@@ -2479,6 +2503,25 @@ def update!(**args)
24792503 end
24802504 end
24812505
2506+ # Response for GenerateRBACRoleBindingYAML.
2507+ class GenerateMembershipRbacRoleBindingYamlResponse
2508+ include Google ::Apis ::Core ::Hashable
2509+
2510+ # a yaml text blob including the RBAC policies.
2511+ # Corresponds to the JSON property `roleBindingsYaml`
2512+ # @return [String]
2513+ attr_accessor :role_bindings_yaml
2514+
2515+ def initialize ( **args )
2516+ update! ( **args )
2517+ end
2518+
2519+ # Update properties of this object
2520+ def update! ( **args )
2521+ @role_bindings_yaml = args [ :role_bindings_yaml ] if args . key? ( :role_bindings_yaml )
2522+ end
2523+ end
2524+
24822525 # GkeCluster contains information specific to GKE clusters.
24832526 class GkeCluster
24842527 include Google ::Apis ::Core ::Hashable
@@ -5413,7 +5456,7 @@ class ServiceMeshMembershipSpec
54135456 # @return [String]
54145457 attr_accessor :control_plane
54155458
5416- # Enables automatic Service Mesh management.
5459+ # Optional. Enables automatic Service Mesh management.
54175460 # Corresponds to the JSON property `management`
54185461 # @return [String]
54195462 attr_accessor :management
0 commit comments