@maxim_mazurok/gapi.client.workloadmanager-v1 0.1.20260204 → 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 +94 -114
- 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
|
|
|
@@ -77,9 +77,9 @@ declare namespace gapi.client {
|
|
|
77
77
|
terraformTemplate?: string;
|
|
78
78
|
}
|
|
79
79
|
interface AgentCommand {
|
|
80
|
-
/**
|
|
80
|
+
/** The name of the agent one-time executable that will be invoked. */
|
|
81
81
|
command?: string;
|
|
82
|
-
/**
|
|
82
|
+
/** A map of key/value pairs that can be used to specify additional one-time executable settings. */
|
|
83
83
|
parameters?: {[P in string]: string};
|
|
84
84
|
}
|
|
85
85
|
interface AgentStates {
|
|
@@ -201,9 +201,9 @@ declare namespace gapi.client {
|
|
|
201
201
|
latestBackupTime?: string;
|
|
202
202
|
}
|
|
203
203
|
interface BigQueryDestination {
|
|
204
|
-
/** Optional.
|
|
204
|
+
/** Optional. Determines if a new results table will be created when an Execution is created. */
|
|
205
205
|
createNewResultsTable?: boolean;
|
|
206
|
-
/** Optional.
|
|
206
|
+
/** Optional. Destination dataset to save evaluation results. */
|
|
207
207
|
destinationDataset?: string;
|
|
208
208
|
}
|
|
209
209
|
interface CancelOperationRequest {}
|
|
@@ -315,61 +315,59 @@ declare namespace gapi.client {
|
|
|
315
315
|
}
|
|
316
316
|
interface Empty {}
|
|
317
317
|
interface Evaluation {
|
|
318
|
-
/** 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. */
|
|
319
319
|
bigQueryDestination?: BigQueryDestination;
|
|
320
|
-
/** Output only. [Output only] Create time stamp */
|
|
320
|
+
/** Output only. [Output only] Create time stamp. */
|
|
321
321
|
createTime?: string;
|
|
322
322
|
/** The Cloud Storage bucket name for custom rules. */
|
|
323
323
|
customRulesBucket?: string;
|
|
324
|
-
/** Description of the Evaluation */
|
|
324
|
+
/** Description of the Evaluation. */
|
|
325
325
|
description?: string;
|
|
326
|
-
/** Evaluation type */
|
|
326
|
+
/** Evaluation type. */
|
|
327
327
|
evaluationType?: string;
|
|
328
|
-
/** 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. */
|
|
329
329
|
kmsKey?: string;
|
|
330
|
-
/** Labels as key value pairs */
|
|
330
|
+
/** Labels as key value pairs. */
|
|
331
331
|
labels?: {[P in string]: string};
|
|
332
|
-
/**
|
|
332
|
+
/** Name of resource that has the form `projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}`. */
|
|
333
333
|
name?: string;
|
|
334
|
-
/**
|
|
334
|
+
/** Resource filter for an evaluation defining the scope of resources to be evaluated. */
|
|
335
335
|
resourceFilter?: ResourceFilter;
|
|
336
|
-
/** Output only. [Output only] The
|
|
336
|
+
/** Output only. [Output only] The current lifecycle state of the evaluation resource. */
|
|
337
337
|
resourceStatus?: ResourceStatus;
|
|
338
|
-
/**
|
|
338
|
+
/** The names of the rules used for this evaluation. */
|
|
339
339
|
ruleNames?: string[];
|
|
340
|
-
/**
|
|
341
|
-
ruleVersions?: string[];
|
|
342
|
-
/** 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 */
|
|
343
341
|
schedule?: string;
|
|
344
|
-
/** Output only. [Output only] Update time stamp */
|
|
342
|
+
/** Output only. [Output only] Update time stamp. */
|
|
345
343
|
updateTime?: string;
|
|
346
344
|
}
|
|
347
345
|
interface Execution {
|
|
348
|
-
/** Output only. [Output only] End time stamp */
|
|
346
|
+
/** Output only. [Output only] End time stamp. */
|
|
349
347
|
endTime?: string;
|
|
350
|
-
/** Optional. Engine */
|
|
348
|
+
/** Optional. Engine. */
|
|
351
349
|
engine?: string;
|
|
352
|
-
/** Output only. [Output only] Evaluation ID */
|
|
350
|
+
/** Output only. [Output only] Evaluation ID. */
|
|
353
351
|
evaluationId?: string;
|
|
354
|
-
/** Optional. External data sources */
|
|
352
|
+
/** Optional. External data sources. */
|
|
355
353
|
externalDataSources?: ExternalDataSources[];
|
|
356
|
-
/** Output only. [Output only] Inventory time stamp */
|
|
354
|
+
/** Output only. [Output only] Inventory time stamp. */
|
|
357
355
|
inventoryTime?: string;
|
|
358
|
-
/** Labels as key value pairs */
|
|
356
|
+
/** Labels as key value pairs. */
|
|
359
357
|
labels?: {[P in string]: string};
|
|
360
|
-
/** 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}. */
|
|
361
359
|
name?: string;
|
|
362
|
-
/** Output only. Additional information generated by the execution */
|
|
360
|
+
/** Output only. Additional information generated by the execution. */
|
|
363
361
|
notices?: Notice[];
|
|
364
|
-
/** Output only. [Output only] Result summary for the execution */
|
|
362
|
+
/** Output only. [Output only] Result summary for the execution. */
|
|
365
363
|
resultSummary?: Summary;
|
|
366
|
-
/** Output only.
|
|
364
|
+
/** Output only. Execution result summary per rule. */
|
|
367
365
|
ruleResults?: RuleExecutionResult[];
|
|
368
|
-
/**
|
|
366
|
+
/** Type which represents whether the execution executed directly by user or scheduled according to the `Evaluation.schedule` field. */
|
|
369
367
|
runType?: string;
|
|
370
|
-
/** Output only. [Output only] Start time stamp */
|
|
368
|
+
/** Output only. [Output only] Start time stamp. */
|
|
371
369
|
startTime?: string;
|
|
372
|
-
/** Output only. [Output only] State */
|
|
370
|
+
/** Output only. [Output only] State. */
|
|
373
371
|
state?: string;
|
|
374
372
|
}
|
|
375
373
|
interface ExecutionResult {
|
|
@@ -383,7 +381,7 @@ declare namespace gapi.client {
|
|
|
383
381
|
rule?: string;
|
|
384
382
|
/** The severity of violation. */
|
|
385
383
|
severity?: string;
|
|
386
|
-
/** Execution result type of the scanned resource */
|
|
384
|
+
/** Execution result type of the scanned resource. */
|
|
387
385
|
type?: string;
|
|
388
386
|
/** The details of violation in an evaluation result. */
|
|
389
387
|
violationDetails?: ViolationDetails;
|
|
@@ -393,15 +391,15 @@ declare namespace gapi.client {
|
|
|
393
391
|
interface ExternalDataSources {
|
|
394
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. */
|
|
395
393
|
assetType?: string;
|
|
396
|
-
/** 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. */
|
|
397
395
|
name?: string;
|
|
398
|
-
/** Required. Type of external data source */
|
|
396
|
+
/** Required. Type of external data source. */
|
|
399
397
|
type?: string;
|
|
400
|
-
/** 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}. */
|
|
401
399
|
uri?: string;
|
|
402
400
|
}
|
|
403
401
|
interface GceInstanceFilter {
|
|
404
|
-
/**
|
|
402
|
+
/** If non-empty, only Compute Engine instances associated with at least one of the provided service accounts will be included in the evaluation. */
|
|
405
403
|
serviceAccounts?: string[];
|
|
406
404
|
}
|
|
407
405
|
interface HealthCheck {
|
|
@@ -454,20 +452,6 @@ declare namespace gapi.client {
|
|
|
454
452
|
/** Optional. the next maintenance event on VM */
|
|
455
453
|
upcomingMaintenanceEvent?: UpcomingMaintenanceEvent;
|
|
456
454
|
}
|
|
457
|
-
interface InvalidRule {
|
|
458
|
-
/** display name of the invalid rule */
|
|
459
|
-
displayName?: string;
|
|
460
|
-
/** cloud storage destination of the invalid rule */
|
|
461
|
-
gcsUri?: string;
|
|
462
|
-
/** name of the invalid rule */
|
|
463
|
-
name?: string;
|
|
464
|
-
/** The error message of valdating rule formats. */
|
|
465
|
-
valiadtionError?: string;
|
|
466
|
-
}
|
|
467
|
-
interface InvalidRulesWrapper {
|
|
468
|
-
/** The invalid rules that failed to be validated. */
|
|
469
|
-
invalidRules?: InvalidRule[];
|
|
470
|
-
}
|
|
471
455
|
interface ListActuationsResponse {
|
|
472
456
|
/** The list of Actuation */
|
|
473
457
|
actuations?: Actuation[];
|
|
@@ -493,7 +477,7 @@ declare namespace gapi.client {
|
|
|
493
477
|
workloadProfiles?: WorkloadProfile[];
|
|
494
478
|
}
|
|
495
479
|
interface ListEvaluationsResponse {
|
|
496
|
-
/** The list of
|
|
480
|
+
/** The list of evaluations. */
|
|
497
481
|
evaluations?: Evaluation[];
|
|
498
482
|
/** A token identifying a page of results the server should return. */
|
|
499
483
|
nextPageToken?: string;
|
|
@@ -507,7 +491,7 @@ declare namespace gapi.client {
|
|
|
507
491
|
nextPageToken?: string;
|
|
508
492
|
}
|
|
509
493
|
interface ListExecutionsResponse {
|
|
510
|
-
/** The list of Execution */
|
|
494
|
+
/** The list of Execution. */
|
|
511
495
|
executions?: Execution[];
|
|
512
496
|
/** A token identifying a page of results the server should return. */
|
|
513
497
|
nextPageToken?: string;
|
|
@@ -529,15 +513,13 @@ declare namespace gapi.client {
|
|
|
529
513
|
unreachable?: string[];
|
|
530
514
|
}
|
|
531
515
|
interface ListRulesResponse {
|
|
532
|
-
/**
|
|
533
|
-
invalidRulesWrapper?: InvalidRulesWrapper;
|
|
534
|
-
/** all rules in response */
|
|
516
|
+
/** All rules in response. */
|
|
535
517
|
rules?: Rule[];
|
|
536
518
|
}
|
|
537
519
|
interface ListScannedResourcesResponse {
|
|
538
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. */
|
|
539
521
|
nextPageToken?: string;
|
|
540
|
-
/** All scanned resources in response */
|
|
522
|
+
/** All scanned resources in response. */
|
|
541
523
|
scannedResources?: ScannedResource[];
|
|
542
524
|
}
|
|
543
525
|
interface Location {
|
|
@@ -578,7 +560,7 @@ declare namespace gapi.client {
|
|
|
578
560
|
zone2Name?: string;
|
|
579
561
|
}
|
|
580
562
|
interface Notice {
|
|
581
|
-
/** Output only. Message of the notice */
|
|
563
|
+
/** Output only. Message of the notice. */
|
|
582
564
|
message?: string;
|
|
583
565
|
}
|
|
584
566
|
interface OpenShiftValidation {
|
|
@@ -644,59 +626,57 @@ declare namespace gapi.client {
|
|
|
644
626
|
type?: string;
|
|
645
627
|
}
|
|
646
628
|
interface ResourceFilter {
|
|
647
|
-
/** Filter compute engine
|
|
629
|
+
/** Filter compute engine resources. */
|
|
648
630
|
gceInstanceFilter?: GceInstanceFilter;
|
|
649
|
-
/**
|
|
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`. */
|
|
650
632
|
inclusionLabels?: {[P in string]: string};
|
|
651
|
-
/** 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. */
|
|
652
634
|
resourceIdPatterns?: string[];
|
|
653
|
-
/** The scopes of evaluation resource */
|
|
635
|
+
/** The scopes of evaluation resource. Format: * `projects/{project_id}` * `folders/{folder_id}` * `organizations/{organization_id}` */
|
|
654
636
|
scopes?: string[];
|
|
655
637
|
}
|
|
656
638
|
interface ResourceStatus {
|
|
657
|
-
/**
|
|
658
|
-
rulesNewerVersions?: string[];
|
|
659
|
-
/** State of the resource */
|
|
639
|
+
/** State of the Evaluation resource. */
|
|
660
640
|
state?: string;
|
|
661
641
|
}
|
|
662
642
|
interface Rule {
|
|
663
643
|
/** The CAI asset type of the rule is evaluating, for joined asset types, it will be the corresponding primary asset types. */
|
|
664
644
|
assetType?: string;
|
|
665
|
-
/**
|
|
645
|
+
/** Describe rule in plain language. */
|
|
666
646
|
description?: string;
|
|
667
|
-
/**
|
|
647
|
+
/** The name display in UI. */
|
|
668
648
|
displayName?: string;
|
|
669
|
-
/**
|
|
649
|
+
/** The message template for rule. */
|
|
670
650
|
errorMessage?: string;
|
|
671
|
-
/**
|
|
651
|
+
/** Rule name. */
|
|
672
652
|
name?: string;
|
|
673
|
-
/**
|
|
653
|
+
/** The primary category. */
|
|
674
654
|
primaryCategory?: string;
|
|
675
|
-
/**
|
|
655
|
+
/** The remediation for the rule. */
|
|
676
656
|
remediation?: string;
|
|
677
|
-
/** Output only.
|
|
657
|
+
/** Output only. The version of the rule. */
|
|
678
658
|
revisionId?: string;
|
|
679
659
|
/** The type of the rule. */
|
|
680
660
|
ruleType?: string;
|
|
681
|
-
/**
|
|
661
|
+
/** The secondary category. */
|
|
682
662
|
secondaryCategory?: string;
|
|
683
|
-
/**
|
|
663
|
+
/** The severity of the rule. */
|
|
684
664
|
severity?: string;
|
|
685
|
-
/** List of user-defined tags */
|
|
665
|
+
/** List of user-defined tags. */
|
|
686
666
|
tags?: string[];
|
|
687
|
-
/**
|
|
667
|
+
/** The document url for the rule. */
|
|
688
668
|
uri?: string;
|
|
689
669
|
}
|
|
690
670
|
interface RuleExecutionResult {
|
|
691
|
-
/** Execution message, if any */
|
|
671
|
+
/** Execution message, if any. */
|
|
692
672
|
message?: string;
|
|
693
|
-
/** Number of violations */
|
|
673
|
+
/** Number of violations. */
|
|
694
674
|
resultCount?: string;
|
|
695
|
-
/**
|
|
675
|
+
/** Rule name as plain text like `sap-hana-configured`. */
|
|
696
676
|
rule?: string;
|
|
697
|
-
/** Number of total scanned resources */
|
|
677
|
+
/** Number of total scanned resources. */
|
|
698
678
|
scannedResourceCount?: string;
|
|
699
|
-
/** Output only. The execution status */
|
|
679
|
+
/** Output only. The execution status. */
|
|
700
680
|
state?: string;
|
|
701
681
|
}
|
|
702
682
|
interface RuleOutput {
|
|
@@ -706,9 +686,9 @@ declare namespace gapi.client {
|
|
|
706
686
|
message?: string;
|
|
707
687
|
}
|
|
708
688
|
interface RunEvaluationRequest {
|
|
709
|
-
/** Required. The resource being created */
|
|
689
|
+
/** Required. The resource being created. */
|
|
710
690
|
execution?: Execution;
|
|
711
|
-
/** Required.
|
|
691
|
+
/** Required. ID of the execution which will be created. */
|
|
712
692
|
executionId?: string;
|
|
713
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). */
|
|
714
694
|
requestId?: string;
|
|
@@ -963,9 +943,9 @@ declare namespace gapi.client {
|
|
|
963
943
|
products?: Product[];
|
|
964
944
|
}
|
|
965
945
|
interface ScannedResource {
|
|
966
|
-
/**
|
|
946
|
+
/** Resource name. */
|
|
967
947
|
resource?: string;
|
|
968
|
-
/**
|
|
948
|
+
/** Resource type. */
|
|
969
949
|
type?: string;
|
|
970
950
|
}
|
|
971
951
|
interface ServiceStates {
|
|
@@ -975,9 +955,9 @@ declare namespace gapi.client {
|
|
|
975
955
|
state?: string;
|
|
976
956
|
}
|
|
977
957
|
interface ShellCommand {
|
|
978
|
-
/**
|
|
958
|
+
/** Arguments to be passed to the command. */
|
|
979
959
|
args?: string;
|
|
980
|
-
/**
|
|
960
|
+
/** The name of the command to be executed. */
|
|
981
961
|
command?: string;
|
|
982
962
|
/** Optional. If not specified, the default timeout is 60 seconds. */
|
|
983
963
|
timeoutSeconds?: number;
|
|
@@ -1067,11 +1047,11 @@ declare namespace gapi.client {
|
|
|
1067
1047
|
message?: string;
|
|
1068
1048
|
}
|
|
1069
1049
|
interface Summary {
|
|
1070
|
-
/** Output only. Number of failures */
|
|
1050
|
+
/** Output only. Number of failures. */
|
|
1071
1051
|
failures?: string;
|
|
1072
|
-
/** Output only. Number of new failures compared to the previous execution */
|
|
1052
|
+
/** Output only. Number of new failures compared to the previous execution. */
|
|
1073
1053
|
newFailures?: string;
|
|
1074
|
-
/** Output only. Number of new fixes compared to the previous execution */
|
|
1054
|
+
/** Output only. Number of new fixes compared to the previous execution. */
|
|
1075
1055
|
newFixes?: string;
|
|
1076
1056
|
}
|
|
1077
1057
|
interface TerraformVariable {
|
|
@@ -1559,7 +1539,7 @@ declare namespace gapi.client {
|
|
|
1559
1539
|
callback?: string;
|
|
1560
1540
|
/** Selector specifying which fields to include in a partial response. */
|
|
1561
1541
|
fields?: string;
|
|
1562
|
-
/** Filtering results */
|
|
1542
|
+
/** Filtering results. */
|
|
1563
1543
|
filter?: string;
|
|
1564
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. */
|
|
1565
1545
|
key?: string;
|
|
@@ -1569,7 +1549,7 @@ declare namespace gapi.client {
|
|
|
1569
1549
|
pageSize?: number;
|
|
1570
1550
|
/** A token identifying a page of results the server should return. */
|
|
1571
1551
|
pageToken?: string;
|
|
1572
|
-
/** Required. The execution results. Format: {parent}/evaluations/*/executions/*/results */
|
|
1552
|
+
/** Required. The execution results. Format: {parent}/evaluations/*/executions/*/results. */
|
|
1573
1553
|
parent: string;
|
|
1574
1554
|
/** Returns response with indentations and line breaks. */
|
|
1575
1555
|
prettyPrint?: boolean;
|
|
@@ -1594,7 +1574,7 @@ declare namespace gapi.client {
|
|
|
1594
1574
|
callback?: string;
|
|
1595
1575
|
/** Selector specifying which fields to include in a partial response. */
|
|
1596
1576
|
fields?: string;
|
|
1597
|
-
/** Filtering results */
|
|
1577
|
+
/** Filtering results. */
|
|
1598
1578
|
filter?: string;
|
|
1599
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. */
|
|
1600
1580
|
key?: string;
|
|
@@ -1606,13 +1586,13 @@ declare namespace gapi.client {
|
|
|
1606
1586
|
pageSize?: number;
|
|
1607
1587
|
/** A token identifying a page of results the server should return. */
|
|
1608
1588
|
pageToken?: string;
|
|
1609
|
-
/** Required.
|
|
1589
|
+
/** Required. Parent for ListScannedResourcesRequest. */
|
|
1610
1590
|
parent: string;
|
|
1611
1591
|
/** Returns response with indentations and line breaks. */
|
|
1612
1592
|
prettyPrint?: boolean;
|
|
1613
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. */
|
|
1614
1594
|
quotaUser?: string;
|
|
1615
|
-
/**
|
|
1595
|
+
/** Rule name. */
|
|
1616
1596
|
rule?: string;
|
|
1617
1597
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1618
1598
|
upload_protocol?: string;
|
|
@@ -1635,7 +1615,7 @@ declare namespace gapi.client {
|
|
|
1635
1615
|
fields?: string;
|
|
1636
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. */
|
|
1637
1617
|
key?: string;
|
|
1638
|
-
/** Required. Name of the resource */
|
|
1618
|
+
/** Required. Name of the resource. */
|
|
1639
1619
|
name: string;
|
|
1640
1620
|
/** OAuth 2.0 token for the current user. */
|
|
1641
1621
|
oauth_token?: string;
|
|
@@ -1664,7 +1644,7 @@ declare namespace gapi.client {
|
|
|
1664
1644
|
fields?: string;
|
|
1665
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. */
|
|
1666
1646
|
key?: string;
|
|
1667
|
-
/** Required. Name of the resource */
|
|
1647
|
+
/** Required. Name of the resource. */
|
|
1668
1648
|
name: string;
|
|
1669
1649
|
/** OAuth 2.0 token for the current user. */
|
|
1670
1650
|
oauth_token?: string;
|
|
@@ -1689,7 +1669,7 @@ declare namespace gapi.client {
|
|
|
1689
1669
|
callback?: string;
|
|
1690
1670
|
/** Selector specifying which fields to include in a partial response. */
|
|
1691
1671
|
fields?: string;
|
|
1692
|
-
/** Filtering results */
|
|
1672
|
+
/** Filtering results. */
|
|
1693
1673
|
filter?: string;
|
|
1694
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. */
|
|
1695
1675
|
key?: string;
|
|
@@ -1701,7 +1681,7 @@ declare namespace gapi.client {
|
|
|
1701
1681
|
pageSize?: number;
|
|
1702
1682
|
/** A token identifying a page of results the server should return. */
|
|
1703
1683
|
pageToken?: string;
|
|
1704
|
-
/** 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}`. */
|
|
1705
1685
|
parent: string;
|
|
1706
1686
|
/** Returns response with indentations and line breaks. */
|
|
1707
1687
|
prettyPrint?: boolean;
|
|
@@ -1726,7 +1706,7 @@ declare namespace gapi.client {
|
|
|
1726
1706
|
fields?: string;
|
|
1727
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. */
|
|
1728
1708
|
key?: string;
|
|
1729
|
-
/** Required. The resource name of the
|
|
1709
|
+
/** Required. The resource name of the Evaluation using the form: `projects/{project}/locations/{location}/evaluations/{evaluation}`. */
|
|
1730
1710
|
name: string;
|
|
1731
1711
|
/** OAuth 2.0 token for the current user. */
|
|
1732
1712
|
oauth_token?: string;
|
|
@@ -1755,7 +1735,7 @@ declare namespace gapi.client {
|
|
|
1755
1735
|
fields?: string;
|
|
1756
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. */
|
|
1757
1737
|
key?: string;
|
|
1758
|
-
/** Required. The resource name of the
|
|
1738
|
+
/** Required. The resource name of the Evaluation using the form: `projects/{project}/locations/{location}/evaluations/{evaluation}`. */
|
|
1759
1739
|
name: string;
|
|
1760
1740
|
/** OAuth 2.0 token for the current user. */
|
|
1761
1741
|
oauth_token?: string;
|
|
@@ -1784,7 +1764,7 @@ declare namespace gapi.client {
|
|
|
1784
1764
|
alt?: string;
|
|
1785
1765
|
/** JSONP */
|
|
1786
1766
|
callback?: string;
|
|
1787
|
-
/** Required. Id of the requesting object */
|
|
1767
|
+
/** Required. Id of the requesting object. */
|
|
1788
1768
|
evaluationId?: string;
|
|
1789
1769
|
/** Selector specifying which fields to include in a partial response. */
|
|
1790
1770
|
fields?: string;
|
|
@@ -1792,7 +1772,7 @@ declare namespace gapi.client {
|
|
|
1792
1772
|
key?: string;
|
|
1793
1773
|
/** OAuth 2.0 token for the current user. */
|
|
1794
1774
|
oauth_token?: string;
|
|
1795
|
-
/** 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}`. */
|
|
1796
1776
|
parent: string;
|
|
1797
1777
|
/** Returns response with indentations and line breaks. */
|
|
1798
1778
|
prettyPrint?: boolean;
|
|
@@ -1817,7 +1797,7 @@ declare namespace gapi.client {
|
|
|
1817
1797
|
alt?: string;
|
|
1818
1798
|
/** JSONP */
|
|
1819
1799
|
callback?: string;
|
|
1820
|
-
/** Required. Id of the requesting object */
|
|
1800
|
+
/** Required. Id of the requesting object. */
|
|
1821
1801
|
evaluationId?: string;
|
|
1822
1802
|
/** Selector specifying which fields to include in a partial response. */
|
|
1823
1803
|
fields?: string;
|
|
@@ -1825,7 +1805,7 @@ declare namespace gapi.client {
|
|
|
1825
1805
|
key?: string;
|
|
1826
1806
|
/** OAuth 2.0 token for the current user. */
|
|
1827
1807
|
oauth_token?: string;
|
|
1828
|
-
/** 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}`. */
|
|
1829
1809
|
parent: string;
|
|
1830
1810
|
/** Returns response with indentations and line breaks. */
|
|
1831
1811
|
prettyPrint?: boolean;
|
|
@@ -1852,11 +1832,11 @@ declare namespace gapi.client {
|
|
|
1852
1832
|
callback?: string;
|
|
1853
1833
|
/** Selector specifying which fields to include in a partial response. */
|
|
1854
1834
|
fields?: string;
|
|
1855
|
-
/** 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. */
|
|
1856
1836
|
force?: boolean;
|
|
1857
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. */
|
|
1858
1838
|
key?: string;
|
|
1859
|
-
/** Required. Name of the resource */
|
|
1839
|
+
/** Required. Name of the resource. */
|
|
1860
1840
|
name: string;
|
|
1861
1841
|
/** OAuth 2.0 token for the current user. */
|
|
1862
1842
|
oauth_token?: string;
|
|
@@ -1885,7 +1865,7 @@ declare namespace gapi.client {
|
|
|
1885
1865
|
fields?: string;
|
|
1886
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. */
|
|
1887
1867
|
key?: string;
|
|
1888
|
-
/** Required. Name of the resource */
|
|
1868
|
+
/** Required. Name of the resource. */
|
|
1889
1869
|
name: string;
|
|
1890
1870
|
/** OAuth 2.0 token for the current user. */
|
|
1891
1871
|
oauth_token?: string;
|
|
@@ -1916,13 +1896,13 @@ declare namespace gapi.client {
|
|
|
1916
1896
|
key?: string;
|
|
1917
1897
|
/** OAuth 2.0 token for the current user. */
|
|
1918
1898
|
oauth_token?: string;
|
|
1919
|
-
/** Hint for how to order the results */
|
|
1899
|
+
/** Hint for how to order the results. */
|
|
1920
1900
|
orderBy?: string;
|
|
1921
1901
|
/** Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
1922
1902
|
pageSize?: number;
|
|
1923
1903
|
/** A token identifying a page of results the server should return. */
|
|
1924
1904
|
pageToken?: string;
|
|
1925
|
-
/** Required. Parent value for ListEvaluationsRequest */
|
|
1905
|
+
/** Required. Parent value for ListEvaluationsRequest. */
|
|
1926
1906
|
parent: string;
|
|
1927
1907
|
/** Returns response with indentations and line breaks. */
|
|
1928
1908
|
prettyPrint?: boolean;
|
|
@@ -1947,7 +1927,7 @@ declare namespace gapi.client {
|
|
|
1947
1927
|
fields?: string;
|
|
1948
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. */
|
|
1949
1929
|
key?: string;
|
|
1950
|
-
/**
|
|
1930
|
+
/** Name of resource that has the form `projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}`. */
|
|
1951
1931
|
name: string;
|
|
1952
1932
|
/** OAuth 2.0 token for the current user. */
|
|
1953
1933
|
oauth_token?: string;
|
|
@@ -1980,7 +1960,7 @@ declare namespace gapi.client {
|
|
|
1980
1960
|
fields?: string;
|
|
1981
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. */
|
|
1982
1962
|
key?: string;
|
|
1983
|
-
/**
|
|
1963
|
+
/** Name of resource that has the form `projects/{project_id}/locations/{location_id}/evaluations/{evaluation_id}`. */
|
|
1984
1964
|
name: string;
|
|
1985
1965
|
/** OAuth 2.0 token for the current user. */
|
|
1986
1966
|
oauth_token?: string;
|
|
@@ -2256,7 +2236,7 @@ declare namespace gapi.client {
|
|
|
2256
2236
|
evaluationType?: string;
|
|
2257
2237
|
/** Selector specifying which fields to include in a partial response. */
|
|
2258
2238
|
fields?: string;
|
|
2259
|
-
/** Filter based on primary_category, secondary_category */
|
|
2239
|
+
/** Filter based on primary_category, secondary_category. */
|
|
2260
2240
|
filter?: string;
|
|
2261
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. */
|
|
2262
2242
|
key?: string;
|
|
@@ -2266,7 +2246,7 @@ declare namespace gapi.client {
|
|
|
2266
2246
|
pageSize?: number;
|
|
2267
2247
|
/** A token identifying a page of results the server should return. */
|
|
2268
2248
|
pageToken?: string;
|
|
2269
|
-
/** 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. */
|
|
2270
2250
|
parent: string;
|
|
2271
2251
|
/** Returns response with indentations and line breaks. */
|
|
2272
2252
|
prettyPrint?: boolean;
|