@maxim_mazurok/gapi.client.gkehub-v1 0.0.20250222 → 0.0.20250306
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.
- package/index.d.ts +23 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://gkehub.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250306
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -199,6 +199,8 @@ declare namespace gapi.client {
|
|
|
199
199
|
standard?: string;
|
|
200
200
|
}
|
|
201
201
|
interface ConfigManagementConfigSync {
|
|
202
|
+
/** Optional. Configuration for deployment overrides. */
|
|
203
|
+
deploymentOverrides?: ConfigManagementDeploymentOverride[];
|
|
202
204
|
/** 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. */
|
|
203
205
|
enabled?: boolean;
|
|
204
206
|
/** Optional. Git repo configuration for the cluster. */
|
|
@@ -278,6 +280,26 @@ declare namespace gapi.client {
|
|
|
278
280
|
/** Version of the deployed syncer pod */
|
|
279
281
|
syncer?: string;
|
|
280
282
|
}
|
|
283
|
+
interface ConfigManagementContainerOverride {
|
|
284
|
+
/** Required. The name of the container. */
|
|
285
|
+
containerName?: string;
|
|
286
|
+
/** Optional. The cpu limit of the container. */
|
|
287
|
+
cpuLimit?: string;
|
|
288
|
+
/** Optional. The cpu request of the container. */
|
|
289
|
+
cpuRequest?: string;
|
|
290
|
+
/** Optional. The memory limit of the container. */
|
|
291
|
+
memoryLimit?: string;
|
|
292
|
+
/** Optional. The memory request of the container. */
|
|
293
|
+
memoryRequest?: string;
|
|
294
|
+
}
|
|
295
|
+
interface ConfigManagementDeploymentOverride {
|
|
296
|
+
/** Optional. The containers of the deployment resource to be overridden. */
|
|
297
|
+
containers?: ConfigManagementContainerOverride[];
|
|
298
|
+
/** Required. The name of the deployment resource to be overridden. */
|
|
299
|
+
deploymentName?: string;
|
|
300
|
+
/** Required. The namespace of the deployment resource to be overridden.. */
|
|
301
|
+
deploymentNamespace?: string;
|
|
302
|
+
}
|
|
281
303
|
interface ConfigManagementErrorResource {
|
|
282
304
|
/** Group/version/kind of the resource that is causing an error */
|
|
283
305
|
resourceGvk?: ConfigManagementGroupVersionKind;
|