Skip to content

Commit 029acc7

Browse files
feat(gkehub): update the api
#### gkehub:v1 The following keys were added: - schemas.ConfigManagementConfigSync.properties.deploymentOverrides (Total Keys: 2) - schemas.ConfigManagementContainerOverride (Total Keys: 7) - schemas.ConfigManagementDeploymentOverride (Total Keys: 6) #### gkehub:v1alpha The following keys were added: - schemas.ConfigManagementConfigSync.properties.deploymentOverrides (Total Keys: 2) - schemas.ConfigManagementContainerOverride (Total Keys: 7) - schemas.ConfigManagementDeploymentOverride (Total Keys: 6) #### gkehub:v1beta The following keys were added: - schemas.ConfigManagementConfigSync.properties.deploymentOverrides (Total Keys: 2) - schemas.ConfigManagementContainerOverride (Total Keys: 7) - schemas.ConfigManagementDeploymentOverride (Total Keys: 6) #### gkehub:v2 The following keys were added: - schemas.ConfigManagementConfigSync.properties.deploymentOverrides (Total Keys: 2) - schemas.ConfigManagementContainerOverride (Total Keys: 7) - schemas.ConfigManagementDeploymentOverride (Total Keys: 6) #### gkehub:v2alpha The following keys were added: - schemas.ConfigManagementConfigSync.properties.deploymentOverrides (Total Keys: 2) - schemas.ConfigManagementContainerOverride (Total Keys: 7) - schemas.ConfigManagementDeploymentOverride (Total Keys: 6) #### gkehub:v2beta The following keys were added: - schemas.ConfigManagementConfigSync.properties.deploymentOverrides (Total Keys: 2) - schemas.ConfigManagementContainerOverride (Total Keys: 7) - schemas.ConfigManagementDeploymentOverride (Total Keys: 6)
1 parent 48cc0c7 commit 029acc7

12 files changed

+1242
-6
lines changed

docs/dyn/gkehub_v1.projects.locations.features.html

Lines changed: 180 additions & 0 deletions
Large diffs are not rendered by default.

docs/dyn/gkehub_v1alpha.projects.locations.features.html

Lines changed: 180 additions & 0 deletions
Large diffs are not rendered by default.

docs/dyn/gkehub_v1beta.projects.locations.features.html

Lines changed: 180 additions & 0 deletions
Large diffs are not rendered by default.

docs/dyn/gkehub_v2.projects.locations.memberships.features.html

Lines changed: 120 additions & 0 deletions
Large diffs are not rendered by default.

docs/dyn/gkehub_v2alpha.projects.locations.memberships.features.html

Lines changed: 120 additions & 0 deletions
Large diffs are not rendered by default.

docs/dyn/gkehub_v2beta.projects.locations.memberships.features.html

Lines changed: 120 additions & 0 deletions
Large diffs are not rendered by default.

googleapiclient/discovery_cache/documents/gkehub.v1.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2111,7 +2111,7 @@
21112111
}
21122112
}
21132113
},
2114-
"revision": "20250209",
2114+
"revision": "20250302",
21152115
"rootUrl": "https://gkehub.googleapis.com/",
21162116
"schemas": {
21172117
"AppDevExperienceFeatureSpec": {
@@ -2645,6 +2645,13 @@
26452645
"description": "Configuration for Config Sync",
26462646
"id": "ConfigManagementConfigSync",
26472647
"properties": {
2648+
"deploymentOverrides": {
2649+
"description": "Optional. Configuration for deployment overrides.",
2650+
"items": {
2651+
"$ref": "ConfigManagementDeploymentOverride"
2652+
},
2653+
"type": "array"
2654+
},
26482655
"enabled": {
26492656
"description": "Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.",
26502657
"type": "boolean"
@@ -3010,6 +3017,55 @@
30103017
},
30113018
"type": "object"
30123019
},
3020+
"ConfigManagementContainerOverride": {
3021+
"description": "Configuration for a container override.",
3022+
"id": "ConfigManagementContainerOverride",
3023+
"properties": {
3024+
"containerName": {
3025+
"description": "Required. The name of the container.",
3026+
"type": "string"
3027+
},
3028+
"cpuLimit": {
3029+
"description": "Optional. The cpu limit of the container.",
3030+
"type": "string"
3031+
},
3032+
"cpuRequest": {
3033+
"description": "Optional. The cpu request of the container.",
3034+
"type": "string"
3035+
},
3036+
"memoryLimit": {
3037+
"description": "Optional. The memory limit of the container.",
3038+
"type": "string"
3039+
},
3040+
"memoryRequest": {
3041+
"description": "Optional. The memory request of the container.",
3042+
"type": "string"
3043+
}
3044+
},
3045+
"type": "object"
3046+
},
3047+
"ConfigManagementDeploymentOverride": {
3048+
"description": "Configuration for a deployment override.",
3049+
"id": "ConfigManagementDeploymentOverride",
3050+
"properties": {
3051+
"containers": {
3052+
"description": "Optional. The containers of the deployment resource to be overridden.",
3053+
"items": {
3054+
"$ref": "ConfigManagementContainerOverride"
3055+
},
3056+
"type": "array"
3057+
},
3058+
"deploymentName": {
3059+
"description": "Required. The name of the deployment resource to be overridden.",
3060+
"type": "string"
3061+
},
3062+
"deploymentNamespace": {
3063+
"description": "Required. The namespace of the deployment resource to be overridden..",
3064+
"type": "string"
3065+
}
3066+
},
3067+
"type": "object"
3068+
},
30133069
"ConfigManagementErrorResource": {
30143070
"description": "Model for a config file in the git repo with an associated Sync error",
30153071
"id": "ConfigManagementErrorResource",

googleapiclient/discovery_cache/documents/gkehub.v1alpha.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2255,7 +2255,7 @@
22552255
}
22562256
}
22572257
},
2258-
"revision": "20250209",
2258+
"revision": "20250302",
22592259
"rootUrl": "https://gkehub.googleapis.com/",
22602260
"schemas": {
22612261
"AppDevExperienceFeatureSpec": {
@@ -2956,6 +2956,13 @@
29562956
"description": "Configuration for Config Sync",
29572957
"id": "ConfigManagementConfigSync",
29582958
"properties": {
2959+
"deploymentOverrides": {
2960+
"description": "Optional. Configuration for deployment overrides.",
2961+
"items": {
2962+
"$ref": "ConfigManagementDeploymentOverride"
2963+
},
2964+
"type": "array"
2965+
},
29592966
"enabled": {
29602967
"description": "Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.",
29612968
"type": "boolean"
@@ -3321,6 +3328,55 @@
33213328
},
33223329
"type": "object"
33233330
},
3331+
"ConfigManagementContainerOverride": {
3332+
"description": "Configuration for a container override.",
3333+
"id": "ConfigManagementContainerOverride",
3334+
"properties": {
3335+
"containerName": {
3336+
"description": "Required. The name of the container.",
3337+
"type": "string"
3338+
},
3339+
"cpuLimit": {
3340+
"description": "Optional. The cpu limit of the container.",
3341+
"type": "string"
3342+
},
3343+
"cpuRequest": {
3344+
"description": "Optional. The cpu request of the container.",
3345+
"type": "string"
3346+
},
3347+
"memoryLimit": {
3348+
"description": "Optional. The memory limit of the container.",
3349+
"type": "string"
3350+
},
3351+
"memoryRequest": {
3352+
"description": "Optional. The memory request of the container.",
3353+
"type": "string"
3354+
}
3355+
},
3356+
"type": "object"
3357+
},
3358+
"ConfigManagementDeploymentOverride": {
3359+
"description": "Configuration for a deployment override.",
3360+
"id": "ConfigManagementDeploymentOverride",
3361+
"properties": {
3362+
"containers": {
3363+
"description": "Optional. The containers of the deployment resource to be overridden.",
3364+
"items": {
3365+
"$ref": "ConfigManagementContainerOverride"
3366+
},
3367+
"type": "array"
3368+
},
3369+
"deploymentName": {
3370+
"description": "Required. The name of the deployment resource to be overridden.",
3371+
"type": "string"
3372+
},
3373+
"deploymentNamespace": {
3374+
"description": "Required. The namespace of the deployment resource to be overridden..",
3375+
"type": "string"
3376+
}
3377+
},
3378+
"type": "object"
3379+
},
33243380
"ConfigManagementErrorResource": {
33253381
"description": "Model for a config file in the git repo with an associated Sync error",
33263382
"id": "ConfigManagementErrorResource",

googleapiclient/discovery_cache/documents/gkehub.v1beta.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2111,7 +2111,7 @@
21112111
}
21122112
}
21132113
},
2114-
"revision": "20250209",
2114+
"revision": "20250302",
21152115
"rootUrl": "https://gkehub.googleapis.com/",
21162116
"schemas": {
21172117
"AppDevExperienceFeatureSpec": {
@@ -2696,6 +2696,13 @@
26962696
"description": "Configuration for Config Sync",
26972697
"id": "ConfigManagementConfigSync",
26982698
"properties": {
2699+
"deploymentOverrides": {
2700+
"description": "Optional. Configuration for deployment overrides.",
2701+
"items": {
2702+
"$ref": "ConfigManagementDeploymentOverride"
2703+
},
2704+
"type": "array"
2705+
},
26992706
"enabled": {
27002707
"description": "Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.",
27012708
"type": "boolean"
@@ -3061,6 +3068,55 @@
30613068
},
30623069
"type": "object"
30633070
},
3071+
"ConfigManagementContainerOverride": {
3072+
"description": "Configuration for a container override.",
3073+
"id": "ConfigManagementContainerOverride",
3074+
"properties": {
3075+
"containerName": {
3076+
"description": "Required. The name of the container.",
3077+
"type": "string"
3078+
},
3079+
"cpuLimit": {
3080+
"description": "Optional. The cpu limit of the container.",
3081+
"type": "string"
3082+
},
3083+
"cpuRequest": {
3084+
"description": "Optional. The cpu request of the container.",
3085+
"type": "string"
3086+
},
3087+
"memoryLimit": {
3088+
"description": "Optional. The memory limit of the container.",
3089+
"type": "string"
3090+
},
3091+
"memoryRequest": {
3092+
"description": "Optional. The memory request of the container.",
3093+
"type": "string"
3094+
}
3095+
},
3096+
"type": "object"
3097+
},
3098+
"ConfigManagementDeploymentOverride": {
3099+
"description": "Configuration for a deployment override.",
3100+
"id": "ConfigManagementDeploymentOverride",
3101+
"properties": {
3102+
"containers": {
3103+
"description": "Optional. The containers of the deployment resource to be overridden.",
3104+
"items": {
3105+
"$ref": "ConfigManagementContainerOverride"
3106+
},
3107+
"type": "array"
3108+
},
3109+
"deploymentName": {
3110+
"description": "Required. The name of the deployment resource to be overridden.",
3111+
"type": "string"
3112+
},
3113+
"deploymentNamespace": {
3114+
"description": "Required. The namespace of the deployment resource to be overridden..",
3115+
"type": "string"
3116+
}
3117+
},
3118+
"type": "object"
3119+
},
30643120
"ConfigManagementErrorResource": {
30653121
"description": "Model for a config file in the git repo with an associated Sync error",
30663122
"id": "ConfigManagementErrorResource",

googleapiclient/discovery_cache/documents/gkehub.v2.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
}
472472
}
473473
},
474-
"revision": "20250209",
474+
"revision": "20250302",
475475
"rootUrl": "https://gkehub.googleapis.com/",
476476
"schemas": {
477477
"AppDevExperienceState": {
@@ -700,6 +700,13 @@
700700
"description": "Configuration for Config Sync",
701701
"id": "ConfigManagementConfigSync",
702702
"properties": {
703+
"deploymentOverrides": {
704+
"description": "Optional. Configuration for deployment overrides.",
705+
"items": {
706+
"$ref": "ConfigManagementDeploymentOverride"
707+
},
708+
"type": "array"
709+
},
703710
"enabled": {
704711
"description": "Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.",
705712
"type": "boolean"
@@ -1065,6 +1072,55 @@
10651072
},
10661073
"type": "object"
10671074
},
1075+
"ConfigManagementContainerOverride": {
1076+
"description": "Configuration for a container override.",
1077+
"id": "ConfigManagementContainerOverride",
1078+
"properties": {
1079+
"containerName": {
1080+
"description": "Required. The name of the container.",
1081+
"type": "string"
1082+
},
1083+
"cpuLimit": {
1084+
"description": "Optional. The cpu limit of the container.",
1085+
"type": "string"
1086+
},
1087+
"cpuRequest": {
1088+
"description": "Optional. The cpu request of the container.",
1089+
"type": "string"
1090+
},
1091+
"memoryLimit": {
1092+
"description": "Optional. The memory limit of the container.",
1093+
"type": "string"
1094+
},
1095+
"memoryRequest": {
1096+
"description": "Optional. The memory request of the container.",
1097+
"type": "string"
1098+
}
1099+
},
1100+
"type": "object"
1101+
},
1102+
"ConfigManagementDeploymentOverride": {
1103+
"description": "Configuration for a deployment override.",
1104+
"id": "ConfigManagementDeploymentOverride",
1105+
"properties": {
1106+
"containers": {
1107+
"description": "Optional. The containers of the deployment resource to be overridden.",
1108+
"items": {
1109+
"$ref": "ConfigManagementContainerOverride"
1110+
},
1111+
"type": "array"
1112+
},
1113+
"deploymentName": {
1114+
"description": "Required. The name of the deployment resource to be overridden.",
1115+
"type": "string"
1116+
},
1117+
"deploymentNamespace": {
1118+
"description": "Required. The namespace of the deployment resource to be overridden..",
1119+
"type": "string"
1120+
}
1121+
},
1122+
"type": "object"
1123+
},
10681124
"ConfigManagementErrorResource": {
10691125
"description": "Model for a config file in the git repo with an associated Sync error.",
10701126
"id": "ConfigManagementErrorResource",

googleapiclient/discovery_cache/documents/gkehub.v2alpha.json

Lines changed: 57 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@
471471
}
472472
}
473473
},
474-
"revision": "20250209",
474+
"revision": "20250302",
475475
"rootUrl": "https://gkehub.googleapis.com/",
476476
"schemas": {
477477
"AppDevExperienceState": {
@@ -700,6 +700,13 @@
700700
"description": "Configuration for Config Sync",
701701
"id": "ConfigManagementConfigSync",
702702
"properties": {
703+
"deploymentOverrides": {
704+
"description": "Optional. Configuration for deployment overrides.",
705+
"items": {
706+
"$ref": "ConfigManagementDeploymentOverride"
707+
},
708+
"type": "array"
709+
},
703710
"enabled": {
704711
"description": "Optional. Enables the installation of ConfigSync. If set to true, ConfigSync resources will be created and the other ConfigSync fields will be applied if exist. If set to false, all other ConfigSync fields will be ignored, ConfigSync resources will be deleted. If omitted, ConfigSync resources will be managed depends on the presence of the git or oci field.",
705712
"type": "boolean"
@@ -1065,6 +1072,55 @@
10651072
},
10661073
"type": "object"
10671074
},
1075+
"ConfigManagementContainerOverride": {
1076+
"description": "Configuration for a container override.",
1077+
"id": "ConfigManagementContainerOverride",
1078+
"properties": {
1079+
"containerName": {
1080+
"description": "Required. The name of the container.",
1081+
"type": "string"
1082+
},
1083+
"cpuLimit": {
1084+
"description": "Optional. The cpu limit of the container.",
1085+
"type": "string"
1086+
},
1087+
"cpuRequest": {
1088+
"description": "Optional. The cpu request of the container.",
1089+
"type": "string"
1090+
},
1091+
"memoryLimit": {
1092+
"description": "Optional. The memory limit of the container.",
1093+
"type": "string"
1094+
},
1095+
"memoryRequest": {
1096+
"description": "Optional. The memory request of the container.",
1097+
"type": "string"
1098+
}
1099+
},
1100+
"type": "object"
1101+
},
1102+
"ConfigManagementDeploymentOverride": {
1103+
"description": "Configuration for a deployment override.",
1104+
"id": "ConfigManagementDeploymentOverride",
1105+
"properties": {
1106+
"containers": {
1107+
"description": "Optional. The containers of the deployment resource to be overridden.",
1108+
"items": {
1109+
"$ref": "ConfigManagementContainerOverride"
1110+
},
1111+
"type": "array"
1112+
},
1113+
"deploymentName": {
1114+
"description": "Required. The name of the deployment resource to be overridden.",
1115+
"type": "string"
1116+
},
1117+
"deploymentNamespace": {
1118+
"description": "Required. The namespace of the deployment resource to be overridden..",
1119+
"type": "string"
1120+
}
1121+
},
1122+
"type": "object"
1123+
},
10681124
"ConfigManagementErrorResource": {
10691125
"description": "Model for a config file in the git repo with an associated Sync error.",
10701126
"id": "ConfigManagementErrorResource",

0 commit comments

Comments
 (0)