@maxim_mazurok/gapi.client.workloadmanager-v1 0.1.20260128 → 0.1.20260217
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 +704 -112
- 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: 20260217
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -28,10 +28,58 @@ declare namespace gapi.client {
|
|
|
28
28
|
): void;
|
|
29
29
|
|
|
30
30
|
namespace workloadmanager {
|
|
31
|
+
interface ActiveDirectory {
|
|
32
|
+
/** Optional. DNS IP address */
|
|
33
|
+
dnsAddress?: string;
|
|
34
|
+
/** Optional. human readable form of a domain such as “google.com”. */
|
|
35
|
+
domain?: string;
|
|
36
|
+
/** Optional. domain username */
|
|
37
|
+
domainUsername?: string;
|
|
38
|
+
/** Required. secret_manager_secret */
|
|
39
|
+
secretManagerSecret?: string;
|
|
40
|
+
/** Required. active directory type */
|
|
41
|
+
type?: string;
|
|
42
|
+
}
|
|
43
|
+
interface Actuation {
|
|
44
|
+
/** Output only. [Output only] Actuation output */
|
|
45
|
+
actuationOutput?: ActuationOutput;
|
|
46
|
+
/** Output only. [Output only] Deployment output */
|
|
47
|
+
deploymentOutput?: DeploymentOutput[];
|
|
48
|
+
/** Output only. [Output only] End time stamp */
|
|
49
|
+
endTime?: string;
|
|
50
|
+
/** The name of actuation resource. The format is projects/{project}/locations/{location}/deployments/{deployment}/actuations/{actuation} */
|
|
51
|
+
name?: string;
|
|
52
|
+
/** Output only. [Output only] Start time stamp */
|
|
53
|
+
startTime?: string;
|
|
54
|
+
/** Output only. [Output only] Actuation state */
|
|
55
|
+
state?: string;
|
|
56
|
+
}
|
|
57
|
+
interface ActuationOutput {
|
|
58
|
+
/** A link to gcs file that store build logs */
|
|
59
|
+
actuateLogs?: string;
|
|
60
|
+
/** Output only. error message return from ansible. */
|
|
61
|
+
ansibleError?: string;
|
|
62
|
+
/** Output only. failed task name return from ansible. */
|
|
63
|
+
ansibleFailedTask?: string[];
|
|
64
|
+
/** reference to Blueprint Controller deployment and revision resource */
|
|
65
|
+
blueprintId?: string;
|
|
66
|
+
/** Cloud Build instance UUID associated with this revision, without any suffix or prefix */
|
|
67
|
+
cloudbuildId?: string;
|
|
68
|
+
/** Output only. Code describing any errors that may have occurred. If not specified, there is no error in actuation. */
|
|
69
|
+
errorCode?: string;
|
|
70
|
+
/** A link to actuation cloud build log. */
|
|
71
|
+
errorLogs?: string;
|
|
72
|
+
/** Output only. whether the error message is user facing. If true, the error message will be shown in the UI. */
|
|
73
|
+
hasUserFacingErrorMsg?: boolean;
|
|
74
|
+
/** Output only. error message return from terraform. */
|
|
75
|
+
terraformError?: string;
|
|
76
|
+
/** reference to terraform template used */
|
|
77
|
+
terraformTemplate?: string;
|
|
78
|
+
}
|
|
31
79
|
interface AgentCommand {
|
|
32
|
-
/**
|
|
80
|
+
/** The name of the agent one-time executable that will be invoked. */
|
|
33
81
|
command?: string;
|
|
34
|
-
/**
|
|
82
|
+
/** A map of key/value pairs that can be used to specify additional one-time executable settings. */
|
|
35
83
|
parameters?: {[P in string]: string};
|
|
36
84
|
}
|
|
37
85
|
interface AgentStates {
|
|
@@ -112,6 +160,40 @@ declare namespace gapi.client {
|
|
|
112
160
|
/** Output only. The message to display when the service state is unspecified. */
|
|
113
161
|
unspecifiedStateMessage?: string;
|
|
114
162
|
}
|
|
163
|
+
interface AppDetails {
|
|
164
|
+
/** Optional. instance id for app */
|
|
165
|
+
appInstanceId?: string;
|
|
166
|
+
/** Application service account - let custoemrs bring their own SA for application */
|
|
167
|
+
appServiceAccount?: string;
|
|
168
|
+
/** Optional. Customized vm names */
|
|
169
|
+
appVmNames?: string[];
|
|
170
|
+
/** Required. image for ascs server */
|
|
171
|
+
ascsImage?: string;
|
|
172
|
+
/** Optional. instance id for ascs */
|
|
173
|
+
ascsInstanceId?: string;
|
|
174
|
+
/** Required. ascs_machine_type */
|
|
175
|
+
ascsMachineType?: string;
|
|
176
|
+
/** ASCS service account - let custoemrs bring their own SA for ASCS */
|
|
177
|
+
ascsServiceAccount?: string;
|
|
178
|
+
/** Optional. ASCS vm name */
|
|
179
|
+
ascsVm?: string;
|
|
180
|
+
/** Optional. instance id for ers */
|
|
181
|
+
ersInstanceId?: string;
|
|
182
|
+
/** Optional. ERS vm name */
|
|
183
|
+
ersVm?: string;
|
|
184
|
+
/** Required. image for app server and ascs server */
|
|
185
|
+
image?: string;
|
|
186
|
+
/** Required. machine type */
|
|
187
|
+
machineType?: string;
|
|
188
|
+
/** Required. secret_manager_secret */
|
|
189
|
+
secretManagerSecret?: string;
|
|
190
|
+
/** Optional. Storage location */
|
|
191
|
+
sharedStorage?: string;
|
|
192
|
+
/** Required. The SAP SID is a three-digit server-specific unique identification code. */
|
|
193
|
+
sid?: string;
|
|
194
|
+
/** Required. vms_multiplier */
|
|
195
|
+
vmsMultiplier?: number;
|
|
196
|
+
}
|
|
115
197
|
interface BackupProperties {
|
|
116
198
|
/** Output only. The state of the latest backup. */
|
|
117
199
|
latestBackupStatus?: string;
|
|
@@ -119,9 +201,9 @@ declare namespace gapi.client {
|
|
|
119
201
|
latestBackupTime?: string;
|
|
120
202
|
}
|
|
121
203
|
interface BigQueryDestination {
|
|
122
|
-
/** Optional.
|
|
204
|
+
/** Optional. Determines if a new results table will be created when an Execution is created. */
|
|
123
205
|
createNewResultsTable?: boolean;
|
|
124
|
-
/** Optional.
|
|
206
|
+
/** Optional. Destination dataset to save evaluation results. */
|
|
125
207
|
destinationDataset?: string;
|
|
126
208
|
}
|
|
127
209
|
interface CancelOperationRequest {}
|
|
@@ -151,69 +233,141 @@ declare namespace gapi.client {
|
|
|
151
233
|
/** Sub component health. */
|
|
152
234
|
subComponentsHealth?: ComponentHealth[];
|
|
153
235
|
}
|
|
236
|
+
interface Database {
|
|
237
|
+
/** Required. disk_type */
|
|
238
|
+
diskType?: string;
|
|
239
|
+
/** Optional. only useful for Linux High Availability setup */
|
|
240
|
+
floatingIpAddress?: string;
|
|
241
|
+
/** Required. machine type */
|
|
242
|
+
machineType?: string;
|
|
243
|
+
/** Optional. the name of a secondary-sole-tenant node/node group */
|
|
244
|
+
secondarySoleTenantNode?: string;
|
|
245
|
+
/** Optional. the type of a secondary-sole-tenant node/node group e.g. compute.googleapis.com/node-name */
|
|
246
|
+
secondarySoleTenantNodeType?: string;
|
|
247
|
+
/** Required. secret_manager_secret */
|
|
248
|
+
secretManagerSecret?: string;
|
|
249
|
+
/** Required. whether simultaneous multithreading is enabled or not */
|
|
250
|
+
smt?: boolean;
|
|
251
|
+
/** Optional. the name of a primary sole-tenant node/node group */
|
|
252
|
+
soleTenantNode?: string;
|
|
253
|
+
/** Optional. the type of a primary sole-tenant node/node group e.g. compute.googleapis.com/node-name */
|
|
254
|
+
soleTenantNodeType?: string;
|
|
255
|
+
/** Required. whether to have TempDB on local SSD */
|
|
256
|
+
tempdbOnSsd?: boolean;
|
|
257
|
+
/** Required. SHARED or SOLE_TENANT */
|
|
258
|
+
tenancyModel?: string;
|
|
259
|
+
}
|
|
260
|
+
interface DatabaseDetails {
|
|
261
|
+
/** Database service account - let custoemrs bring their own SA for database */
|
|
262
|
+
databaseServiceAccount?: string;
|
|
263
|
+
/** Required. disk_type */
|
|
264
|
+
diskType?: string;
|
|
265
|
+
/** Required. image for database server */
|
|
266
|
+
image?: string;
|
|
267
|
+
/** Optional. instance id */
|
|
268
|
+
instanceId?: string;
|
|
269
|
+
/** Required. machine type */
|
|
270
|
+
machineType?: string;
|
|
271
|
+
/** Optional. primary db vm name */
|
|
272
|
+
primaryDbVm?: string;
|
|
273
|
+
/** Optional. secondary db vm name */
|
|
274
|
+
secondaryDbVm?: string;
|
|
275
|
+
/** Required. secret_manager_secret */
|
|
276
|
+
secretManagerSecret?: string;
|
|
277
|
+
/** Required. The SID is a three-digit server-specific unique identification code. */
|
|
278
|
+
sid?: string;
|
|
279
|
+
}
|
|
154
280
|
interface DatabaseProperties {
|
|
155
281
|
/** Output only. Backup properties. */
|
|
156
282
|
backupProperties?: BackupProperties;
|
|
157
283
|
/** Output only. Type of the database. `HANA`, `DB2`, etc. */
|
|
158
284
|
databaseType?: string;
|
|
159
285
|
}
|
|
286
|
+
interface Deployment {
|
|
287
|
+
/** Output only. [Output only] Create time stamp */
|
|
288
|
+
createTime?: string;
|
|
289
|
+
/** Description of the Deployment */
|
|
290
|
+
description?: string;
|
|
291
|
+
/** The name of deployment resource. The format will be 'projects/{project_id}/locations/{location_id}/deployments/{deployment_id}' */
|
|
292
|
+
name?: string;
|
|
293
|
+
/** SAP system workload input */
|
|
294
|
+
sapSystemS4Config?: SapSystemS4Config;
|
|
295
|
+
/** User-specified Service Account (SA) credentials to be used for cloud build Format: `projects/{projectID}/serviceAccounts/{serviceAccount}` The default Cloud Build SA will be used initially if this field is not set during deployment creation */
|
|
296
|
+
serviceAccount?: string;
|
|
297
|
+
/** MS SQL workload input */
|
|
298
|
+
sqlServerWorkload?: SqlServerWorkload;
|
|
299
|
+
/** Output only. Current state of the deployment. */
|
|
300
|
+
state?: string;
|
|
301
|
+
/** Optional. terraform_variables represents all the Terraform variables for the deployment workload. The key is the name of the Terraform variable, and the value is the TerraformVariable. For example: { "project_id": { "input_value": { "string_value": "my-project-id" } }, "zone": { "input_value": { "string_value": "us-central1-a" } } } */
|
|
302
|
+
terraformVariables?: {[P in string]: TerraformVariable};
|
|
303
|
+
/** Output only. [Output only] Update time stamp */
|
|
304
|
+
updateTime?: string;
|
|
305
|
+
/** Optional. The user-specified Cloud Build worker pool resource in which the Cloud Build job will execute. Format: `projects/{project}/locations/{location}/workerPools/{workerPoolId}`. If this field is unspecified, the default Cloud Build worker pool will be used. */
|
|
306
|
+
workerPool?: string;
|
|
307
|
+
/** Optional. Workload type of the deployment */
|
|
308
|
+
workloadType?: string;
|
|
309
|
+
}
|
|
310
|
+
interface DeploymentOutput {
|
|
311
|
+
/** name of the resource */
|
|
312
|
+
name?: string;
|
|
313
|
+
/** type of the resource */
|
|
314
|
+
type?: string;
|
|
315
|
+
}
|
|
160
316
|
interface Empty {}
|
|
161
317
|
interface Evaluation {
|
|
162
|
-
/** Optional. BigQuery destination */
|
|
318
|
+
/** Optional. The BigQuery destination for detailed evaluation results. If this field is specified, the results of each evaluation execution are exported to BigQuery. */
|
|
163
319
|
bigQueryDestination?: BigQueryDestination;
|
|
164
|
-
/** Output only. [Output only] Create time stamp */
|
|
320
|
+
/** Output only. [Output only] Create time stamp. */
|
|
165
321
|
createTime?: string;
|
|
166
322
|
/** The Cloud Storage bucket name for custom rules. */
|
|
167
323
|
customRulesBucket?: string;
|
|
168
|
-
/** Description of the Evaluation */
|
|
324
|
+
/** Description of the Evaluation. */
|
|
169
325
|
description?: string;
|
|
170
|
-
/** Evaluation type */
|
|
326
|
+
/** Evaluation type. */
|
|
171
327
|
evaluationType?: string;
|
|
172
|
-
/** Optional. Immutable. Customer-managed encryption key name, in the format projects/*/locations/*/keyRings/*/cryptoKeys/*. */
|
|
328
|
+
/** Optional. Immutable. Customer-managed encryption key name, in the format projects/*/locations/*/keyRings/*/cryptoKeys/*. The key will be used for CMEK encryption of the evaluation resource. */
|
|
173
329
|
kmsKey?: string;
|
|
174
|
-
/** Labels as key value pairs */
|
|
330
|
+
/** Labels as key value pairs. */
|
|
175
331
|
labels?: {[P in string]: string};
|
|
176
|
-
/**
|
|
332
|
+
/** Name of resource that has the form `projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}`. */
|
|
177
333
|
name?: string;
|
|
178
|
-
/**
|
|
334
|
+
/** Resource filter for an evaluation defining the scope of resources to be evaluated. */
|
|
179
335
|
resourceFilter?: ResourceFilter;
|
|
180
|
-
/** Output only. [Output only] The
|
|
336
|
+
/** Output only. [Output only] The current lifecycle state of the evaluation resource. */
|
|
181
337
|
resourceStatus?: ResourceStatus;
|
|
182
|
-
/**
|
|
338
|
+
/** The names of the rules used for this evaluation. */
|
|
183
339
|
ruleNames?: string[];
|
|
184
|
-
/**
|
|
185
|
-
ruleVersions?: string[];
|
|
186
|
-
/** crontab format schedule for scheduled evaluation, currently only support the following schedule: "0 */1 * * *", "0 */6 * * *", "0 */12 * * *", "0 0 */1 * *", "0 0 */7 * *", */
|
|
340
|
+
/** Crontab format schedule for scheduled evaluation, currently only supports the following fixed schedules: * `0 */1 * * *` # Hourly * `0 */6 * * *` # Every 6 hours * `0 */12 * * *` # Every 12 hours * `0 0 */1 * *` # Daily * `0 0 */7 * *` # Weekly * `0 0 */14 * *` # Every 14 days * `0 0 1 */1 *` # Monthly */
|
|
187
341
|
schedule?: string;
|
|
188
|
-
/** Output only. [Output only] Update time stamp */
|
|
342
|
+
/** Output only. [Output only] Update time stamp. */
|
|
189
343
|
updateTime?: string;
|
|
190
344
|
}
|
|
191
345
|
interface Execution {
|
|
192
|
-
/** Output only. [Output only] End time stamp */
|
|
346
|
+
/** Output only. [Output only] End time stamp. */
|
|
193
347
|
endTime?: string;
|
|
194
|
-
/** Optional. Engine */
|
|
348
|
+
/** Optional. Engine. */
|
|
195
349
|
engine?: string;
|
|
196
|
-
/** Output only. [Output only] Evaluation ID */
|
|
350
|
+
/** Output only. [Output only] Evaluation ID. */
|
|
197
351
|
evaluationId?: string;
|
|
198
|
-
/** Optional. External data sources */
|
|
352
|
+
/** Optional. External data sources. */
|
|
199
353
|
externalDataSources?: ExternalDataSources[];
|
|
200
|
-
/** Output only. [Output only] Inventory time stamp */
|
|
354
|
+
/** Output only. [Output only] Inventory time stamp. */
|
|
201
355
|
inventoryTime?: string;
|
|
202
|
-
/** Labels as key value pairs */
|
|
356
|
+
/** Labels as key value pairs. */
|
|
203
357
|
labels?: {[P in string]: string};
|
|
204
|
-
/** The name of execution resource. The format is projects/{project}/locations/{location}/evaluations/{evaluation}/executions/{execution} */
|
|
358
|
+
/** The name of execution resource. The format is projects/{project}/locations/{location}/evaluations/{evaluation}/executions/{execution}. */
|
|
205
359
|
name?: string;
|
|
206
|
-
/** Output only. Additional information generated by the execution */
|
|
360
|
+
/** Output only. Additional information generated by the execution. */
|
|
207
361
|
notices?: Notice[];
|
|
208
|
-
/** Output only. [Output only] Result summary for the execution */
|
|
362
|
+
/** Output only. [Output only] Result summary for the execution. */
|
|
209
363
|
resultSummary?: Summary;
|
|
210
|
-
/** Output only.
|
|
364
|
+
/** Output only. Execution result summary per rule. */
|
|
211
365
|
ruleResults?: RuleExecutionResult[];
|
|
212
|
-
/**
|
|
366
|
+
/** Type which represents whether the execution executed directly by user or scheduled according to the `Evaluation.schedule` field. */
|
|
213
367
|
runType?: string;
|
|
214
|
-
/** Output only. [Output only] Start time stamp */
|
|
368
|
+
/** Output only. [Output only] Start time stamp. */
|
|
215
369
|
startTime?: string;
|
|
216
|
-
/** Output only. [Output only] State */
|
|
370
|
+
/** Output only. [Output only] State. */
|
|
217
371
|
state?: string;
|
|
218
372
|
}
|
|
219
373
|
interface ExecutionResult {
|
|
@@ -227,7 +381,7 @@ declare namespace gapi.client {
|
|
|
227
381
|
rule?: string;
|
|
228
382
|
/** The severity of violation. */
|
|
229
383
|
severity?: string;
|
|
230
|
-
/** Execution result type of the scanned resource */
|
|
384
|
+
/** Execution result type of the scanned resource. */
|
|
231
385
|
type?: string;
|
|
232
386
|
/** The details of violation in an evaluation result. */
|
|
233
387
|
violationDetails?: ViolationDetails;
|
|
@@ -237,15 +391,15 @@ declare namespace gapi.client {
|
|
|
237
391
|
interface ExternalDataSources {
|
|
238
392
|
/** Required. The asset type of the external data source. This can be a supported Cloud Asset Inventory asset type (see https://cloud.google.com/asset-inventory/docs/supported-asset-types) to override the default asset type, or it can be a custom type defined by the user. */
|
|
239
393
|
assetType?: string;
|
|
240
|
-
/** Optional. Name of external data source. The name will be used inside the rego/sql to refer the external data */
|
|
394
|
+
/** Optional. Name of external data source. The name will be used inside the rego/sql to refer the external data. */
|
|
241
395
|
name?: string;
|
|
242
|
-
/** Required. Type of external data source */
|
|
396
|
+
/** Required. Type of external data source. */
|
|
243
397
|
type?: string;
|
|
244
|
-
/** Required. URI of external data source. example of bq table {project_ID}.{dataset_ID}.{table_ID} */
|
|
398
|
+
/** Required. URI of external data source. example of bq table {project_ID}.{dataset_ID}.{table_ID}. */
|
|
245
399
|
uri?: string;
|
|
246
400
|
}
|
|
247
401
|
interface GceInstanceFilter {
|
|
248
|
-
/**
|
|
402
|
+
/** If non-empty, only Compute Engine instances associated with at least one of the provided service accounts will be included in the evaluation. */
|
|
249
403
|
serviceAccounts?: string[];
|
|
250
404
|
}
|
|
251
405
|
interface HealthCheck {
|
|
@@ -298,19 +452,21 @@ declare namespace gapi.client {
|
|
|
298
452
|
/** Optional. the next maintenance event on VM */
|
|
299
453
|
upcomingMaintenanceEvent?: UpcomingMaintenanceEvent;
|
|
300
454
|
}
|
|
301
|
-
interface
|
|
302
|
-
/**
|
|
303
|
-
|
|
304
|
-
/**
|
|
305
|
-
|
|
306
|
-
/**
|
|
307
|
-
|
|
308
|
-
/** The error message of valdating rule formats. */
|
|
309
|
-
valiadtionError?: string;
|
|
455
|
+
interface ListActuationsResponse {
|
|
456
|
+
/** The list of Actuation */
|
|
457
|
+
actuations?: Actuation[];
|
|
458
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
459
|
+
nextPageToken?: string;
|
|
460
|
+
/** Unordered list. Locations that could not be reached. */
|
|
461
|
+
unreachable?: string[];
|
|
310
462
|
}
|
|
311
|
-
interface
|
|
312
|
-
/** The
|
|
313
|
-
|
|
463
|
+
interface ListDeploymentsResponse {
|
|
464
|
+
/** The list of Deployment */
|
|
465
|
+
deployments?: Deployment[];
|
|
466
|
+
/** A token identifying a page of results the server should return. */
|
|
467
|
+
nextPageToken?: string;
|
|
468
|
+
/** Unordered list. Locations that could not be reached. */
|
|
469
|
+
unreachable?: string[];
|
|
314
470
|
}
|
|
315
471
|
interface ListDiscoveredProfilesResponse {
|
|
316
472
|
/** Output only. A token identifying a page of results the server should return */
|
|
@@ -321,7 +477,7 @@ declare namespace gapi.client {
|
|
|
321
477
|
workloadProfiles?: WorkloadProfile[];
|
|
322
478
|
}
|
|
323
479
|
interface ListEvaluationsResponse {
|
|
324
|
-
/** The list of
|
|
480
|
+
/** The list of evaluations. */
|
|
325
481
|
evaluations?: Evaluation[];
|
|
326
482
|
/** A token identifying a page of results the server should return. */
|
|
327
483
|
nextPageToken?: string;
|
|
@@ -335,7 +491,7 @@ declare namespace gapi.client {
|
|
|
335
491
|
nextPageToken?: string;
|
|
336
492
|
}
|
|
337
493
|
interface ListExecutionsResponse {
|
|
338
|
-
/** The list of Execution */
|
|
494
|
+
/** The list of Execution. */
|
|
339
495
|
executions?: Execution[];
|
|
340
496
|
/** A token identifying a page of results the server should return. */
|
|
341
497
|
nextPageToken?: string;
|
|
@@ -357,15 +513,13 @@ declare namespace gapi.client {
|
|
|
357
513
|
unreachable?: string[];
|
|
358
514
|
}
|
|
359
515
|
interface ListRulesResponse {
|
|
360
|
-
/**
|
|
361
|
-
invalidRulesWrapper?: InvalidRulesWrapper;
|
|
362
|
-
/** all rules in response */
|
|
516
|
+
/** All rules in response. */
|
|
363
517
|
rules?: Rule[];
|
|
364
518
|
}
|
|
365
519
|
interface ListScannedResourcesResponse {
|
|
366
520
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
367
521
|
nextPageToken?: string;
|
|
368
|
-
/** All scanned resources in response */
|
|
522
|
+
/** All scanned resources in response. */
|
|
369
523
|
scannedResources?: ScannedResource[];
|
|
370
524
|
}
|
|
371
525
|
interface Location {
|
|
@@ -380,8 +534,33 @@ declare namespace gapi.client {
|
|
|
380
534
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
381
535
|
name?: string;
|
|
382
536
|
}
|
|
537
|
+
interface LocationDetails {
|
|
538
|
+
/** Optional. create firewall, if true, create firewall for the deployment. This field provides an option to not always create firewall for the deployment. */
|
|
539
|
+
createCommsFirewall?: boolean;
|
|
540
|
+
/** Optional. network tags */
|
|
541
|
+
customTags?: string[];
|
|
542
|
+
/** Optional. when user skip DNS configuration from UI, deployment_dns_enabled=false otherwise deployment_dns_enabled=true */
|
|
543
|
+
deploymentDnsEnabled?: boolean;
|
|
544
|
+
/** Optional. dns zone name */
|
|
545
|
+
dnsZone?: string;
|
|
546
|
+
/** Optional. dns_zone_name_suffix */
|
|
547
|
+
dnsZoneNameSuffix?: string;
|
|
548
|
+
internetAccess?: string;
|
|
549
|
+
/** Optional. network project */
|
|
550
|
+
networkProject?: string;
|
|
551
|
+
/** Required. region_name */
|
|
552
|
+
regionName?: string;
|
|
553
|
+
/** Required. subnet_name */
|
|
554
|
+
subnetName?: string;
|
|
555
|
+
/** Required. vpc_name */
|
|
556
|
+
vpcName?: string;
|
|
557
|
+
/** Required. zone1_name */
|
|
558
|
+
zone1Name?: string;
|
|
559
|
+
/** Optional. zone2_name */
|
|
560
|
+
zone2Name?: string;
|
|
561
|
+
}
|
|
383
562
|
interface Notice {
|
|
384
|
-
/** Output only. Message of the notice */
|
|
563
|
+
/** Output only. Message of the notice. */
|
|
385
564
|
message?: string;
|
|
386
565
|
}
|
|
387
566
|
interface OpenShiftValidation {
|
|
@@ -418,6 +597,20 @@ declare namespace gapi.client {
|
|
|
418
597
|
/** Output only. Name of the verb executed by the operation. */
|
|
419
598
|
verb?: string;
|
|
420
599
|
}
|
|
600
|
+
interface Pacemaker {
|
|
601
|
+
/** Required. bucket location for node certificates */
|
|
602
|
+
bucketNameNodeCertificates?: string;
|
|
603
|
+
/** Required. pacemaker cluster name */
|
|
604
|
+
pacemakerCluster?: string;
|
|
605
|
+
/** Required. pacemaker cluster secret name */
|
|
606
|
+
pacemakerClusterSecret?: string;
|
|
607
|
+
/** Required. pacemaker cluster username */
|
|
608
|
+
pacemakerClusterUsername?: string;
|
|
609
|
+
/** Required. sql pacemaker secret name */
|
|
610
|
+
sqlPacemakerSecret?: string;
|
|
611
|
+
/** Required. sql pacemaker username */
|
|
612
|
+
sqlPacemakerUsername?: string;
|
|
613
|
+
}
|
|
421
614
|
interface Product {
|
|
422
615
|
/** Optional. Name of the product. */
|
|
423
616
|
name?: string;
|
|
@@ -433,59 +626,57 @@ declare namespace gapi.client {
|
|
|
433
626
|
type?: string;
|
|
434
627
|
}
|
|
435
628
|
interface ResourceFilter {
|
|
436
|
-
/** Filter compute engine
|
|
629
|
+
/** Filter compute engine resources. */
|
|
437
630
|
gceInstanceFilter?: GceInstanceFilter;
|
|
438
|
-
/**
|
|
631
|
+
/** Labels to filter resources by. Each key-value pair in the map must exist on the resource for it to be included (e.g. VM instance labels). For example, specifying `{ "env": "prod", "database": "nosql" }` will only include resources that have labels `env=prod` and `database=nosql`. */
|
|
439
632
|
inclusionLabels?: {[P in string]: string};
|
|
440
|
-
/** The id pattern
|
|
633
|
+
/** The pattern to filter resources by their id For example, a pattern of ".*prod-cluster.*" will match all resources that contain "prod-cluster" in their ID. */
|
|
441
634
|
resourceIdPatterns?: string[];
|
|
442
|
-
/** The scopes of evaluation resource */
|
|
635
|
+
/** The scopes of evaluation resource. Format: * `projects/{project_id}` * `folders/{folder_id}` * `organizations/{organization_id}` */
|
|
443
636
|
scopes?: string[];
|
|
444
637
|
}
|
|
445
638
|
interface ResourceStatus {
|
|
446
|
-
/**
|
|
447
|
-
rulesNewerVersions?: string[];
|
|
448
|
-
/** State of the resource */
|
|
639
|
+
/** State of the Evaluation resource. */
|
|
449
640
|
state?: string;
|
|
450
641
|
}
|
|
451
642
|
interface Rule {
|
|
452
643
|
/** The CAI asset type of the rule is evaluating, for joined asset types, it will be the corresponding primary asset types. */
|
|
453
644
|
assetType?: string;
|
|
454
|
-
/**
|
|
645
|
+
/** Describe rule in plain language. */
|
|
455
646
|
description?: string;
|
|
456
|
-
/**
|
|
647
|
+
/** The name display in UI. */
|
|
457
648
|
displayName?: string;
|
|
458
|
-
/**
|
|
649
|
+
/** The message template for rule. */
|
|
459
650
|
errorMessage?: string;
|
|
460
|
-
/**
|
|
651
|
+
/** Rule name. */
|
|
461
652
|
name?: string;
|
|
462
|
-
/**
|
|
653
|
+
/** The primary category. */
|
|
463
654
|
primaryCategory?: string;
|
|
464
|
-
/**
|
|
655
|
+
/** The remediation for the rule. */
|
|
465
656
|
remediation?: string;
|
|
466
|
-
/** Output only.
|
|
657
|
+
/** Output only. The version of the rule. */
|
|
467
658
|
revisionId?: string;
|
|
468
659
|
/** The type of the rule. */
|
|
469
660
|
ruleType?: string;
|
|
470
|
-
/**
|
|
661
|
+
/** The secondary category. */
|
|
471
662
|
secondaryCategory?: string;
|
|
472
|
-
/**
|
|
663
|
+
/** The severity of the rule. */
|
|
473
664
|
severity?: string;
|
|
474
|
-
/** List of user-defined tags */
|
|
665
|
+
/** List of user-defined tags. */
|
|
475
666
|
tags?: string[];
|
|
476
|
-
/**
|
|
667
|
+
/** The document url for the rule. */
|
|
477
668
|
uri?: string;
|
|
478
669
|
}
|
|
479
670
|
interface RuleExecutionResult {
|
|
480
|
-
/** Execution message, if any */
|
|
671
|
+
/** Execution message, if any. */
|
|
481
672
|
message?: string;
|
|
482
|
-
/** Number of violations */
|
|
673
|
+
/** Number of violations. */
|
|
483
674
|
resultCount?: string;
|
|
484
|
-
/**
|
|
675
|
+
/** Rule name as plain text like `sap-hana-configured`. */
|
|
485
676
|
rule?: string;
|
|
486
|
-
/** Number of total scanned resources */
|
|
677
|
+
/** Number of total scanned resources. */
|
|
487
678
|
scannedResourceCount?: string;
|
|
488
|
-
/** Output only. The execution status */
|
|
679
|
+
/** Output only. The execution status. */
|
|
489
680
|
state?: string;
|
|
490
681
|
}
|
|
491
682
|
interface RuleOutput {
|
|
@@ -495,9 +686,9 @@ declare namespace gapi.client {
|
|
|
495
686
|
message?: string;
|
|
496
687
|
}
|
|
497
688
|
interface RunEvaluationRequest {
|
|
498
|
-
/** Required. The resource being created */
|
|
689
|
+
/** Required. The resource being created. */
|
|
499
690
|
execution?: Execution;
|
|
500
|
-
/** Required.
|
|
691
|
+
/** Required. ID of the execution which will be created. */
|
|
501
692
|
executionId?: string;
|
|
502
693
|
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
503
694
|
requestId?: string;
|
|
@@ -696,6 +887,33 @@ declare namespace gapi.client {
|
|
|
696
887
|
/** Optional. SAP Instance numbers. They are from '00' to '99'. */
|
|
697
888
|
numbers?: string[];
|
|
698
889
|
}
|
|
890
|
+
interface SapSystemS4Config {
|
|
891
|
+
allowStoppingForUpdate?: boolean;
|
|
892
|
+
/** Ansible runner service account - let custoemrs bring their own SA for Ansible runner */
|
|
893
|
+
ansibleRunnerServiceAccount?: string;
|
|
894
|
+
/** instance details */
|
|
895
|
+
app?: AppDetails;
|
|
896
|
+
/** database details */
|
|
897
|
+
database?: DatabaseDetails;
|
|
898
|
+
/** Required. two model non-HA and HA supported */
|
|
899
|
+
deploymentModel?: string;
|
|
900
|
+
/** Required. deployment environment */
|
|
901
|
+
environmentType?: string;
|
|
902
|
+
/** the project that infrastructure deployed, current only support the same project where the deployment resource exist. */
|
|
903
|
+
gcpProjectId?: string;
|
|
904
|
+
/** database details */
|
|
905
|
+
location?: LocationDetails;
|
|
906
|
+
/** Required. media_bucket_name */
|
|
907
|
+
mediaBucketName?: string;
|
|
908
|
+
/** Optional. sap_boot_disk_image */
|
|
909
|
+
sapBootDiskImage?: string;
|
|
910
|
+
/** Required. support scale up and scale out */
|
|
911
|
+
scalingMethod?: string;
|
|
912
|
+
/** Required. sap hana version */
|
|
913
|
+
version?: string;
|
|
914
|
+
/** vm_prefix */
|
|
915
|
+
vmPrefix?: string;
|
|
916
|
+
}
|
|
699
917
|
interface SapValidation {
|
|
700
918
|
/** Required. The project_id of the cloud project that the Insight data comes from. */
|
|
701
919
|
projectId?: string;
|
|
@@ -725,9 +943,9 @@ declare namespace gapi.client {
|
|
|
725
943
|
products?: Product[];
|
|
726
944
|
}
|
|
727
945
|
interface ScannedResource {
|
|
728
|
-
/**
|
|
946
|
+
/** Resource name. */
|
|
729
947
|
resource?: string;
|
|
730
|
-
/**
|
|
948
|
+
/** Resource type. */
|
|
731
949
|
type?: string;
|
|
732
950
|
}
|
|
733
951
|
interface ServiceStates {
|
|
@@ -737,13 +955,33 @@ declare namespace gapi.client {
|
|
|
737
955
|
state?: string;
|
|
738
956
|
}
|
|
739
957
|
interface ShellCommand {
|
|
740
|
-
/**
|
|
958
|
+
/** Arguments to be passed to the command. */
|
|
741
959
|
args?: string;
|
|
742
|
-
/**
|
|
960
|
+
/** The name of the command to be executed. */
|
|
743
961
|
command?: string;
|
|
744
962
|
/** Optional. If not specified, the default timeout is 60 seconds. */
|
|
745
963
|
timeoutSeconds?: number;
|
|
746
964
|
}
|
|
965
|
+
interface SqlLocationDetails {
|
|
966
|
+
/** Optional. create a new DNS Zone when the field is empty, Only show for `Using an existing DNS` List of existing DNS Zones tf variable name: existing_dns_zone_name */
|
|
967
|
+
dnsZone?: string;
|
|
968
|
+
/** Required. the project that infrastructure deployed, currently only supports the same project where the deployment resource exists. */
|
|
969
|
+
gcpProjectId?: string;
|
|
970
|
+
/** Required. Internet Access */
|
|
971
|
+
internetAccess?: string;
|
|
972
|
+
/** Required. network name */
|
|
973
|
+
network?: string;
|
|
974
|
+
/** Required. primary zone */
|
|
975
|
+
primaryZone?: string;
|
|
976
|
+
/** Required. region name */
|
|
977
|
+
region?: string;
|
|
978
|
+
/** Optional. secondary zone can't be same as primary_zone and is only for High Availability deployment mode */
|
|
979
|
+
secondaryZone?: string;
|
|
980
|
+
/** Required. subnetwork name */
|
|
981
|
+
subnetwork?: string;
|
|
982
|
+
/** Optional. teriary zone can't be same as primary_zone and secondary zone, and it is only for High Availability deployment mode */
|
|
983
|
+
tertiaryZone?: string;
|
|
984
|
+
}
|
|
747
985
|
interface SqlserverValidation {
|
|
748
986
|
/** Optional. The agent version collected this data point */
|
|
749
987
|
agentVersion?: string;
|
|
@@ -764,6 +1002,42 @@ declare namespace gapi.client {
|
|
|
764
1002
|
/** Optional. The Sqlserver system that the validation data is from. */
|
|
765
1003
|
type?: string;
|
|
766
1004
|
}
|
|
1005
|
+
interface SqlServerWorkload {
|
|
1006
|
+
/** Required. active directory details */
|
|
1007
|
+
activeDirectory?: ActiveDirectory;
|
|
1008
|
+
/** Compute engine service account - let customers bring their own SA for Compute engine */
|
|
1009
|
+
computeEngineServiceAccount?: string;
|
|
1010
|
+
/** Required. database details */
|
|
1011
|
+
database?: Database;
|
|
1012
|
+
/** Required. HIGH_AVAILABILITY or SINGLE_INSTANCE */
|
|
1013
|
+
deploymentModel?: string;
|
|
1014
|
+
/** Required. deployment environment */
|
|
1015
|
+
environmentType?: string;
|
|
1016
|
+
/** Optional. SHARED_DISK or S2D */
|
|
1017
|
+
fciType?: string;
|
|
1018
|
+
/** Optional. AOAG or FCI, it is only needed for High Availability deployment mode */
|
|
1019
|
+
haType?: string;
|
|
1020
|
+
/** Required. SQL licensing type */
|
|
1021
|
+
isSqlPayg?: boolean;
|
|
1022
|
+
/** Required. location details */
|
|
1023
|
+
location?: SqlLocationDetails;
|
|
1024
|
+
/** Required. name of the media storing SQL server installation files */
|
|
1025
|
+
mediaBucket?: string;
|
|
1026
|
+
/** Required. type of the operating system the SQL server is going to run on top of */
|
|
1027
|
+
operatingSystemType?: string;
|
|
1028
|
+
/** Required. the image of the operating system */
|
|
1029
|
+
osImage?: string;
|
|
1030
|
+
/** Optional. OS image type, it's used to create boot disks for VM instances When either Windows licensing type or SQL licensing type is BYOL, this option is disabled and default to custom image */
|
|
1031
|
+
osImageType?: string;
|
|
1032
|
+
/** Optional. pacemaker configuration, only applicable for Linux HA deployments */
|
|
1033
|
+
pacemaker?: Pacemaker;
|
|
1034
|
+
/** Optional. SQL Server Edition type, only applicable when Operating System is Linux */
|
|
1035
|
+
sqlServerEdition?: string;
|
|
1036
|
+
/** Optional. 2017 or 2019 or 2022 */
|
|
1037
|
+
sqlServerVersion?: string;
|
|
1038
|
+
/** Required. should be unique in the project */
|
|
1039
|
+
vmPrefix?: string;
|
|
1040
|
+
}
|
|
767
1041
|
interface Status {
|
|
768
1042
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
769
1043
|
code?: number;
|
|
@@ -773,13 +1047,17 @@ declare namespace gapi.client {
|
|
|
773
1047
|
message?: string;
|
|
774
1048
|
}
|
|
775
1049
|
interface Summary {
|
|
776
|
-
/** Output only. Number of failures */
|
|
1050
|
+
/** Output only. Number of failures. */
|
|
777
1051
|
failures?: string;
|
|
778
|
-
/** Output only. Number of new failures compared to the previous execution */
|
|
1052
|
+
/** Output only. Number of new failures compared to the previous execution. */
|
|
779
1053
|
newFailures?: string;
|
|
780
|
-
/** Output only. Number of new fixes compared to the previous execution */
|
|
1054
|
+
/** Output only. Number of new fixes compared to the previous execution. */
|
|
781
1055
|
newFixes?: string;
|
|
782
1056
|
}
|
|
1057
|
+
interface TerraformVariable {
|
|
1058
|
+
/** Optional. Input variable value. */
|
|
1059
|
+
inputValue?: any;
|
|
1060
|
+
}
|
|
783
1061
|
interface TorsoValidation {
|
|
784
1062
|
/** Required. agent_version lists the version of the agent that collected this data. */
|
|
785
1063
|
agentVersion?: string;
|
|
@@ -843,6 +1121,319 @@ declare namespace gapi.client {
|
|
|
843
1121
|
requestId?: string;
|
|
844
1122
|
}
|
|
845
1123
|
interface WriteInsightResponse {}
|
|
1124
|
+
interface ActuationsResource {
|
|
1125
|
+
/** Creates a new actuation for an existing Deployment. */
|
|
1126
|
+
create(request: {
|
|
1127
|
+
/** V1 error format. */
|
|
1128
|
+
'$.xgafv'?: string;
|
|
1129
|
+
/** OAuth access token. */
|
|
1130
|
+
access_token?: string;
|
|
1131
|
+
/** Data format for response. */
|
|
1132
|
+
alt?: string;
|
|
1133
|
+
/** JSONP */
|
|
1134
|
+
callback?: string;
|
|
1135
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1136
|
+
fields?: string;
|
|
1137
|
+
/** 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. */
|
|
1138
|
+
key?: string;
|
|
1139
|
+
/** OAuth 2.0 token for the current user. */
|
|
1140
|
+
oauth_token?: string;
|
|
1141
|
+
/** Required. The resource name of the Actuation location using the form: 'projects/{project_id}/locations/{location}/deployments/{deployment}' */
|
|
1142
|
+
parent: string;
|
|
1143
|
+
/** Returns response with indentations and line breaks. */
|
|
1144
|
+
prettyPrint?: boolean;
|
|
1145
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1146
|
+
quotaUser?: string;
|
|
1147
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1148
|
+
requestId?: string;
|
|
1149
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1150
|
+
upload_protocol?: string;
|
|
1151
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1152
|
+
uploadType?: string;
|
|
1153
|
+
/** Request body */
|
|
1154
|
+
resource: Actuation;
|
|
1155
|
+
}): Request<Operation>;
|
|
1156
|
+
create(
|
|
1157
|
+
request: {
|
|
1158
|
+
/** V1 error format. */
|
|
1159
|
+
'$.xgafv'?: string;
|
|
1160
|
+
/** OAuth access token. */
|
|
1161
|
+
access_token?: string;
|
|
1162
|
+
/** Data format for response. */
|
|
1163
|
+
alt?: string;
|
|
1164
|
+
/** JSONP */
|
|
1165
|
+
callback?: string;
|
|
1166
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1167
|
+
fields?: string;
|
|
1168
|
+
/** 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. */
|
|
1169
|
+
key?: string;
|
|
1170
|
+
/** OAuth 2.0 token for the current user. */
|
|
1171
|
+
oauth_token?: string;
|
|
1172
|
+
/** Required. The resource name of the Actuation location using the form: 'projects/{project_id}/locations/{location}/deployments/{deployment}' */
|
|
1173
|
+
parent: string;
|
|
1174
|
+
/** Returns response with indentations and line breaks. */
|
|
1175
|
+
prettyPrint?: boolean;
|
|
1176
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1177
|
+
quotaUser?: string;
|
|
1178
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1179
|
+
requestId?: string;
|
|
1180
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1181
|
+
upload_protocol?: string;
|
|
1182
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1183
|
+
uploadType?: string;
|
|
1184
|
+
},
|
|
1185
|
+
body: Actuation,
|
|
1186
|
+
): Request<Operation>;
|
|
1187
|
+
/** Deletes a single Actuation */
|
|
1188
|
+
delete(request?: {
|
|
1189
|
+
/** V1 error format. */
|
|
1190
|
+
'$.xgafv'?: string;
|
|
1191
|
+
/** OAuth access token. */
|
|
1192
|
+
access_token?: string;
|
|
1193
|
+
/** Data format for response. */
|
|
1194
|
+
alt?: string;
|
|
1195
|
+
/** JSONP */
|
|
1196
|
+
callback?: string;
|
|
1197
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1198
|
+
fields?: string;
|
|
1199
|
+
/** 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. */
|
|
1200
|
+
key?: string;
|
|
1201
|
+
/** Required. The name of the book to delete. project/{project_id}/locations/{location_id}/deployments/{deployment_id}/actuations/{actuation_id} */
|
|
1202
|
+
name: string;
|
|
1203
|
+
/** OAuth 2.0 token for the current user. */
|
|
1204
|
+
oauth_token?: string;
|
|
1205
|
+
/** Returns response with indentations and line breaks. */
|
|
1206
|
+
prettyPrint?: boolean;
|
|
1207
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1208
|
+
quotaUser?: string;
|
|
1209
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1210
|
+
upload_protocol?: string;
|
|
1211
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1212
|
+
uploadType?: string;
|
|
1213
|
+
}): Request<Operation>;
|
|
1214
|
+
/** Gets details of a single Actuation. */
|
|
1215
|
+
get(request?: {
|
|
1216
|
+
/** V1 error format. */
|
|
1217
|
+
'$.xgafv'?: string;
|
|
1218
|
+
/** OAuth access token. */
|
|
1219
|
+
access_token?: string;
|
|
1220
|
+
/** Data format for response. */
|
|
1221
|
+
alt?: string;
|
|
1222
|
+
/** JSONP */
|
|
1223
|
+
callback?: string;
|
|
1224
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1225
|
+
fields?: string;
|
|
1226
|
+
/** 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. */
|
|
1227
|
+
key?: string;
|
|
1228
|
+
/** Required. Name of the resource */
|
|
1229
|
+
name: string;
|
|
1230
|
+
/** OAuth 2.0 token for the current user. */
|
|
1231
|
+
oauth_token?: string;
|
|
1232
|
+
/** Returns response with indentations and line breaks. */
|
|
1233
|
+
prettyPrint?: boolean;
|
|
1234
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1235
|
+
quotaUser?: string;
|
|
1236
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1237
|
+
upload_protocol?: string;
|
|
1238
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1239
|
+
uploadType?: string;
|
|
1240
|
+
}): Request<Actuation>;
|
|
1241
|
+
/** Lists Actuations in a given project, location and deployment. */
|
|
1242
|
+
list(request?: {
|
|
1243
|
+
/** V1 error format. */
|
|
1244
|
+
'$.xgafv'?: string;
|
|
1245
|
+
/** OAuth access token. */
|
|
1246
|
+
access_token?: string;
|
|
1247
|
+
/** Data format for response. */
|
|
1248
|
+
alt?: string;
|
|
1249
|
+
/** JSONP */
|
|
1250
|
+
callback?: string;
|
|
1251
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1252
|
+
fields?: string;
|
|
1253
|
+
/** Optional. Filtering results */
|
|
1254
|
+
filter?: string;
|
|
1255
|
+
/** 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. */
|
|
1256
|
+
key?: string;
|
|
1257
|
+
/** OAuth 2.0 token for the current user. */
|
|
1258
|
+
oauth_token?: string;
|
|
1259
|
+
/** Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details. */
|
|
1260
|
+
orderBy?: string;
|
|
1261
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
1262
|
+
pageSize?: number;
|
|
1263
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
1264
|
+
pageToken?: string;
|
|
1265
|
+
/** Required. The resource prefix of the Actuation using the form: 'projects/{project_id}/locations/{location}/deployments/{deployment}' */
|
|
1266
|
+
parent: string;
|
|
1267
|
+
/** Returns response with indentations and line breaks. */
|
|
1268
|
+
prettyPrint?: boolean;
|
|
1269
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1270
|
+
quotaUser?: string;
|
|
1271
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1272
|
+
upload_protocol?: string;
|
|
1273
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1274
|
+
uploadType?: string;
|
|
1275
|
+
}): Request<ListActuationsResponse>;
|
|
1276
|
+
}
|
|
1277
|
+
interface DeploymentsResource {
|
|
1278
|
+
/** Creates a new Deployment in a given project and location. */
|
|
1279
|
+
create(request: {
|
|
1280
|
+
/** V1 error format. */
|
|
1281
|
+
'$.xgafv'?: string;
|
|
1282
|
+
/** OAuth access token. */
|
|
1283
|
+
access_token?: string;
|
|
1284
|
+
/** Data format for response. */
|
|
1285
|
+
alt?: string;
|
|
1286
|
+
/** JSONP */
|
|
1287
|
+
callback?: string;
|
|
1288
|
+
/** Required. Id of the deployment */
|
|
1289
|
+
deploymentId?: string;
|
|
1290
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1291
|
+
fields?: string;
|
|
1292
|
+
/** 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. */
|
|
1293
|
+
key?: string;
|
|
1294
|
+
/** OAuth 2.0 token for the current user. */
|
|
1295
|
+
oauth_token?: string;
|
|
1296
|
+
/** Required. The resource prefix of the Deployment using the form: `projects/{project_id}/locations/{location_id}` */
|
|
1297
|
+
parent: string;
|
|
1298
|
+
/** Returns response with indentations and line breaks. */
|
|
1299
|
+
prettyPrint?: boolean;
|
|
1300
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1301
|
+
quotaUser?: string;
|
|
1302
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1303
|
+
requestId?: string;
|
|
1304
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1305
|
+
upload_protocol?: string;
|
|
1306
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1307
|
+
uploadType?: string;
|
|
1308
|
+
/** Request body */
|
|
1309
|
+
resource: Deployment;
|
|
1310
|
+
}): Request<Operation>;
|
|
1311
|
+
create(
|
|
1312
|
+
request: {
|
|
1313
|
+
/** V1 error format. */
|
|
1314
|
+
'$.xgafv'?: string;
|
|
1315
|
+
/** OAuth access token. */
|
|
1316
|
+
access_token?: string;
|
|
1317
|
+
/** Data format for response. */
|
|
1318
|
+
alt?: string;
|
|
1319
|
+
/** JSONP */
|
|
1320
|
+
callback?: string;
|
|
1321
|
+
/** Required. Id of the deployment */
|
|
1322
|
+
deploymentId?: string;
|
|
1323
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1324
|
+
fields?: string;
|
|
1325
|
+
/** 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. */
|
|
1326
|
+
key?: string;
|
|
1327
|
+
/** OAuth 2.0 token for the current user. */
|
|
1328
|
+
oauth_token?: string;
|
|
1329
|
+
/** Required. The resource prefix of the Deployment using the form: `projects/{project_id}/locations/{location_id}` */
|
|
1330
|
+
parent: string;
|
|
1331
|
+
/** Returns response with indentations and line breaks. */
|
|
1332
|
+
prettyPrint?: boolean;
|
|
1333
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1334
|
+
quotaUser?: string;
|
|
1335
|
+
/** Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000). */
|
|
1336
|
+
requestId?: string;
|
|
1337
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1338
|
+
upload_protocol?: string;
|
|
1339
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1340
|
+
uploadType?: string;
|
|
1341
|
+
},
|
|
1342
|
+
body: Deployment,
|
|
1343
|
+
): Request<Operation>;
|
|
1344
|
+
/** Deletes a single Deployment. */
|
|
1345
|
+
delete(request?: {
|
|
1346
|
+
/** V1 error format. */
|
|
1347
|
+
'$.xgafv'?: string;
|
|
1348
|
+
/** OAuth access token. */
|
|
1349
|
+
access_token?: string;
|
|
1350
|
+
/** Data format for response. */
|
|
1351
|
+
alt?: string;
|
|
1352
|
+
/** JSONP */
|
|
1353
|
+
callback?: string;
|
|
1354
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1355
|
+
fields?: string;
|
|
1356
|
+
/** Optional. If set to true, any actuation will also be deleted. Followed the best practice from https://aip.dev/135#cascading-delete */
|
|
1357
|
+
force?: boolean;
|
|
1358
|
+
/** 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. */
|
|
1359
|
+
key?: string;
|
|
1360
|
+
/** Required. Name of the resource */
|
|
1361
|
+
name: string;
|
|
1362
|
+
/** OAuth 2.0 token for the current user. */
|
|
1363
|
+
oauth_token?: string;
|
|
1364
|
+
/** Returns response with indentations and line breaks. */
|
|
1365
|
+
prettyPrint?: boolean;
|
|
1366
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1367
|
+
quotaUser?: string;
|
|
1368
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1369
|
+
upload_protocol?: string;
|
|
1370
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1371
|
+
uploadType?: string;
|
|
1372
|
+
}): Request<Operation>;
|
|
1373
|
+
/** Gets details of a single Deployment. */
|
|
1374
|
+
get(request?: {
|
|
1375
|
+
/** V1 error format. */
|
|
1376
|
+
'$.xgafv'?: string;
|
|
1377
|
+
/** OAuth access token. */
|
|
1378
|
+
access_token?: string;
|
|
1379
|
+
/** Data format for response. */
|
|
1380
|
+
alt?: string;
|
|
1381
|
+
/** JSONP */
|
|
1382
|
+
callback?: string;
|
|
1383
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1384
|
+
fields?: string;
|
|
1385
|
+
/** 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. */
|
|
1386
|
+
key?: string;
|
|
1387
|
+
/** Required. Name of the resource. The format will be 'projects/{project_id}/locations/{location_id}/deployments/{deployment_id}' */
|
|
1388
|
+
name: string;
|
|
1389
|
+
/** OAuth 2.0 token for the current user. */
|
|
1390
|
+
oauth_token?: string;
|
|
1391
|
+
/** Returns response with indentations and line breaks. */
|
|
1392
|
+
prettyPrint?: boolean;
|
|
1393
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1394
|
+
quotaUser?: string;
|
|
1395
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1396
|
+
upload_protocol?: string;
|
|
1397
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1398
|
+
uploadType?: string;
|
|
1399
|
+
}): Request<Deployment>;
|
|
1400
|
+
/** Lists Deployments in a given project and location. */
|
|
1401
|
+
list(request?: {
|
|
1402
|
+
/** V1 error format. */
|
|
1403
|
+
'$.xgafv'?: string;
|
|
1404
|
+
/** OAuth access token. */
|
|
1405
|
+
access_token?: string;
|
|
1406
|
+
/** Data format for response. */
|
|
1407
|
+
alt?: string;
|
|
1408
|
+
/** JSONP */
|
|
1409
|
+
callback?: string;
|
|
1410
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1411
|
+
fields?: string;
|
|
1412
|
+
/** Optional. Filter resource follow https://google.aip.dev/160 */
|
|
1413
|
+
filter?: string;
|
|
1414
|
+
/** 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. */
|
|
1415
|
+
key?: string;
|
|
1416
|
+
/** OAuth 2.0 token for the current user. */
|
|
1417
|
+
oauth_token?: string;
|
|
1418
|
+
/** Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details. */
|
|
1419
|
+
orderBy?: string;
|
|
1420
|
+
/** Optional. Requested page size. Server may return fewer items than requested. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
1421
|
+
pageSize?: number;
|
|
1422
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
1423
|
+
pageToken?: string;
|
|
1424
|
+
/** Required. The resource prefix of the Deployment using the form: `projects/{project_id}/locations/{location_id}` */
|
|
1425
|
+
parent: string;
|
|
1426
|
+
/** Returns response with indentations and line breaks. */
|
|
1427
|
+
prettyPrint?: boolean;
|
|
1428
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1429
|
+
quotaUser?: string;
|
|
1430
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1431
|
+
upload_protocol?: string;
|
|
1432
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1433
|
+
uploadType?: string;
|
|
1434
|
+
}): Request<ListDeploymentsResponse>;
|
|
1435
|
+
actuations: ActuationsResource;
|
|
1436
|
+
}
|
|
846
1437
|
interface HealthResource {
|
|
847
1438
|
/** Get the health of a discovered workload profile. */
|
|
848
1439
|
get(request?: {
|
|
@@ -948,7 +1539,7 @@ declare namespace gapi.client {
|
|
|
948
1539
|
callback?: string;
|
|
949
1540
|
/** Selector specifying which fields to include in a partial response. */
|
|
950
1541
|
fields?: string;
|
|
951
|
-
/** Filtering results */
|
|
1542
|
+
/** Filtering results. */
|
|
952
1543
|
filter?: string;
|
|
953
1544
|
/** 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. */
|
|
954
1545
|
key?: string;
|
|
@@ -958,7 +1549,7 @@ declare namespace gapi.client {
|
|
|
958
1549
|
pageSize?: number;
|
|
959
1550
|
/** A token identifying a page of results the server should return. */
|
|
960
1551
|
pageToken?: string;
|
|
961
|
-
/** Required. The execution results. Format: {parent}/evaluations/*/executions/*/results */
|
|
1552
|
+
/** Required. The execution results. Format: {parent}/evaluations/*/executions/*/results. */
|
|
962
1553
|
parent: string;
|
|
963
1554
|
/** Returns response with indentations and line breaks. */
|
|
964
1555
|
prettyPrint?: boolean;
|
|
@@ -983,7 +1574,7 @@ declare namespace gapi.client {
|
|
|
983
1574
|
callback?: string;
|
|
984
1575
|
/** Selector specifying which fields to include in a partial response. */
|
|
985
1576
|
fields?: string;
|
|
986
|
-
/** Filtering results */
|
|
1577
|
+
/** Filtering results. */
|
|
987
1578
|
filter?: string;
|
|
988
1579
|
/** 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. */
|
|
989
1580
|
key?: string;
|
|
@@ -995,13 +1586,13 @@ declare namespace gapi.client {
|
|
|
995
1586
|
pageSize?: number;
|
|
996
1587
|
/** A token identifying a page of results the server should return. */
|
|
997
1588
|
pageToken?: string;
|
|
998
|
-
/** Required.
|
|
1589
|
+
/** Required. Parent for ListScannedResourcesRequest. */
|
|
999
1590
|
parent: string;
|
|
1000
1591
|
/** Returns response with indentations and line breaks. */
|
|
1001
1592
|
prettyPrint?: boolean;
|
|
1002
1593
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1003
1594
|
quotaUser?: string;
|
|
1004
|
-
/**
|
|
1595
|
+
/** Rule name. */
|
|
1005
1596
|
rule?: string;
|
|
1006
1597
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1007
1598
|
upload_protocol?: string;
|
|
@@ -1024,7 +1615,7 @@ declare namespace gapi.client {
|
|
|
1024
1615
|
fields?: string;
|
|
1025
1616
|
/** 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. */
|
|
1026
1617
|
key?: string;
|
|
1027
|
-
/** Required. Name of the resource */
|
|
1618
|
+
/** Required. Name of the resource. */
|
|
1028
1619
|
name: string;
|
|
1029
1620
|
/** OAuth 2.0 token for the current user. */
|
|
1030
1621
|
oauth_token?: string;
|
|
@@ -1053,7 +1644,7 @@ declare namespace gapi.client {
|
|
|
1053
1644
|
fields?: string;
|
|
1054
1645
|
/** 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. */
|
|
1055
1646
|
key?: string;
|
|
1056
|
-
/** Required. Name of the resource */
|
|
1647
|
+
/** Required. Name of the resource. */
|
|
1057
1648
|
name: string;
|
|
1058
1649
|
/** OAuth 2.0 token for the current user. */
|
|
1059
1650
|
oauth_token?: string;
|
|
@@ -1078,7 +1669,7 @@ declare namespace gapi.client {
|
|
|
1078
1669
|
callback?: string;
|
|
1079
1670
|
/** Selector specifying which fields to include in a partial response. */
|
|
1080
1671
|
fields?: string;
|
|
1081
|
-
/** Filtering results */
|
|
1672
|
+
/** Filtering results. */
|
|
1082
1673
|
filter?: string;
|
|
1083
1674
|
/** 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. */
|
|
1084
1675
|
key?: string;
|
|
@@ -1090,7 +1681,7 @@ declare namespace gapi.client {
|
|
|
1090
1681
|
pageSize?: number;
|
|
1091
1682
|
/** A token identifying a page of results the server should return. */
|
|
1092
1683
|
pageToken?: string;
|
|
1093
|
-
/** Required. The resource prefix of the Execution using the form:
|
|
1684
|
+
/** Required. The resource prefix of the Execution using the form: `projects/{project}/locations/{location}/evaluations/{evaluation}`. */
|
|
1094
1685
|
parent: string;
|
|
1095
1686
|
/** Returns response with indentations and line breaks. */
|
|
1096
1687
|
prettyPrint?: boolean;
|
|
@@ -1115,7 +1706,7 @@ declare namespace gapi.client {
|
|
|
1115
1706
|
fields?: string;
|
|
1116
1707
|
/** 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. */
|
|
1117
1708
|
key?: string;
|
|
1118
|
-
/** Required. The resource name of the
|
|
1709
|
+
/** Required. The resource name of the Evaluation using the form: `projects/{project}/locations/{location}/evaluations/{evaluation}`. */
|
|
1119
1710
|
name: string;
|
|
1120
1711
|
/** OAuth 2.0 token for the current user. */
|
|
1121
1712
|
oauth_token?: string;
|
|
@@ -1144,7 +1735,7 @@ declare namespace gapi.client {
|
|
|
1144
1735
|
fields?: string;
|
|
1145
1736
|
/** 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. */
|
|
1146
1737
|
key?: string;
|
|
1147
|
-
/** Required. The resource name of the
|
|
1738
|
+
/** Required. The resource name of the Evaluation using the form: `projects/{project}/locations/{location}/evaluations/{evaluation}`. */
|
|
1148
1739
|
name: string;
|
|
1149
1740
|
/** OAuth 2.0 token for the current user. */
|
|
1150
1741
|
oauth_token?: string;
|
|
@@ -1173,7 +1764,7 @@ declare namespace gapi.client {
|
|
|
1173
1764
|
alt?: string;
|
|
1174
1765
|
/** JSONP */
|
|
1175
1766
|
callback?: string;
|
|
1176
|
-
/** Required. Id of the requesting object */
|
|
1767
|
+
/** Required. Id of the requesting object. */
|
|
1177
1768
|
evaluationId?: string;
|
|
1178
1769
|
/** Selector specifying which fields to include in a partial response. */
|
|
1179
1770
|
fields?: string;
|
|
@@ -1181,7 +1772,7 @@ declare namespace gapi.client {
|
|
|
1181
1772
|
key?: string;
|
|
1182
1773
|
/** OAuth 2.0 token for the current user. */
|
|
1183
1774
|
oauth_token?: string;
|
|
1184
|
-
/** Required. The resource prefix of the evaluation location using the form: `projects/{project_id}/locations/{location_id}
|
|
1775
|
+
/** Required. The resource prefix of the evaluation location using the form: `projects/{project_id}/locations/{location_id}`. */
|
|
1185
1776
|
parent: string;
|
|
1186
1777
|
/** Returns response with indentations and line breaks. */
|
|
1187
1778
|
prettyPrint?: boolean;
|
|
@@ -1206,7 +1797,7 @@ declare namespace gapi.client {
|
|
|
1206
1797
|
alt?: string;
|
|
1207
1798
|
/** JSONP */
|
|
1208
1799
|
callback?: string;
|
|
1209
|
-
/** Required. Id of the requesting object */
|
|
1800
|
+
/** Required. Id of the requesting object. */
|
|
1210
1801
|
evaluationId?: string;
|
|
1211
1802
|
/** Selector specifying which fields to include in a partial response. */
|
|
1212
1803
|
fields?: string;
|
|
@@ -1214,7 +1805,7 @@ declare namespace gapi.client {
|
|
|
1214
1805
|
key?: string;
|
|
1215
1806
|
/** OAuth 2.0 token for the current user. */
|
|
1216
1807
|
oauth_token?: string;
|
|
1217
|
-
/** Required. The resource prefix of the evaluation location using the form: `projects/{project_id}/locations/{location_id}
|
|
1808
|
+
/** Required. The resource prefix of the evaluation location using the form: `projects/{project_id}/locations/{location_id}`. */
|
|
1218
1809
|
parent: string;
|
|
1219
1810
|
/** Returns response with indentations and line breaks. */
|
|
1220
1811
|
prettyPrint?: boolean;
|
|
@@ -1241,11 +1832,11 @@ declare namespace gapi.client {
|
|
|
1241
1832
|
callback?: string;
|
|
1242
1833
|
/** Selector specifying which fields to include in a partial response. */
|
|
1243
1834
|
fields?: string;
|
|
1244
|
-
/** Optional. Followed the best practice from https://aip.dev/135#cascading-delete */
|
|
1835
|
+
/** Optional. Followed the best practice from https://aip.dev/135#cascading-delete. */
|
|
1245
1836
|
force?: boolean;
|
|
1246
1837
|
/** 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. */
|
|
1247
1838
|
key?: string;
|
|
1248
|
-
/** Required. Name of the resource */
|
|
1839
|
+
/** Required. Name of the resource. */
|
|
1249
1840
|
name: string;
|
|
1250
1841
|
/** OAuth 2.0 token for the current user. */
|
|
1251
1842
|
oauth_token?: string;
|
|
@@ -1274,7 +1865,7 @@ declare namespace gapi.client {
|
|
|
1274
1865
|
fields?: string;
|
|
1275
1866
|
/** 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. */
|
|
1276
1867
|
key?: string;
|
|
1277
|
-
/** Required. Name of the resource */
|
|
1868
|
+
/** Required. Name of the resource. */
|
|
1278
1869
|
name: string;
|
|
1279
1870
|
/** OAuth 2.0 token for the current user. */
|
|
1280
1871
|
oauth_token?: string;
|
|
@@ -1305,13 +1896,13 @@ declare namespace gapi.client {
|
|
|
1305
1896
|
key?: string;
|
|
1306
1897
|
/** OAuth 2.0 token for the current user. */
|
|
1307
1898
|
oauth_token?: string;
|
|
1308
|
-
/** Hint for how to order the results */
|
|
1899
|
+
/** Hint for how to order the results. */
|
|
1309
1900
|
orderBy?: string;
|
|
1310
1901
|
/** Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
1311
1902
|
pageSize?: number;
|
|
1312
1903
|
/** A token identifying a page of results the server should return. */
|
|
1313
1904
|
pageToken?: string;
|
|
1314
|
-
/** Required. Parent value for ListEvaluationsRequest */
|
|
1905
|
+
/** Required. Parent value for ListEvaluationsRequest. */
|
|
1315
1906
|
parent: string;
|
|
1316
1907
|
/** Returns response with indentations and line breaks. */
|
|
1317
1908
|
prettyPrint?: boolean;
|
|
@@ -1336,7 +1927,7 @@ declare namespace gapi.client {
|
|
|
1336
1927
|
fields?: string;
|
|
1337
1928
|
/** 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. */
|
|
1338
1929
|
key?: string;
|
|
1339
|
-
/**
|
|
1930
|
+
/** Name of resource that has the form `projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}`. */
|
|
1340
1931
|
name: string;
|
|
1341
1932
|
/** OAuth 2.0 token for the current user. */
|
|
1342
1933
|
oauth_token?: string;
|
|
@@ -1369,7 +1960,7 @@ declare namespace gapi.client {
|
|
|
1369
1960
|
fields?: string;
|
|
1370
1961
|
/** 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. */
|
|
1371
1962
|
key?: string;
|
|
1372
|
-
/**
|
|
1963
|
+
/** Name of resource that has the form `projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}`. */
|
|
1373
1964
|
name: string;
|
|
1374
1965
|
/** OAuth 2.0 token for the current user. */
|
|
1375
1966
|
oauth_token?: string;
|
|
@@ -1645,7 +2236,7 @@ declare namespace gapi.client {
|
|
|
1645
2236
|
evaluationType?: string;
|
|
1646
2237
|
/** Selector specifying which fields to include in a partial response. */
|
|
1647
2238
|
fields?: string;
|
|
1648
|
-
/** Filter based on primary_category, secondary_category */
|
|
2239
|
+
/** Filter based on primary_category, secondary_category. */
|
|
1649
2240
|
filter?: string;
|
|
1650
2241
|
/** 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. */
|
|
1651
2242
|
key?: string;
|
|
@@ -1655,7 +2246,7 @@ declare namespace gapi.client {
|
|
|
1655
2246
|
pageSize?: number;
|
|
1656
2247
|
/** A token identifying a page of results the server should return. */
|
|
1657
2248
|
pageToken?: string;
|
|
1658
|
-
/** Required. The [project] on which to execute the request. The format is: projects/{project_id}/locations/{location} Currently, the pre-defined rules are global available to all projects and all regions */
|
|
2249
|
+
/** Required. The [project] on which to execute the request. The format is: projects/{project_id}/locations/{location} Currently, the pre-defined rules are global available to all projects and all regions. */
|
|
1659
2250
|
parent: string;
|
|
1660
2251
|
/** Returns response with indentations and line breaks. */
|
|
1661
2252
|
prettyPrint?: boolean;
|
|
@@ -1730,6 +2321,7 @@ declare namespace gapi.client {
|
|
|
1730
2321
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1731
2322
|
uploadType?: string;
|
|
1732
2323
|
}): Request<ListLocationsResponse>;
|
|
2324
|
+
deployments: DeploymentsResource;
|
|
1733
2325
|
discoveredprofiles: DiscoveredprofilesResource;
|
|
1734
2326
|
evaluations: EvaluationsResource;
|
|
1735
2327
|
insights: InsightsResource;
|