@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20240306 → 0.0.20240322
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: 20240322
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -287,18 +287,22 @@ declare namespace gapi.client {
|
|
|
287
287
|
interface SapDiscoveryComponentApplicationProperties {
|
|
288
288
|
/** Optional. Indicates whether this is a Java or ABAP Netweaver instance. true means it is ABAP, false means it is Java. */
|
|
289
289
|
abap?: boolean;
|
|
290
|
+
/** Optional. Instance number of the SAP application instance. */
|
|
291
|
+
appInstanceNumber?: string;
|
|
290
292
|
/** Required. Type of the application. Netweaver, etc. */
|
|
291
293
|
applicationType?: string;
|
|
294
|
+
/** Optional. Instance number of the ASCS instance. */
|
|
295
|
+
ascsInstanceNumber?: string;
|
|
292
296
|
/** Optional. Resource URI of the recognized ASCS host of the application. */
|
|
293
297
|
ascsUri?: string;
|
|
294
|
-
/** Optional. Instance number of the SAP instance. */
|
|
295
|
-
instanceNumber?: string;
|
|
296
298
|
/** Optional. Kernel version for Netweaver running in the system. */
|
|
297
299
|
kernelVersion?: string;
|
|
298
300
|
/** Optional. Resource URI of the recognized shared NFS of the application. May be empty if the application server has only a single node. */
|
|
299
301
|
nfsUri?: string;
|
|
300
302
|
}
|
|
301
303
|
interface SapDiscoveryComponentDatabaseProperties {
|
|
304
|
+
/** Optional. SID of the system database. */
|
|
305
|
+
databaseSid?: string;
|
|
302
306
|
/** Required. Type of the database. HANA, DB2, etc. */
|
|
303
307
|
databaseType?: string;
|
|
304
308
|
/** Optional. The version of the database software running in the system. */
|
|
@@ -337,6 +341,8 @@ declare namespace gapi.client {
|
|
|
337
341
|
interface SapDiscoveryResourceInstanceProperties {
|
|
338
342
|
/** Optional. A list of instance URIs that are part of a cluster with this one. */
|
|
339
343
|
clusterInstances?: string[];
|
|
344
|
+
/** Optional. The VM's instance number. */
|
|
345
|
+
instanceNumber?: string;
|
|
340
346
|
/** Optional. A virtual hostname of the instance if it has one. */
|
|
341
347
|
virtualHostname?: string;
|
|
342
348
|
}
|
|
@@ -735,6 +741,8 @@ declare namespace gapi.client {
|
|
|
735
741
|
callback?: string;
|
|
736
742
|
/** Selector specifying which fields to include in a partial response. */
|
|
737
743
|
fields?: string;
|
|
744
|
+
/** Optional. Followed the best practice from https://aip.dev/135#cascading-delete */
|
|
745
|
+
force?: boolean;
|
|
738
746
|
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
739
747
|
key?: string;
|
|
740
748
|
/** Required. Name of the resource */
|