@maxim_mazurok/gapi.client.workloadmanager-v1 0.0.20250129 → 0.0.20250219
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 +378 -1
- 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: 20250219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -34,6 +34,42 @@ declare namespace gapi.client {
|
|
|
34
34
|
/** parameters is a map of key/value pairs that can be used to specify additional one-time executable settings. */
|
|
35
35
|
parameters?: {[P in string]: string};
|
|
36
36
|
}
|
|
37
|
+
interface APILayerServer {
|
|
38
|
+
/** Output only. The api layer name */
|
|
39
|
+
name?: string;
|
|
40
|
+
/** Output only. OS information */
|
|
41
|
+
osVersion?: string;
|
|
42
|
+
/** Output only. resources in the component */
|
|
43
|
+
resources?: CloudResource[];
|
|
44
|
+
}
|
|
45
|
+
interface AvailabilityGroup {
|
|
46
|
+
/** Output only. The databases */
|
|
47
|
+
databases?: string[];
|
|
48
|
+
/** Output only. The availability group name */
|
|
49
|
+
name?: string;
|
|
50
|
+
/** Output only. The primary server */
|
|
51
|
+
primaryServer?: string;
|
|
52
|
+
/** Output only. The secondary servers */
|
|
53
|
+
secondaryServers?: string[];
|
|
54
|
+
}
|
|
55
|
+
interface BackendServer {
|
|
56
|
+
/** Output only. The backup file */
|
|
57
|
+
backupFile?: string;
|
|
58
|
+
/** Output only. The backup schedule */
|
|
59
|
+
backupSchedule?: string;
|
|
60
|
+
/** Output only. The backend name */
|
|
61
|
+
name?: string;
|
|
62
|
+
/** Output only. OS information */
|
|
63
|
+
osVersion?: string;
|
|
64
|
+
/** Output only. resources in the component */
|
|
65
|
+
resources?: CloudResource[];
|
|
66
|
+
}
|
|
67
|
+
interface BackupProperties {
|
|
68
|
+
/** Output only. The state of the latest backup. */
|
|
69
|
+
latestBackupStatus?: string;
|
|
70
|
+
/** The time when the latest backup was performed. */
|
|
71
|
+
latestBackupTime?: string;
|
|
72
|
+
}
|
|
37
73
|
interface BigQueryDestination {
|
|
38
74
|
/** Optional. determine if results will be saved in a new table */
|
|
39
75
|
createNewResultsTable?: boolean;
|
|
@@ -41,12 +77,56 @@ declare namespace gapi.client {
|
|
|
41
77
|
destinationDataset?: string;
|
|
42
78
|
}
|
|
43
79
|
interface CancelOperationRequest {}
|
|
80
|
+
interface CloudResource {
|
|
81
|
+
/** Output only. All instance properties. */
|
|
82
|
+
instanceProperties?: InstanceProperties;
|
|
83
|
+
/** Output only. ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc. */
|
|
84
|
+
kind?: string;
|
|
85
|
+
/** Output only. resource name */
|
|
86
|
+
name?: string;
|
|
87
|
+
}
|
|
88
|
+
interface Cluster {
|
|
89
|
+
/** Output only. The nodes */
|
|
90
|
+
nodes?: string[];
|
|
91
|
+
/** Output only. The witness server */
|
|
92
|
+
witnessServer?: string;
|
|
93
|
+
}
|
|
44
94
|
interface Command {
|
|
45
95
|
/** AgentCommand specifies a one-time executable program for the agent to run. */
|
|
46
96
|
agentCommand?: AgentCommand;
|
|
47
97
|
/** ShellCommand is invoked via the agent's command line executor. */
|
|
48
98
|
shellCommand?: ShellCommand;
|
|
49
99
|
}
|
|
100
|
+
interface ComponentHealth {
|
|
101
|
+
/** The component of a workload. */
|
|
102
|
+
component?: string;
|
|
103
|
+
/** The detailed health checks of the component. */
|
|
104
|
+
componentHealthChecks?: HealthCheck[];
|
|
105
|
+
/** Output only. The type of the component health. */
|
|
106
|
+
componentHealthType?: string;
|
|
107
|
+
/** Output only. The requirement of the component. */
|
|
108
|
+
isRequired?: boolean;
|
|
109
|
+
/** Output only. The health state of the component. */
|
|
110
|
+
state?: string;
|
|
111
|
+
/** Sub component health. */
|
|
112
|
+
subComponentHealthes?: ComponentHealth[];
|
|
113
|
+
}
|
|
114
|
+
interface Database {
|
|
115
|
+
/** Output only. The backup file */
|
|
116
|
+
backupFile?: string;
|
|
117
|
+
/** Output only. The backup schedule */
|
|
118
|
+
backupSchedule?: string;
|
|
119
|
+
/** Output only. The host VM */
|
|
120
|
+
hostVm?: string;
|
|
121
|
+
/** Output only. The database name */
|
|
122
|
+
name?: string;
|
|
123
|
+
}
|
|
124
|
+
interface DatabaseProperties {
|
|
125
|
+
/** Output only. Backup properties. */
|
|
126
|
+
backupProperties?: BackupProperties;
|
|
127
|
+
/** Output only. Type of the database. HANA, DB2, etc. */
|
|
128
|
+
databaseType?: string;
|
|
129
|
+
}
|
|
50
130
|
interface Empty {}
|
|
51
131
|
interface Evaluation {
|
|
52
132
|
/** Optional. BigQuery destination */
|
|
@@ -130,10 +210,30 @@ declare namespace gapi.client {
|
|
|
130
210
|
/** Required. URI of external data source. example of bq table {project_ID}.{dataset_ID}.{table_ID} */
|
|
131
211
|
uri?: string;
|
|
132
212
|
}
|
|
213
|
+
interface FrontEndServer {
|
|
214
|
+
/** Output only. The frontend name */
|
|
215
|
+
name?: string;
|
|
216
|
+
/** Output only. OS information */
|
|
217
|
+
osVersion?: string;
|
|
218
|
+
/** Output only. resources in the component */
|
|
219
|
+
resources?: CloudResource[];
|
|
220
|
+
}
|
|
133
221
|
interface GceInstanceFilter {
|
|
134
222
|
/** Service account of compute engine */
|
|
135
223
|
serviceAccounts?: string[];
|
|
136
224
|
}
|
|
225
|
+
interface HealthCheck {
|
|
226
|
+
/** Output only. The message of the health check. */
|
|
227
|
+
message?: string;
|
|
228
|
+
/** Output only. The health check source metric name. */
|
|
229
|
+
metric?: string;
|
|
230
|
+
/** Output only. The resource the check performs on. */
|
|
231
|
+
resource?: CloudResource;
|
|
232
|
+
/** Output only. The source of the health check. */
|
|
233
|
+
source?: string;
|
|
234
|
+
/** Output only. The state of the health check. */
|
|
235
|
+
state?: string;
|
|
236
|
+
}
|
|
137
237
|
interface Insight {
|
|
138
238
|
/** Required. The instance id where the insight is generated from */
|
|
139
239
|
instanceId?: string;
|
|
@@ -148,6 +248,48 @@ declare namespace gapi.client {
|
|
|
148
248
|
/** The insights data for workload validation of torso workloads. */
|
|
149
249
|
torsoValidation?: TorsoValidation;
|
|
150
250
|
}
|
|
251
|
+
interface Instance {
|
|
252
|
+
/** Output only. name of the VM */
|
|
253
|
+
name?: string;
|
|
254
|
+
/** Output only. The location of the VM */
|
|
255
|
+
region?: string;
|
|
256
|
+
/** Output only. The state of the VM */
|
|
257
|
+
status?: string;
|
|
258
|
+
}
|
|
259
|
+
interface InstanceProperties {
|
|
260
|
+
/** Optional. Instance number. */
|
|
261
|
+
instanceNumber?: string;
|
|
262
|
+
/** Optional. Instance machine type. */
|
|
263
|
+
machineType?: string;
|
|
264
|
+
/** Optional. Instance role. */
|
|
265
|
+
role?: string;
|
|
266
|
+
/** Optional. Instance roles. */
|
|
267
|
+
roles?: string[];
|
|
268
|
+
/** Optional. SAP Instance properties. */
|
|
269
|
+
sapInstanceProperties?: SapInstanceProperties;
|
|
270
|
+
/** Optional. Instance status. */
|
|
271
|
+
status?: string;
|
|
272
|
+
/** Optional. the next maintenance event on VM */
|
|
273
|
+
upcomingMaintenanceEvent?: UpcomingMaintenanceEvent;
|
|
274
|
+
}
|
|
275
|
+
interface Layer {
|
|
276
|
+
/** the application layer */
|
|
277
|
+
applicationType?: string;
|
|
278
|
+
/** Optional. the database layer */
|
|
279
|
+
databaseType?: string;
|
|
280
|
+
/** Optional. instances in a layer */
|
|
281
|
+
instances?: Instance[];
|
|
282
|
+
/** Output only. system identification of a layer */
|
|
283
|
+
sid?: string;
|
|
284
|
+
}
|
|
285
|
+
interface ListDiscoveredProfilesResponse {
|
|
286
|
+
/** Output only. A token identifying a page of results the server should return */
|
|
287
|
+
nextPageToken?: string;
|
|
288
|
+
/** Locations that could not be reached. */
|
|
289
|
+
unreachable?: string[];
|
|
290
|
+
/** Output only. The list of workload profiles */
|
|
291
|
+
workloadProfiles?: WorkloadProfile[];
|
|
292
|
+
}
|
|
151
293
|
interface ListEvaluationsResponse {
|
|
152
294
|
/** The list of Evaluation */
|
|
153
295
|
evaluations?: Evaluation[];
|
|
@@ -194,6 +336,12 @@ declare namespace gapi.client {
|
|
|
194
336
|
/** All scanned resources in response */
|
|
195
337
|
scannedResources?: ScannedResource[];
|
|
196
338
|
}
|
|
339
|
+
interface LoadBalancerServer {
|
|
340
|
+
/** Output only. The IP address */
|
|
341
|
+
ip?: string;
|
|
342
|
+
/** Output only. The VM name */
|
|
343
|
+
vm?: string;
|
|
344
|
+
}
|
|
197
345
|
interface Location {
|
|
198
346
|
/** The friendly name for this location, typically a nearby city name. For example, "Tokyo". */
|
|
199
347
|
displayName?: string;
|
|
@@ -238,6 +386,12 @@ declare namespace gapi.client {
|
|
|
238
386
|
/** Output only. Name of the verb executed by the operation. */
|
|
239
387
|
verb?: string;
|
|
240
388
|
}
|
|
389
|
+
interface Product {
|
|
390
|
+
/** Optional. Name of the product. */
|
|
391
|
+
name?: string;
|
|
392
|
+
/** Optional. Version of the product. */
|
|
393
|
+
version?: string;
|
|
394
|
+
}
|
|
241
395
|
interface Resource {
|
|
242
396
|
/** The name of the resource. */
|
|
243
397
|
name?: string;
|
|
@@ -306,6 +460,18 @@ declare namespace gapi.client {
|
|
|
306
460
|
/** 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). */
|
|
307
461
|
requestId?: string;
|
|
308
462
|
}
|
|
463
|
+
interface SapComponent {
|
|
464
|
+
/** Output only. All instance properties. */
|
|
465
|
+
databaseProperties?: DatabaseProperties;
|
|
466
|
+
/** A list of host URIs that are part of the HA configuration if present. An empty list indicates the component is not configured for HA. */
|
|
467
|
+
haHosts?: string[];
|
|
468
|
+
/** Output only. resources in the component */
|
|
469
|
+
resources?: CloudResource[];
|
|
470
|
+
/** Output only. sid is the sap component identificator */
|
|
471
|
+
sid?: string;
|
|
472
|
+
/** The detected topology of the component. */
|
|
473
|
+
topologyType?: string;
|
|
474
|
+
}
|
|
309
475
|
interface SapDiscovery {
|
|
310
476
|
/** Optional. An SAP system may run without an application layer. */
|
|
311
477
|
applicationLayer?: SapDiscoveryComponent;
|
|
@@ -413,6 +579,8 @@ declare namespace gapi.client {
|
|
|
413
579
|
appInstances?: SapDiscoveryResourceInstancePropertiesAppInstance[];
|
|
414
580
|
/** Optional. A list of instance URIs that are part of a cluster with this one. */
|
|
415
581
|
clusterInstances?: string[];
|
|
582
|
+
/** Optional. Disk mounts on the instance. */
|
|
583
|
+
diskMounts?: SapDiscoveryResourceInstancePropertiesDiskMount[];
|
|
416
584
|
/** Optional. The VM's instance number. */
|
|
417
585
|
instanceNumber?: string;
|
|
418
586
|
/** Optional. Bitmask of instance role, a resource may have multiple roles at once. */
|
|
@@ -428,6 +596,12 @@ declare namespace gapi.client {
|
|
|
428
596
|
/** Optional. Instance number of the SAP application instance. */
|
|
429
597
|
number?: string;
|
|
430
598
|
}
|
|
599
|
+
interface SapDiscoveryResourceInstancePropertiesDiskMount {
|
|
600
|
+
/** Optional. Filesystem mount point. */
|
|
601
|
+
mountPoint?: string;
|
|
602
|
+
/** Optional. Name of the disk. */
|
|
603
|
+
name?: string;
|
|
604
|
+
}
|
|
431
605
|
interface SapDiscoveryWorkloadProperties {
|
|
432
606
|
/** Optional. List of SAP Products and their versions running on the system. */
|
|
433
607
|
productVersions?: SapDiscoveryWorkloadPropertiesProductVersion[];
|
|
@@ -450,6 +624,10 @@ declare namespace gapi.client {
|
|
|
450
624
|
/** Optional. The component's major version. */
|
|
451
625
|
version?: string;
|
|
452
626
|
}
|
|
627
|
+
interface SapInstanceProperties {
|
|
628
|
+
/** Optional. SAP Instance numbers. They are from '00' to '99'. */
|
|
629
|
+
numbers?: string[];
|
|
630
|
+
}
|
|
453
631
|
interface SapValidation {
|
|
454
632
|
/** Required. The project_id of the cloud project that the Insight data comes from. */
|
|
455
633
|
projectId?: string;
|
|
@@ -466,6 +644,18 @@ declare namespace gapi.client {
|
|
|
466
644
|
/** Optional. The SAP system that the validation data is from. */
|
|
467
645
|
sapValidationType?: string;
|
|
468
646
|
}
|
|
647
|
+
interface SapWorkload {
|
|
648
|
+
/** Output only. the acsc componment */
|
|
649
|
+
application?: SapComponent;
|
|
650
|
+
/** Output only. the architecture */
|
|
651
|
+
architecture?: string;
|
|
652
|
+
/** Output only. the database componment */
|
|
653
|
+
database?: SapComponent;
|
|
654
|
+
/** Output only. The metadata for SAP workload. */
|
|
655
|
+
metadata?: {[P in string]: string};
|
|
656
|
+
/** Output only. the products on this workload. */
|
|
657
|
+
products?: Product[];
|
|
658
|
+
}
|
|
469
659
|
interface ScannedResource {
|
|
470
660
|
/** resource name */
|
|
471
661
|
resource?: string;
|
|
@@ -500,6 +690,16 @@ declare namespace gapi.client {
|
|
|
500
690
|
/** Optional. The Sqlserver system that the validation data is from. */
|
|
501
691
|
type?: string;
|
|
502
692
|
}
|
|
693
|
+
interface SqlserverWorkload {
|
|
694
|
+
/** Output only. The availability groups for sqlserver */
|
|
695
|
+
ags?: AvailabilityGroup[];
|
|
696
|
+
/** Output only. The cluster for sqlserver */
|
|
697
|
+
cluster?: Cluster;
|
|
698
|
+
/** Output only. The databases for sqlserver */
|
|
699
|
+
databases?: Database[];
|
|
700
|
+
/** Output only. The load balancer for sqlserver */
|
|
701
|
+
loadBalancerServer?: LoadBalancerServer;
|
|
702
|
+
}
|
|
503
703
|
interface Status {
|
|
504
704
|
/** The status code, which should be an enum value of google.rpc.Code. */
|
|
505
705
|
code?: number;
|
|
@@ -516,6 +716,16 @@ declare namespace gapi.client {
|
|
|
516
716
|
/** Output only. Number of new fixes compared to the previous execution */
|
|
517
717
|
newFixes?: string;
|
|
518
718
|
}
|
|
719
|
+
interface ThreeTierWorkload {
|
|
720
|
+
/** Output only. The API layer for three tier workload */
|
|
721
|
+
apiLayer?: APILayerServer;
|
|
722
|
+
/** Output only. The backend for three tier workload */
|
|
723
|
+
backend?: BackendServer;
|
|
724
|
+
/** Output only. the workload endpoint */
|
|
725
|
+
endpoint?: string;
|
|
726
|
+
/** Output only. The frontend for three tier workload */
|
|
727
|
+
frontend?: FrontEndServer;
|
|
728
|
+
}
|
|
519
729
|
interface TorsoValidation {
|
|
520
730
|
/** Required. agent_version lists the version of the agent that collected this data. */
|
|
521
731
|
agentVersion?: string;
|
|
@@ -528,6 +738,16 @@ declare namespace gapi.client {
|
|
|
528
738
|
/** Required. workload_type specifies the type of torso workload. */
|
|
529
739
|
workloadType?: string;
|
|
530
740
|
}
|
|
741
|
+
interface UpcomingMaintenanceEvent {
|
|
742
|
+
/** Optional. End time */
|
|
743
|
+
endTime?: string;
|
|
744
|
+
/** Optional. Maintenance status */
|
|
745
|
+
maintenanceStatus?: string;
|
|
746
|
+
/** Optional. Start time */
|
|
747
|
+
startTime?: string;
|
|
748
|
+
/** Optional. Type */
|
|
749
|
+
type?: string;
|
|
750
|
+
}
|
|
531
751
|
interface ViolationDetails {
|
|
532
752
|
/** The name of the asset. */
|
|
533
753
|
asset?: string;
|
|
@@ -536,6 +756,38 @@ declare namespace gapi.client {
|
|
|
536
756
|
/** The service account associated with the resource. */
|
|
537
757
|
serviceAccount?: string;
|
|
538
758
|
}
|
|
759
|
+
interface WorkloadProfile {
|
|
760
|
+
/** Optional. The application layer */
|
|
761
|
+
application?: Layer;
|
|
762
|
+
/** Optional. The ascs layer */
|
|
763
|
+
ascs?: Layer;
|
|
764
|
+
/** Optional. The database layer */
|
|
765
|
+
database?: Layer;
|
|
766
|
+
/** Optional. such as name, description, version. More example can be found in deployment */
|
|
767
|
+
labels?: {[P in string]: string};
|
|
768
|
+
/** Identifier. name of resource names have the form 'projects/{project_id}/workloads/{workload_id}' */
|
|
769
|
+
name?: string;
|
|
770
|
+
/** Required. time when the workload data was refreshed */
|
|
771
|
+
refreshedTime?: string;
|
|
772
|
+
/** The sap workload content */
|
|
773
|
+
sapWorkload?: SapWorkload;
|
|
774
|
+
/** The sqlserver workload content */
|
|
775
|
+
sqlserverWorkload?: SqlserverWorkload;
|
|
776
|
+
/** Output only. [output only] the current state if a a workload */
|
|
777
|
+
state?: string;
|
|
778
|
+
/** The 3 tier web app workload content */
|
|
779
|
+
threeTierWorkload?: ThreeTierWorkload;
|
|
780
|
+
/** Required. The type of the workload */
|
|
781
|
+
workloadType?: string;
|
|
782
|
+
}
|
|
783
|
+
interface WorkloadProfileHealth {
|
|
784
|
+
/** The time when the health check was performed. */
|
|
785
|
+
checkTime?: string;
|
|
786
|
+
/** The detailed condition reports of each component. */
|
|
787
|
+
componentHealthes?: ComponentHealth[];
|
|
788
|
+
/** Output only. The health state of the workload. */
|
|
789
|
+
state?: string;
|
|
790
|
+
}
|
|
539
791
|
interface WriteInsightRequest {
|
|
540
792
|
/** Optional. The agent version collected this data point. */
|
|
541
793
|
agentVersion?: string;
|
|
@@ -545,6 +797,98 @@ declare namespace gapi.client {
|
|
|
545
797
|
requestId?: string;
|
|
546
798
|
}
|
|
547
799
|
interface WriteInsightResponse {}
|
|
800
|
+
interface HealthesResource {
|
|
801
|
+
/** Get the health of a discovered workload profile. */
|
|
802
|
+
get(request?: {
|
|
803
|
+
/** V1 error format. */
|
|
804
|
+
'$.xgafv'?: string;
|
|
805
|
+
/** OAuth access token. */
|
|
806
|
+
access_token?: string;
|
|
807
|
+
/** Data format for response. */
|
|
808
|
+
alt?: string;
|
|
809
|
+
/** JSONP */
|
|
810
|
+
callback?: string;
|
|
811
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
812
|
+
fields?: string;
|
|
813
|
+
/** 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. */
|
|
814
|
+
key?: string;
|
|
815
|
+
/** Required. The resource name */
|
|
816
|
+
name: string;
|
|
817
|
+
/** OAuth 2.0 token for the current user. */
|
|
818
|
+
oauth_token?: string;
|
|
819
|
+
/** Returns response with indentations and line breaks. */
|
|
820
|
+
prettyPrint?: boolean;
|
|
821
|
+
/** 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. */
|
|
822
|
+
quotaUser?: string;
|
|
823
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
824
|
+
upload_protocol?: string;
|
|
825
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
826
|
+
uploadType?: string;
|
|
827
|
+
}): Request<WorkloadProfileHealth>;
|
|
828
|
+
}
|
|
829
|
+
interface DiscoveredprofilesResource {
|
|
830
|
+
/** Gets details of a discovered workload profile. */
|
|
831
|
+
get(request?: {
|
|
832
|
+
/** V1 error format. */
|
|
833
|
+
'$.xgafv'?: string;
|
|
834
|
+
/** OAuth access token. */
|
|
835
|
+
access_token?: string;
|
|
836
|
+
/** Data format for response. */
|
|
837
|
+
alt?: string;
|
|
838
|
+
/** JSONP */
|
|
839
|
+
callback?: string;
|
|
840
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
841
|
+
fields?: string;
|
|
842
|
+
/** 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. */
|
|
843
|
+
key?: string;
|
|
844
|
+
/** Required. Name of the resource */
|
|
845
|
+
name: string;
|
|
846
|
+
/** OAuth 2.0 token for the current user. */
|
|
847
|
+
oauth_token?: string;
|
|
848
|
+
/** Returns response with indentations and line breaks. */
|
|
849
|
+
prettyPrint?: boolean;
|
|
850
|
+
/** 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. */
|
|
851
|
+
quotaUser?: string;
|
|
852
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
853
|
+
upload_protocol?: string;
|
|
854
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
855
|
+
uploadType?: string;
|
|
856
|
+
}): Request<WorkloadProfile>;
|
|
857
|
+
/** List discovered workload profiles */
|
|
858
|
+
list(request?: {
|
|
859
|
+
/** V1 error format. */
|
|
860
|
+
'$.xgafv'?: string;
|
|
861
|
+
/** OAuth access token. */
|
|
862
|
+
access_token?: string;
|
|
863
|
+
/** Data format for response. */
|
|
864
|
+
alt?: string;
|
|
865
|
+
/** JSONP */
|
|
866
|
+
callback?: string;
|
|
867
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
868
|
+
fields?: string;
|
|
869
|
+
/** Optional. Filtering results */
|
|
870
|
+
filter?: string;
|
|
871
|
+
/** 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. */
|
|
872
|
+
key?: string;
|
|
873
|
+
/** OAuth 2.0 token for the current user. */
|
|
874
|
+
oauth_token?: string;
|
|
875
|
+
/** Optional. Requested page size. Server may return fewer items than requested. If unspecified, server will pick an appropriate default. */
|
|
876
|
+
pageSize?: number;
|
|
877
|
+
/** Optional. A token identifying a page of results the server should return. */
|
|
878
|
+
pageToken?: string;
|
|
879
|
+
/** Required. Parent value for ListDiscoveredProfilesRequest */
|
|
880
|
+
parent: string;
|
|
881
|
+
/** Returns response with indentations and line breaks. */
|
|
882
|
+
prettyPrint?: boolean;
|
|
883
|
+
/** 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. */
|
|
884
|
+
quotaUser?: string;
|
|
885
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
886
|
+
upload_protocol?: string;
|
|
887
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
888
|
+
uploadType?: string;
|
|
889
|
+
}): Request<ListDiscoveredProfilesResponse>;
|
|
890
|
+
healthes: HealthesResource;
|
|
891
|
+
}
|
|
548
892
|
interface ResultsResource {
|
|
549
893
|
/** Lists the result of a single evaluation. */
|
|
550
894
|
list(request?: {
|
|
@@ -1178,6 +1522,37 @@ declare namespace gapi.client {
|
|
|
1178
1522
|
uploadType?: string;
|
|
1179
1523
|
}): Request<ListRulesResponse>;
|
|
1180
1524
|
}
|
|
1525
|
+
interface SapSystemsResource {
|
|
1526
|
+
/** Delete the data insights from workload manager data warehouse. */
|
|
1527
|
+
delete(request?: {
|
|
1528
|
+
/** V1 error format. */
|
|
1529
|
+
'$.xgafv'?: string;
|
|
1530
|
+
/** OAuth access token. */
|
|
1531
|
+
access_token?: string;
|
|
1532
|
+
/** Data format for response. */
|
|
1533
|
+
alt?: string;
|
|
1534
|
+
/** JSONP */
|
|
1535
|
+
callback?: string;
|
|
1536
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1537
|
+
fields?: string;
|
|
1538
|
+
/** 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. */
|
|
1539
|
+
key?: string;
|
|
1540
|
+
/** Required. The system id of the SAP system resource to delete. Formatted as projects/{project}/locations/{location}/sapSystems/{sap_system_id} */
|
|
1541
|
+
name: string;
|
|
1542
|
+
/** OAuth 2.0 token for the current user. */
|
|
1543
|
+
oauth_token?: string;
|
|
1544
|
+
/** Returns response with indentations and line breaks. */
|
|
1545
|
+
prettyPrint?: boolean;
|
|
1546
|
+
/** 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. */
|
|
1547
|
+
quotaUser?: string;
|
|
1548
|
+
/** 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). */
|
|
1549
|
+
requestId?: string;
|
|
1550
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1551
|
+
upload_protocol?: string;
|
|
1552
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1553
|
+
uploadType?: string;
|
|
1554
|
+
}): Request<{}>;
|
|
1555
|
+
}
|
|
1181
1556
|
interface LocationsResource {
|
|
1182
1557
|
/** Gets information about a location. */
|
|
1183
1558
|
get(request?: {
|
|
@@ -1239,10 +1614,12 @@ declare namespace gapi.client {
|
|
|
1239
1614
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1240
1615
|
uploadType?: string;
|
|
1241
1616
|
}): Request<ListLocationsResponse>;
|
|
1617
|
+
discoveredprofiles: DiscoveredprofilesResource;
|
|
1242
1618
|
evaluations: EvaluationsResource;
|
|
1243
1619
|
insights: InsightsResource;
|
|
1244
1620
|
operations: OperationsResource;
|
|
1245
1621
|
rules: RulesResource;
|
|
1622
|
+
sapSystems: SapSystemsResource;
|
|
1246
1623
|
}
|
|
1247
1624
|
interface ProjectsResource {
|
|
1248
1625
|
locations: LocationsResource;
|