@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20241209 → 0.0.20250101
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 +11 -3
- 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://workloadmanager.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250101
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -91,7 +91,7 @@ declare namespace gapi.client {
|
|
|
91
91
|
name?: string;
|
|
92
92
|
/** Output only. Additional information generated by the execution */
|
|
93
93
|
notices?: Notice[];
|
|
94
|
-
/** Output only. [Output only] Result summary */
|
|
94
|
+
/** Output only. [Output only] Result summary for the execution */
|
|
95
95
|
resultSummary?: Summary;
|
|
96
96
|
/** Output only. execution result summary per rule */
|
|
97
97
|
ruleResults?: RuleExecutionResult[];
|
|
@@ -331,8 +331,10 @@ declare namespace gapi.client {
|
|
|
331
331
|
haHosts?: string[];
|
|
332
332
|
/** Required. Pantheon Project in which the resources reside. */
|
|
333
333
|
hostProject?: string;
|
|
334
|
+
/** Optional. The region this component's resources are primarily located in. */
|
|
335
|
+
region?: string;
|
|
334
336
|
/** Optional. A list of replication sites used in Disaster Recovery (DR) configurations. */
|
|
335
|
-
replicationSites?:
|
|
337
|
+
replicationSites?: SapDiscoveryComponentReplicationSite[];
|
|
336
338
|
/** Optional. The resources in a component. */
|
|
337
339
|
resources?: SapDiscoveryResource[];
|
|
338
340
|
/** Optional. The SAP identifier, used by the SAP software and helps differentiate systems for customers. */
|
|
@@ -372,6 +374,12 @@ declare namespace gapi.client {
|
|
|
372
374
|
/** Optional. URI of the recognized shared NFS of the database. May be empty if the database has only a single node. */
|
|
373
375
|
sharedNfsUri?: string;
|
|
374
376
|
}
|
|
377
|
+
interface SapDiscoveryComponentReplicationSite {
|
|
378
|
+
/** Optional. The system component for the site. */
|
|
379
|
+
component?: SapDiscoveryComponent;
|
|
380
|
+
/** Optional. The name of the source site from which this one replicates. */
|
|
381
|
+
sourceSite?: string;
|
|
382
|
+
}
|
|
375
383
|
interface SapDiscoveryMetadata {
|
|
376
384
|
/** Optional. Customer region string for customer's use. Does not represent GCP region. */
|
|
377
385
|
customerRegion?: string;
|