@maxim_mazurok/gapi.client.workloadmanager-v1 0.1.20260121 → 0.1.20260204
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 +614 -2
- 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: 20260204
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -28,6 +28,54 @@ 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
|
/** command is the name of the agent one-time executable that will be invoked. */
|
|
33
81
|
command?: string;
|
|
@@ -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;
|
|
@@ -151,12 +233,86 @@ 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
318
|
/** Optional. BigQuery destination */
|
|
@@ -312,6 +468,22 @@ declare namespace gapi.client {
|
|
|
312
468
|
/** The invalid rules that failed to be validated. */
|
|
313
469
|
invalidRules?: InvalidRule[];
|
|
314
470
|
}
|
|
471
|
+
interface ListActuationsResponse {
|
|
472
|
+
/** The list of Actuation */
|
|
473
|
+
actuations?: Actuation[];
|
|
474
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
475
|
+
nextPageToken?: string;
|
|
476
|
+
/** Unordered list. Locations that could not be reached. */
|
|
477
|
+
unreachable?: string[];
|
|
478
|
+
}
|
|
479
|
+
interface ListDeploymentsResponse {
|
|
480
|
+
/** The list of Deployment */
|
|
481
|
+
deployments?: Deployment[];
|
|
482
|
+
/** A token identifying a page of results the server should return. */
|
|
483
|
+
nextPageToken?: string;
|
|
484
|
+
/** Unordered list. Locations that could not be reached. */
|
|
485
|
+
unreachable?: string[];
|
|
486
|
+
}
|
|
315
487
|
interface ListDiscoveredProfilesResponse {
|
|
316
488
|
/** Output only. A token identifying a page of results the server should return */
|
|
317
489
|
nextPageToken?: string;
|
|
@@ -380,6 +552,31 @@ declare namespace gapi.client {
|
|
|
380
552
|
/** Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` */
|
|
381
553
|
name?: string;
|
|
382
554
|
}
|
|
555
|
+
interface LocationDetails {
|
|
556
|
+
/** Optional. create firewall, if true, create firewall for the deployment. This field provides an option to not always create firewall for the deployment. */
|
|
557
|
+
createCommsFirewall?: boolean;
|
|
558
|
+
/** Optional. network tags */
|
|
559
|
+
customTags?: string[];
|
|
560
|
+
/** Optional. when user skip DNS configuration from UI, deployment_dns_enabled=false otherwise deployment_dns_enabled=true */
|
|
561
|
+
deploymentDnsEnabled?: boolean;
|
|
562
|
+
/** Optional. dns zone name */
|
|
563
|
+
dnsZone?: string;
|
|
564
|
+
/** Optional. dns_zone_name_suffix */
|
|
565
|
+
dnsZoneNameSuffix?: string;
|
|
566
|
+
internetAccess?: string;
|
|
567
|
+
/** Optional. network project */
|
|
568
|
+
networkProject?: string;
|
|
569
|
+
/** Required. region_name */
|
|
570
|
+
regionName?: string;
|
|
571
|
+
/** Required. subnet_name */
|
|
572
|
+
subnetName?: string;
|
|
573
|
+
/** Required. vpc_name */
|
|
574
|
+
vpcName?: string;
|
|
575
|
+
/** Required. zone1_name */
|
|
576
|
+
zone1Name?: string;
|
|
577
|
+
/** Optional. zone2_name */
|
|
578
|
+
zone2Name?: string;
|
|
579
|
+
}
|
|
383
580
|
interface Notice {
|
|
384
581
|
/** Output only. Message of the notice */
|
|
385
582
|
message?: string;
|
|
@@ -418,6 +615,20 @@ declare namespace gapi.client {
|
|
|
418
615
|
/** Output only. Name of the verb executed by the operation. */
|
|
419
616
|
verb?: string;
|
|
420
617
|
}
|
|
618
|
+
interface Pacemaker {
|
|
619
|
+
/** Required. bucket location for node certificates */
|
|
620
|
+
bucketNameNodeCertificates?: string;
|
|
621
|
+
/** Required. pacemaker cluster name */
|
|
622
|
+
pacemakerCluster?: string;
|
|
623
|
+
/** Required. pacemaker cluster secret name */
|
|
624
|
+
pacemakerClusterSecret?: string;
|
|
625
|
+
/** Required. pacemaker cluster username */
|
|
626
|
+
pacemakerClusterUsername?: string;
|
|
627
|
+
/** Required. sql pacemaker secret name */
|
|
628
|
+
sqlPacemakerSecret?: string;
|
|
629
|
+
/** Required. sql pacemaker username */
|
|
630
|
+
sqlPacemakerUsername?: string;
|
|
631
|
+
}
|
|
421
632
|
interface Product {
|
|
422
633
|
/** Optional. Name of the product. */
|
|
423
634
|
name?: string;
|
|
@@ -696,6 +907,33 @@ declare namespace gapi.client {
|
|
|
696
907
|
/** Optional. SAP Instance numbers. They are from '00' to '99'. */
|
|
697
908
|
numbers?: string[];
|
|
698
909
|
}
|
|
910
|
+
interface SapSystemS4Config {
|
|
911
|
+
allowStoppingForUpdate?: boolean;
|
|
912
|
+
/** Ansible runner service account - let custoemrs bring their own SA for Ansible runner */
|
|
913
|
+
ansibleRunnerServiceAccount?: string;
|
|
914
|
+
/** instance details */
|
|
915
|
+
app?: AppDetails;
|
|
916
|
+
/** database details */
|
|
917
|
+
database?: DatabaseDetails;
|
|
918
|
+
/** Required. two model non-HA and HA supported */
|
|
919
|
+
deploymentModel?: string;
|
|
920
|
+
/** Required. deployment environment */
|
|
921
|
+
environmentType?: string;
|
|
922
|
+
/** the project that infrastructure deployed, current only support the same project where the deployment resource exist. */
|
|
923
|
+
gcpProjectId?: string;
|
|
924
|
+
/** database details */
|
|
925
|
+
location?: LocationDetails;
|
|
926
|
+
/** Required. media_bucket_name */
|
|
927
|
+
mediaBucketName?: string;
|
|
928
|
+
/** Optional. sap_boot_disk_image */
|
|
929
|
+
sapBootDiskImage?: string;
|
|
930
|
+
/** Required. support scale up and scale out */
|
|
931
|
+
scalingMethod?: string;
|
|
932
|
+
/** Required. sap hana version */
|
|
933
|
+
version?: string;
|
|
934
|
+
/** vm_prefix */
|
|
935
|
+
vmPrefix?: string;
|
|
936
|
+
}
|
|
699
937
|
interface SapValidation {
|
|
700
938
|
/** Required. The project_id of the cloud project that the Insight data comes from. */
|
|
701
939
|
projectId?: string;
|
|
@@ -744,6 +982,26 @@ declare namespace gapi.client {
|
|
|
744
982
|
/** Optional. If not specified, the default timeout is 60 seconds. */
|
|
745
983
|
timeoutSeconds?: number;
|
|
746
984
|
}
|
|
985
|
+
interface SqlLocationDetails {
|
|
986
|
+
/** 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 */
|
|
987
|
+
dnsZone?: string;
|
|
988
|
+
/** Required. the project that infrastructure deployed, currently only supports the same project where the deployment resource exists. */
|
|
989
|
+
gcpProjectId?: string;
|
|
990
|
+
/** Required. Internet Access */
|
|
991
|
+
internetAccess?: string;
|
|
992
|
+
/** Required. network name */
|
|
993
|
+
network?: string;
|
|
994
|
+
/** Required. primary zone */
|
|
995
|
+
primaryZone?: string;
|
|
996
|
+
/** Required. region name */
|
|
997
|
+
region?: string;
|
|
998
|
+
/** Optional. secondary zone can't be same as primary_zone and is only for High Availability deployment mode */
|
|
999
|
+
secondaryZone?: string;
|
|
1000
|
+
/** Required. subnetwork name */
|
|
1001
|
+
subnetwork?: string;
|
|
1002
|
+
/** Optional. teriary zone can't be same as primary_zone and secondary zone, and it is only for High Availability deployment mode */
|
|
1003
|
+
tertiaryZone?: string;
|
|
1004
|
+
}
|
|
747
1005
|
interface SqlserverValidation {
|
|
748
1006
|
/** Optional. The agent version collected this data point */
|
|
749
1007
|
agentVersion?: string;
|
|
@@ -764,6 +1022,42 @@ declare namespace gapi.client {
|
|
|
764
1022
|
/** Optional. The Sqlserver system that the validation data is from. */
|
|
765
1023
|
type?: string;
|
|
766
1024
|
}
|
|
1025
|
+
interface SqlServerWorkload {
|
|
1026
|
+
/** Required. active directory details */
|
|
1027
|
+
activeDirectory?: ActiveDirectory;
|
|
1028
|
+
/** Compute engine service account - let customers bring their own SA for Compute engine */
|
|
1029
|
+
computeEngineServiceAccount?: string;
|
|
1030
|
+
/** Required. database details */
|
|
1031
|
+
database?: Database;
|
|
1032
|
+
/** Required. HIGH_AVAILABILITY or SINGLE_INSTANCE */
|
|
1033
|
+
deploymentModel?: string;
|
|
1034
|
+
/** Required. deployment environment */
|
|
1035
|
+
environmentType?: string;
|
|
1036
|
+
/** Optional. SHARED_DISK or S2D */
|
|
1037
|
+
fciType?: string;
|
|
1038
|
+
/** Optional. AOAG or FCI, it is only needed for High Availability deployment mode */
|
|
1039
|
+
haType?: string;
|
|
1040
|
+
/** Required. SQL licensing type */
|
|
1041
|
+
isSqlPayg?: boolean;
|
|
1042
|
+
/** Required. location details */
|
|
1043
|
+
location?: SqlLocationDetails;
|
|
1044
|
+
/** Required. name of the media storing SQL server installation files */
|
|
1045
|
+
mediaBucket?: string;
|
|
1046
|
+
/** Required. type of the operating system the SQL server is going to run on top of */
|
|
1047
|
+
operatingSystemType?: string;
|
|
1048
|
+
/** Required. the image of the operating system */
|
|
1049
|
+
osImage?: string;
|
|
1050
|
+
/** 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 */
|
|
1051
|
+
osImageType?: string;
|
|
1052
|
+
/** Optional. pacemaker configuration, only applicable for Linux HA deployments */
|
|
1053
|
+
pacemaker?: Pacemaker;
|
|
1054
|
+
/** Optional. SQL Server Edition type, only applicable when Operating System is Linux */
|
|
1055
|
+
sqlServerEdition?: string;
|
|
1056
|
+
/** Optional. 2017 or 2019 or 2022 */
|
|
1057
|
+
sqlServerVersion?: string;
|
|
1058
|
+
/** Required. should be unique in the project */
|
|
1059
|
+
vmPrefix?: string;
|
|
1060
|
+
}
|
|
767
1061
|
interface Status {
|
|
768
1062
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
769
1063
|
code?: number;
|
|
@@ -780,6 +1074,10 @@ declare namespace gapi.client {
|
|
|
780
1074
|
/** Output only. Number of new fixes compared to the previous execution */
|
|
781
1075
|
newFixes?: string;
|
|
782
1076
|
}
|
|
1077
|
+
interface TerraformVariable {
|
|
1078
|
+
/** Optional. Input variable value. */
|
|
1079
|
+
inputValue?: any;
|
|
1080
|
+
}
|
|
783
1081
|
interface TorsoValidation {
|
|
784
1082
|
/** Required. agent_version lists the version of the agent that collected this data. */
|
|
785
1083
|
agentVersion?: string;
|
|
@@ -843,6 +1141,319 @@ declare namespace gapi.client {
|
|
|
843
1141
|
requestId?: string;
|
|
844
1142
|
}
|
|
845
1143
|
interface WriteInsightResponse {}
|
|
1144
|
+
interface ActuationsResource {
|
|
1145
|
+
/** Creates a new actuation for an existing Deployment. */
|
|
1146
|
+
create(request: {
|
|
1147
|
+
/** V1 error format. */
|
|
1148
|
+
'$.xgafv'?: string;
|
|
1149
|
+
/** OAuth access token. */
|
|
1150
|
+
access_token?: string;
|
|
1151
|
+
/** Data format for response. */
|
|
1152
|
+
alt?: string;
|
|
1153
|
+
/** JSONP */
|
|
1154
|
+
callback?: string;
|
|
1155
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1156
|
+
fields?: string;
|
|
1157
|
+
/** 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. */
|
|
1158
|
+
key?: string;
|
|
1159
|
+
/** OAuth 2.0 token for the current user. */
|
|
1160
|
+
oauth_token?: string;
|
|
1161
|
+
/** Required. The resource name of the Actuation location using the form: 'projects/{project_id}/locations/{location}/deployments/{deployment}' */
|
|
1162
|
+
parent: string;
|
|
1163
|
+
/** Returns response with indentations and line breaks. */
|
|
1164
|
+
prettyPrint?: boolean;
|
|
1165
|
+
/** 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. */
|
|
1166
|
+
quotaUser?: string;
|
|
1167
|
+
/** 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). */
|
|
1168
|
+
requestId?: string;
|
|
1169
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1170
|
+
upload_protocol?: string;
|
|
1171
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1172
|
+
uploadType?: string;
|
|
1173
|
+
/** Request body */
|
|
1174
|
+
resource: Actuation;
|
|
1175
|
+
}): Request<Operation>;
|
|
1176
|
+
create(
|
|
1177
|
+
request: {
|
|
1178
|
+
/** V1 error format. */
|
|
1179
|
+
'$.xgafv'?: string;
|
|
1180
|
+
/** OAuth access token. */
|
|
1181
|
+
access_token?: string;
|
|
1182
|
+
/** Data format for response. */
|
|
1183
|
+
alt?: string;
|
|
1184
|
+
/** JSONP */
|
|
1185
|
+
callback?: string;
|
|
1186
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1187
|
+
fields?: string;
|
|
1188
|
+
/** 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. */
|
|
1189
|
+
key?: string;
|
|
1190
|
+
/** OAuth 2.0 token for the current user. */
|
|
1191
|
+
oauth_token?: string;
|
|
1192
|
+
/** Required. The resource name of the Actuation location using the form: 'projects/{project_id}/locations/{location}/deployments/{deployment}' */
|
|
1193
|
+
parent: string;
|
|
1194
|
+
/** Returns response with indentations and line breaks. */
|
|
1195
|
+
prettyPrint?: boolean;
|
|
1196
|
+
/** 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. */
|
|
1197
|
+
quotaUser?: string;
|
|
1198
|
+
/** 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). */
|
|
1199
|
+
requestId?: string;
|
|
1200
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1201
|
+
upload_protocol?: string;
|
|
1202
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1203
|
+
uploadType?: string;
|
|
1204
|
+
},
|
|
1205
|
+
body: Actuation,
|
|
1206
|
+
): Request<Operation>;
|
|
1207
|
+
/** Deletes a single Actuation */
|
|
1208
|
+
delete(request?: {
|
|
1209
|
+
/** V1 error format. */
|
|
1210
|
+
'$.xgafv'?: string;
|
|
1211
|
+
/** OAuth access token. */
|
|
1212
|
+
access_token?: string;
|
|
1213
|
+
/** Data format for response. */
|
|
1214
|
+
alt?: string;
|
|
1215
|
+
/** JSONP */
|
|
1216
|
+
callback?: string;
|
|
1217
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1218
|
+
fields?: string;
|
|
1219
|
+
/** 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. */
|
|
1220
|
+
key?: string;
|
|
1221
|
+
/** Required. The name of the book to delete. project/{project_id}/locations/{location_id}/deployments/{deployment_id}/actuations/{actuation_id} */
|
|
1222
|
+
name: string;
|
|
1223
|
+
/** OAuth 2.0 token for the current user. */
|
|
1224
|
+
oauth_token?: string;
|
|
1225
|
+
/** Returns response with indentations and line breaks. */
|
|
1226
|
+
prettyPrint?: boolean;
|
|
1227
|
+
/** 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. */
|
|
1228
|
+
quotaUser?: string;
|
|
1229
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1230
|
+
upload_protocol?: string;
|
|
1231
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1232
|
+
uploadType?: string;
|
|
1233
|
+
}): Request<Operation>;
|
|
1234
|
+
/** Gets details of a single Actuation. */
|
|
1235
|
+
get(request?: {
|
|
1236
|
+
/** V1 error format. */
|
|
1237
|
+
'$.xgafv'?: string;
|
|
1238
|
+
/** OAuth access token. */
|
|
1239
|
+
access_token?: string;
|
|
1240
|
+
/** Data format for response. */
|
|
1241
|
+
alt?: string;
|
|
1242
|
+
/** JSONP */
|
|
1243
|
+
callback?: string;
|
|
1244
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1245
|
+
fields?: string;
|
|
1246
|
+
/** 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
|
+
key?: string;
|
|
1248
|
+
/** Required. Name of the resource */
|
|
1249
|
+
name: string;
|
|
1250
|
+
/** OAuth 2.0 token for the current user. */
|
|
1251
|
+
oauth_token?: string;
|
|
1252
|
+
/** Returns response with indentations and line breaks. */
|
|
1253
|
+
prettyPrint?: boolean;
|
|
1254
|
+
/** 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. */
|
|
1255
|
+
quotaUser?: string;
|
|
1256
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1257
|
+
upload_protocol?: string;
|
|
1258
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1259
|
+
uploadType?: string;
|
|
1260
|
+
}): Request<Actuation>;
|
|
1261
|
+
/** Lists Actuations in a given project, location and deployment. */
|
|
1262
|
+
list(request?: {
|
|
1263
|
+
/** V1 error format. */
|
|
1264
|
+
'$.xgafv'?: string;
|
|
1265
|
+
/** OAuth access token. */
|
|
1266
|
+
access_token?: string;
|
|
1267
|
+
/** Data format for response. */
|
|
1268
|
+
alt?: string;
|
|
1269
|
+
/** JSONP */
|
|
1270
|
+
callback?: string;
|
|
1271
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1272
|
+
fields?: string;
|
|
1273
|
+
/** Optional. Filtering results */
|
|
1274
|
+
filter?: string;
|
|
1275
|
+
/** 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
|
+
key?: string;
|
|
1277
|
+
/** OAuth 2.0 token for the current user. */
|
|
1278
|
+
oauth_token?: string;
|
|
1279
|
+
/** Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details. */
|
|
1280
|
+
orderBy?: string;
|
|
1281
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
1282
|
+
pageSize?: number;
|
|
1283
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
1284
|
+
pageToken?: string;
|
|
1285
|
+
/** Required. The resource prefix of the Actuation using the form: 'projects/{project_id}/locations/{location}/deployments/{deployment}' */
|
|
1286
|
+
parent: string;
|
|
1287
|
+
/** Returns response with indentations and line breaks. */
|
|
1288
|
+
prettyPrint?: boolean;
|
|
1289
|
+
/** 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. */
|
|
1290
|
+
quotaUser?: string;
|
|
1291
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1292
|
+
upload_protocol?: string;
|
|
1293
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1294
|
+
uploadType?: string;
|
|
1295
|
+
}): Request<ListActuationsResponse>;
|
|
1296
|
+
}
|
|
1297
|
+
interface DeploymentsResource {
|
|
1298
|
+
/** Creates a new Deployment in a given project and location. */
|
|
1299
|
+
create(request: {
|
|
1300
|
+
/** V1 error format. */
|
|
1301
|
+
'$.xgafv'?: string;
|
|
1302
|
+
/** OAuth access token. */
|
|
1303
|
+
access_token?: string;
|
|
1304
|
+
/** Data format for response. */
|
|
1305
|
+
alt?: string;
|
|
1306
|
+
/** JSONP */
|
|
1307
|
+
callback?: string;
|
|
1308
|
+
/** Required. Id of the deployment */
|
|
1309
|
+
deploymentId?: string;
|
|
1310
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1311
|
+
fields?: string;
|
|
1312
|
+
/** 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. */
|
|
1313
|
+
key?: string;
|
|
1314
|
+
/** OAuth 2.0 token for the current user. */
|
|
1315
|
+
oauth_token?: string;
|
|
1316
|
+
/** Required. The resource prefix of the Deployment using the form: `projects/{project_id}/locations/{location_id}` */
|
|
1317
|
+
parent: string;
|
|
1318
|
+
/** Returns response with indentations and line breaks. */
|
|
1319
|
+
prettyPrint?: boolean;
|
|
1320
|
+
/** 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. */
|
|
1321
|
+
quotaUser?: string;
|
|
1322
|
+
/** 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). */
|
|
1323
|
+
requestId?: string;
|
|
1324
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1325
|
+
upload_protocol?: string;
|
|
1326
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1327
|
+
uploadType?: string;
|
|
1328
|
+
/** Request body */
|
|
1329
|
+
resource: Deployment;
|
|
1330
|
+
}): Request<Operation>;
|
|
1331
|
+
create(
|
|
1332
|
+
request: {
|
|
1333
|
+
/** V1 error format. */
|
|
1334
|
+
'$.xgafv'?: string;
|
|
1335
|
+
/** OAuth access token. */
|
|
1336
|
+
access_token?: string;
|
|
1337
|
+
/** Data format for response. */
|
|
1338
|
+
alt?: string;
|
|
1339
|
+
/** JSONP */
|
|
1340
|
+
callback?: string;
|
|
1341
|
+
/** Required. Id of the deployment */
|
|
1342
|
+
deploymentId?: string;
|
|
1343
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1344
|
+
fields?: string;
|
|
1345
|
+
/** 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. */
|
|
1346
|
+
key?: string;
|
|
1347
|
+
/** OAuth 2.0 token for the current user. */
|
|
1348
|
+
oauth_token?: string;
|
|
1349
|
+
/** Required. The resource prefix of the Deployment using the form: `projects/{project_id}/locations/{location_id}` */
|
|
1350
|
+
parent: string;
|
|
1351
|
+
/** Returns response with indentations and line breaks. */
|
|
1352
|
+
prettyPrint?: boolean;
|
|
1353
|
+
/** 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. */
|
|
1354
|
+
quotaUser?: string;
|
|
1355
|
+
/** 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). */
|
|
1356
|
+
requestId?: string;
|
|
1357
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1358
|
+
upload_protocol?: string;
|
|
1359
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1360
|
+
uploadType?: string;
|
|
1361
|
+
},
|
|
1362
|
+
body: Deployment,
|
|
1363
|
+
): Request<Operation>;
|
|
1364
|
+
/** Deletes a single Deployment. */
|
|
1365
|
+
delete(request?: {
|
|
1366
|
+
/** V1 error format. */
|
|
1367
|
+
'$.xgafv'?: string;
|
|
1368
|
+
/** OAuth access token. */
|
|
1369
|
+
access_token?: string;
|
|
1370
|
+
/** Data format for response. */
|
|
1371
|
+
alt?: string;
|
|
1372
|
+
/** JSONP */
|
|
1373
|
+
callback?: string;
|
|
1374
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1375
|
+
fields?: string;
|
|
1376
|
+
/** Optional. If set to true, any actuation will also be deleted. Followed the best practice from https://aip.dev/135#cascading-delete */
|
|
1377
|
+
force?: boolean;
|
|
1378
|
+
/** 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. */
|
|
1379
|
+
key?: string;
|
|
1380
|
+
/** Required. Name of the resource */
|
|
1381
|
+
name: string;
|
|
1382
|
+
/** OAuth 2.0 token for the current user. */
|
|
1383
|
+
oauth_token?: string;
|
|
1384
|
+
/** Returns response with indentations and line breaks. */
|
|
1385
|
+
prettyPrint?: boolean;
|
|
1386
|
+
/** 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. */
|
|
1387
|
+
quotaUser?: string;
|
|
1388
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1389
|
+
upload_protocol?: string;
|
|
1390
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1391
|
+
uploadType?: string;
|
|
1392
|
+
}): Request<Operation>;
|
|
1393
|
+
/** Gets details of a single Deployment. */
|
|
1394
|
+
get(request?: {
|
|
1395
|
+
/** V1 error format. */
|
|
1396
|
+
'$.xgafv'?: string;
|
|
1397
|
+
/** OAuth access token. */
|
|
1398
|
+
access_token?: string;
|
|
1399
|
+
/** Data format for response. */
|
|
1400
|
+
alt?: string;
|
|
1401
|
+
/** JSONP */
|
|
1402
|
+
callback?: string;
|
|
1403
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1404
|
+
fields?: string;
|
|
1405
|
+
/** 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. */
|
|
1406
|
+
key?: string;
|
|
1407
|
+
/** Required. Name of the resource. The format will be 'projects/{project_id}/locations/{location_id}/deployments/{deployment_id}' */
|
|
1408
|
+
name: string;
|
|
1409
|
+
/** OAuth 2.0 token for the current user. */
|
|
1410
|
+
oauth_token?: string;
|
|
1411
|
+
/** Returns response with indentations and line breaks. */
|
|
1412
|
+
prettyPrint?: boolean;
|
|
1413
|
+
/** 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. */
|
|
1414
|
+
quotaUser?: string;
|
|
1415
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1416
|
+
upload_protocol?: string;
|
|
1417
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1418
|
+
uploadType?: string;
|
|
1419
|
+
}): Request<Deployment>;
|
|
1420
|
+
/** Lists Deployments in a given project and location. */
|
|
1421
|
+
list(request?: {
|
|
1422
|
+
/** V1 error format. */
|
|
1423
|
+
'$.xgafv'?: string;
|
|
1424
|
+
/** OAuth access token. */
|
|
1425
|
+
access_token?: string;
|
|
1426
|
+
/** Data format for response. */
|
|
1427
|
+
alt?: string;
|
|
1428
|
+
/** JSONP */
|
|
1429
|
+
callback?: string;
|
|
1430
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1431
|
+
fields?: string;
|
|
1432
|
+
/** Optional. Filter resource follow https://google.aip.dev/160 */
|
|
1433
|
+
filter?: string;
|
|
1434
|
+
/** 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. */
|
|
1435
|
+
key?: string;
|
|
1436
|
+
/** OAuth 2.0 token for the current user. */
|
|
1437
|
+
oauth_token?: string;
|
|
1438
|
+
/** Optional. Field to sort by. See https://google.aip.dev/132#ordering for more details. */
|
|
1439
|
+
orderBy?: string;
|
|
1440
|
+
/** Optional. Requested page size. Server may return fewer items than requested. The maximum value is 1000; values above 1000 will be coerced to 1000. */
|
|
1441
|
+
pageSize?: number;
|
|
1442
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
1443
|
+
pageToken?: string;
|
|
1444
|
+
/** Required. The resource prefix of the Deployment using the form: `projects/{project_id}/locations/{location_id}` */
|
|
1445
|
+
parent: string;
|
|
1446
|
+
/** Returns response with indentations and line breaks. */
|
|
1447
|
+
prettyPrint?: boolean;
|
|
1448
|
+
/** 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. */
|
|
1449
|
+
quotaUser?: string;
|
|
1450
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1451
|
+
upload_protocol?: string;
|
|
1452
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1453
|
+
uploadType?: string;
|
|
1454
|
+
}): Request<ListDeploymentsResponse>;
|
|
1455
|
+
actuations: ActuationsResource;
|
|
1456
|
+
}
|
|
846
1457
|
interface HealthResource {
|
|
847
1458
|
/** Get the health of a discovered workload profile. */
|
|
848
1459
|
get(request?: {
|
|
@@ -1695,7 +2306,7 @@ declare namespace gapi.client {
|
|
|
1695
2306
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1696
2307
|
uploadType?: string;
|
|
1697
2308
|
}): Request<Location>;
|
|
1698
|
-
/** Lists information about the supported locations for this service. */
|
|
2309
|
+
/** Lists information about the supported locations for this service. This method can be called in two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include public locations as well as private or other locations specifically visible to the project. */
|
|
1699
2310
|
list(request?: {
|
|
1700
2311
|
/** V1 error format. */
|
|
1701
2312
|
'$.xgafv'?: string;
|
|
@@ -1730,6 +2341,7 @@ declare namespace gapi.client {
|
|
|
1730
2341
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1731
2342
|
uploadType?: string;
|
|
1732
2343
|
}): Request<ListLocationsResponse>;
|
|
2344
|
+
deployments: DeploymentsResource;
|
|
1733
2345
|
discoveredprofiles: DiscoveredprofilesResource;
|
|
1734
2346
|
evaluations: EvaluationsResource;
|
|
1735
2347
|
insights: InsightsResource;
|