@maxim_mazurok/gapi.client.containeranalysis-v1 0.0.20260305 → 0.1.20260313
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 +467 -176
- 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://containeranalysis.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260313
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -30,7 +30,7 @@ declare namespace gapi.client {
|
|
|
30
30
|
namespace containeranalysis {
|
|
31
31
|
interface AliasContext {
|
|
32
32
|
/** The alias kind. */
|
|
33
|
-
kind?:
|
|
33
|
+
kind?: 'KIND_UNSPECIFIED' | 'FIXED' | 'MOVABLE' | 'OTHER';
|
|
34
34
|
/** The alias name. */
|
|
35
35
|
name?: string;
|
|
36
36
|
}
|
|
@@ -61,7 +61,12 @@ declare namespace gapi.client {
|
|
|
61
61
|
/** A one sentence description of this Vex. */
|
|
62
62
|
shortDescription?: string;
|
|
63
63
|
/** Provides the state of this Vulnerability assessment. */
|
|
64
|
-
state?:
|
|
64
|
+
state?:
|
|
65
|
+
| 'STATE_UNSPECIFIED'
|
|
66
|
+
| 'AFFECTED'
|
|
67
|
+
| 'NOT_AFFECTED'
|
|
68
|
+
| 'FIXED'
|
|
69
|
+
| 'UNDER_INVESTIGATION';
|
|
65
70
|
/** The vulnerability identifier for this Assessment. Will hold one of common identifiers e.g. CVE, GHSA etc. */
|
|
66
71
|
vulnerabilityId?: string;
|
|
67
72
|
}
|
|
@@ -200,7 +205,18 @@ declare namespace gapi.client {
|
|
|
200
205
|
/** A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's `Secret`. */
|
|
201
206
|
secretEnv?: string[];
|
|
202
207
|
/** Output only. Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses. */
|
|
203
|
-
status?:
|
|
208
|
+
status?:
|
|
209
|
+
| 'STATUS_UNKNOWN'
|
|
210
|
+
| 'PENDING'
|
|
211
|
+
| 'QUEUING'
|
|
212
|
+
| 'QUEUED'
|
|
213
|
+
| 'WORKING'
|
|
214
|
+
| 'SUCCESS'
|
|
215
|
+
| 'FAILURE'
|
|
216
|
+
| 'INTERNAL_ERROR'
|
|
217
|
+
| 'TIMEOUT'
|
|
218
|
+
| 'CANCELLED'
|
|
219
|
+
| 'EXPIRED';
|
|
204
220
|
/** Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out. */
|
|
205
221
|
timeout?: string;
|
|
206
222
|
/** Output only. Stores timing information for executing this build step. */
|
|
@@ -222,7 +238,13 @@ declare namespace gapi.client {
|
|
|
222
238
|
}
|
|
223
239
|
interface CisBenchmark {
|
|
224
240
|
profileLevel?: number;
|
|
225
|
-
severity?:
|
|
241
|
+
severity?:
|
|
242
|
+
| 'SEVERITY_UNSPECIFIED'
|
|
243
|
+
| 'MINIMAL'
|
|
244
|
+
| 'LOW'
|
|
245
|
+
| 'MEDIUM'
|
|
246
|
+
| 'HIGH'
|
|
247
|
+
| 'CRITICAL';
|
|
226
248
|
}
|
|
227
249
|
interface CloudRepoSourceContext {
|
|
228
250
|
/** An alias, which may be a branch or tag. */
|
|
@@ -297,7 +319,7 @@ declare namespace gapi.client {
|
|
|
297
319
|
/** Optional. An optional comment for this manual approval result. */
|
|
298
320
|
comment?: string;
|
|
299
321
|
/** Required. The decision of this manual approval. */
|
|
300
|
-
decision?:
|
|
322
|
+
decision?: 'DECISION_UNSPECIFIED' | 'APPROVED' | 'REJECTED';
|
|
301
323
|
/** Optional. An optional URL tied to this manual approval result. This field is essentially the same as comment, except that it will be rendered by the UI differently. An example use case is a link to an external job that approved this Build. */
|
|
302
324
|
url?: string;
|
|
303
325
|
}
|
|
@@ -312,6 +334,8 @@ declare namespace gapi.client {
|
|
|
312
334
|
npmPackages?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsNpmPackage[];
|
|
313
335
|
/** A list of objects to be uploaded to Cloud Storage upon successful completion of all build steps. Files in the workspace matching specified paths globs will be uploaded to the specified Cloud Storage location using the builder service account's credentials. The location and generation of the uploaded objects will be stored in the Build resource's results field. If any objects fail to be pushed, the build is marked FAILURE. */
|
|
314
336
|
objects?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsArtifactObjects;
|
|
337
|
+
/** Optional. A list of OCI images to be uploaded to Artifact Registry upon successful completion of all build steps. OCI images in the specified paths will be uploaded to the specified Artifact Registry repository using the builder service account's credentials. If any images fail to be pushed, the build is marked FAILURE. */
|
|
338
|
+
oci?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci[];
|
|
315
339
|
/** A list of Python packages to be uploaded to Artifact Registry upon successful completion of all build steps. The build service account credentials will be used to perform the upload. If any objects fail to be pushed, the build is marked FAILURE. */
|
|
316
340
|
pythonPackages?: ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage[];
|
|
317
341
|
}
|
|
@@ -357,6 +381,14 @@ declare namespace gapi.client {
|
|
|
357
381
|
/** Artifact Registry repository, in the form "https://$REGION-npm.pkg.dev/$PROJECT/$REPOSITORY" Npm package in the workspace specified by path will be zipped and uploaded to Artifact Registry with this location as a prefix. */
|
|
358
382
|
repository?: string;
|
|
359
383
|
}
|
|
384
|
+
interface ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsOci {
|
|
385
|
+
/** Required. Path on the local file system where to find the container to upload. e.g. /workspace/my-image.tar */
|
|
386
|
+
file?: string;
|
|
387
|
+
/** Required. Registry path to upload the container to. e.g. us-east1-docker.pkg.dev/my-project/my-repo/my-image */
|
|
388
|
+
registryPath?: string;
|
|
389
|
+
/** Optional. Tags to apply to the uploaded image. e.g. latest, 1.0.0 */
|
|
390
|
+
tags?: string[];
|
|
391
|
+
}
|
|
360
392
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsPythonPackage {
|
|
361
393
|
/** Path globs used to match files in the build's workspace. For Python/ Twine, this is usually `dist/*`, and sometimes additionally an `.asc` file. */
|
|
362
394
|
paths?: string[];
|
|
@@ -411,7 +443,17 @@ declare namespace gapi.client {
|
|
|
411
443
|
/** Output only. Time at which execution of the build was started. */
|
|
412
444
|
startTime?: string;
|
|
413
445
|
/** Output only. Status of the build. */
|
|
414
|
-
status?:
|
|
446
|
+
status?:
|
|
447
|
+
| 'STATUS_UNKNOWN'
|
|
448
|
+
| 'PENDING'
|
|
449
|
+
| 'QUEUED'
|
|
450
|
+
| 'WORKING'
|
|
451
|
+
| 'SUCCESS'
|
|
452
|
+
| 'FAILURE'
|
|
453
|
+
| 'INTERNAL_ERROR'
|
|
454
|
+
| 'TIMEOUT'
|
|
455
|
+
| 'CANCELLED'
|
|
456
|
+
| 'EXPIRED';
|
|
415
457
|
/** Output only. Customer-readable message about the current status. */
|
|
416
458
|
statusDetail?: string;
|
|
417
459
|
/** Required. The operations to be performed on the workspace. */
|
|
@@ -435,19 +477,34 @@ declare namespace gapi.client {
|
|
|
435
477
|
/** Output only. Result of manual approval for this Build. */
|
|
436
478
|
result?: ContaineranalysisGoogleDevtoolsCloudbuildV1ApprovalResult;
|
|
437
479
|
/** Output only. The state of this build's approval. */
|
|
438
|
-
state?:
|
|
480
|
+
state?:
|
|
481
|
+
| 'STATE_UNSPECIFIED'
|
|
482
|
+
| 'PENDING'
|
|
483
|
+
| 'APPROVED'
|
|
484
|
+
| 'REJECTED'
|
|
485
|
+
| 'CANCELLED';
|
|
439
486
|
}
|
|
440
487
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1BuildFailureInfo {
|
|
441
488
|
/** Explains the failure issue in more detail using hard-coded text. */
|
|
442
489
|
detail?: string;
|
|
443
490
|
/** The name of the failure. */
|
|
444
|
-
type?:
|
|
491
|
+
type?:
|
|
492
|
+
| 'FAILURE_TYPE_UNSPECIFIED'
|
|
493
|
+
| 'PUSH_FAILED'
|
|
494
|
+
| 'PUSH_IMAGE_NOT_FOUND'
|
|
495
|
+
| 'PUSH_NOT_AUTHORIZED'
|
|
496
|
+
| 'LOGGING_FAILURE'
|
|
497
|
+
| 'USER_BUILD_STEP'
|
|
498
|
+
| 'FETCH_SOURCE_FAILED';
|
|
445
499
|
}
|
|
446
500
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions {
|
|
447
501
|
/** Option to include built-in and custom substitutions as env variables for all build steps. */
|
|
448
502
|
automapSubstitutions?: boolean;
|
|
449
503
|
/** Optional. Option to specify how default logs buckets are setup. */
|
|
450
|
-
defaultLogsBucketBehavior?:
|
|
504
|
+
defaultLogsBucketBehavior?:
|
|
505
|
+
| 'DEFAULT_LOGS_BUCKET_BEHAVIOR_UNSPECIFIED'
|
|
506
|
+
| 'REGIONAL_USER_OWNED_BUCKET'
|
|
507
|
+
| 'LEGACY_BUCKET';
|
|
451
508
|
/** Requested disk size for the VM that runs the build. Note that this is *NOT* "disk free"; some of the space will be used by the operating system and build utilities. Also note that this is the minimum disk size that will be allocated for the build -- the build may run with a larger disk than requested. At present, the maximum disk size is 4000GB; builds that request more than the maximum are rejected with an error. */
|
|
452
509
|
diskSizeGb?: string;
|
|
453
510
|
/** Option to specify whether or not to apply bash style string operations to the substitutions. NOTE: this is always enabled for triggered builds and cannot be overridden in the build configuration file. */
|
|
@@ -457,23 +514,41 @@ declare namespace gapi.client {
|
|
|
457
514
|
/** A list of global environment variable definitions that will exist for all build steps in this build. If a variable is defined in both globally and in a build step, the variable will use the build step value. The elements are of the form "KEY=VALUE" for the environment variable "KEY" being given the value "VALUE". */
|
|
458
515
|
env?: string[];
|
|
459
516
|
/** Option to specify the logging mode, which determines if and where build logs are stored. */
|
|
460
|
-
logging?:
|
|
517
|
+
logging?:
|
|
518
|
+
| 'LOGGING_UNSPECIFIED'
|
|
519
|
+
| 'LEGACY'
|
|
520
|
+
| 'GCS_ONLY'
|
|
521
|
+
| 'STACKDRIVER_ONLY'
|
|
522
|
+
| 'CLOUD_LOGGING_ONLY'
|
|
523
|
+
| 'NONE';
|
|
461
524
|
/** Option to define build log streaming behavior to Cloud Storage. */
|
|
462
|
-
logStreamingOption?:
|
|
525
|
+
logStreamingOption?: 'STREAM_DEFAULT' | 'STREAM_ON' | 'STREAM_OFF';
|
|
463
526
|
/** Compute Engine machine type on which to run the build. */
|
|
464
|
-
machineType?:
|
|
527
|
+
machineType?:
|
|
528
|
+
| 'UNSPECIFIED'
|
|
529
|
+
| 'N1_HIGHCPU_8'
|
|
530
|
+
| 'N1_HIGHCPU_32'
|
|
531
|
+
| 'E2_HIGHCPU_8'
|
|
532
|
+
| 'E2_HIGHCPU_32'
|
|
533
|
+
| 'E2_MEDIUM';
|
|
465
534
|
/** Optional. Specification for execution on a `WorkerPool`. See [running builds in a private pool](https://cloud.google.com/build/docs/private-pools/run-builds-in-private-pool) for more information. */
|
|
466
535
|
pool?: ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptionsPoolOption;
|
|
467
536
|
/** Optional. Option to specify the Pub/Sub topic to receive build status updates. */
|
|
468
537
|
pubsubTopic?: string;
|
|
469
538
|
/** Requested verifiability options. */
|
|
470
|
-
requestedVerifyOption?:
|
|
539
|
+
requestedVerifyOption?: 'NOT_VERIFIED' | 'VERIFIED';
|
|
471
540
|
/** A list of global environment variables, which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's `Secret`. These variables will be available to all build steps in this build. */
|
|
472
541
|
secretEnv?: string[];
|
|
473
542
|
/** Requested hash for SourceProvenance. */
|
|
474
|
-
sourceProvenanceHash?:
|
|
543
|
+
sourceProvenanceHash?:
|
|
544
|
+
| 'NONE'
|
|
545
|
+
| 'SHA256'
|
|
546
|
+
| 'MD5'
|
|
547
|
+
| 'GO_MODULE_H1'
|
|
548
|
+
| 'SHA512'
|
|
549
|
+
| 'DIRSUM_SHA256'[];
|
|
475
550
|
/** Option to specify behavior when there is an error in the substitution checks. NOTE: this is always set to ALLOW_LOOSE for triggered builds and cannot be overridden in the build configuration file. */
|
|
476
|
-
substitutionOption?:
|
|
551
|
+
substitutionOption?: 'MUST_MATCH' | 'ALLOW_LOOSE';
|
|
477
552
|
/** Global list of volumes to mount for ALL build steps Each volume is created as an empty volume prior to starting the build process. Upon completion of the build, volumes and their contents are discarded. Global volume names and paths cannot conflict with the volumes defined a build step. Using a global volume in a build with only one step is not valid as it is indicative of a build request with an incorrect configuration. */
|
|
478
553
|
volumes?: ContaineranalysisGoogleDevtoolsCloudbuildV1Volume[];
|
|
479
554
|
/** This field deprecated; please use `pool.name` instead. */
|
|
@@ -511,7 +586,17 @@ declare namespace gapi.client {
|
|
|
511
586
|
/** A list of environment variables which are encrypted using a Cloud Key Management Service crypto key. These values must be specified in the build's `Secret`. */
|
|
512
587
|
secretEnv?: string[];
|
|
513
588
|
/** Output only. Status of the build step. At this time, build step status is only updated on build completion; step status is not updated in real-time as the build progresses. */
|
|
514
|
-
status?:
|
|
589
|
+
status?:
|
|
590
|
+
| 'STATUS_UNKNOWN'
|
|
591
|
+
| 'PENDING'
|
|
592
|
+
| 'QUEUED'
|
|
593
|
+
| 'WORKING'
|
|
594
|
+
| 'SUCCESS'
|
|
595
|
+
| 'FAILURE'
|
|
596
|
+
| 'INTERNAL_ERROR'
|
|
597
|
+
| 'TIMEOUT'
|
|
598
|
+
| 'CANCELLED'
|
|
599
|
+
| 'EXPIRED';
|
|
515
600
|
/** Time limit for executing this build step. If not defined, the step has no time limit and will be allowed to continue to run until either it completes or the build itself times out. */
|
|
516
601
|
timeout?: string;
|
|
517
602
|
/** Output only. Stores timing information for executing this build step. */
|
|
@@ -523,7 +608,7 @@ declare namespace gapi.client {
|
|
|
523
608
|
}
|
|
524
609
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning {
|
|
525
610
|
/** The priority for this warning. */
|
|
526
|
-
priority?:
|
|
611
|
+
priority?: 'PRIORITY_UNSPECIFIED' | 'INFO' | 'WARNING' | 'ALERT';
|
|
527
612
|
/** Explanation of the warning generated. */
|
|
528
613
|
text?: string;
|
|
529
614
|
}
|
|
@@ -534,6 +619,11 @@ declare namespace gapi.client {
|
|
|
534
619
|
digest?: string;
|
|
535
620
|
/** Name used to push the container image to Google Container Registry, as presented to `docker push`. */
|
|
536
621
|
name?: string;
|
|
622
|
+
/** Output only. The OCI media type of the artifact. Non-OCI images, such as Docker images, will have an unspecified value. */
|
|
623
|
+
ociMediaType?:
|
|
624
|
+
| 'OCI_MEDIA_TYPE_UNSPECIFIED'
|
|
625
|
+
| 'IMAGE_MANIFEST'
|
|
626
|
+
| 'IMAGE_INDEX';
|
|
537
627
|
/** Output only. Stores timing information for pushing the specified image. */
|
|
538
628
|
pushTiming?: ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan;
|
|
539
629
|
}
|
|
@@ -599,7 +689,13 @@ declare namespace gapi.client {
|
|
|
599
689
|
}
|
|
600
690
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1Hash {
|
|
601
691
|
/** The type of hash that was performed. */
|
|
602
|
-
type?:
|
|
692
|
+
type?:
|
|
693
|
+
| 'NONE'
|
|
694
|
+
| 'SHA256'
|
|
695
|
+
| 'MD5'
|
|
696
|
+
| 'GO_MODULE_H1'
|
|
697
|
+
| 'SHA512'
|
|
698
|
+
| 'DIRSUM_SHA256';
|
|
603
699
|
/** The hash value. */
|
|
604
700
|
value?: string;
|
|
605
701
|
}
|
|
@@ -705,7 +801,7 @@ declare namespace gapi.client {
|
|
|
705
801
|
/** Required. Cloud Storage object containing the source. This object must be a zipped (`.zip`) or gzipped archive file (`.tar.gz`) containing source to build. */
|
|
706
802
|
object?: string;
|
|
707
803
|
/** Optional. Option to specify the tool to fetch the source file for the build. */
|
|
708
|
-
sourceFetcher?:
|
|
804
|
+
sourceFetcher?: 'SOURCE_FETCHER_UNSPECIFIED' | 'GSUTIL' | 'GCS_FETCHER';
|
|
709
805
|
}
|
|
710
806
|
interface ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSourceManifest {
|
|
711
807
|
/** Required. Cloud Storage bucket containing the source manifest (see [Bucket Name Requirements](https://cloud.google.com/storage/docs/bucket-naming#requirements)). */
|
|
@@ -768,35 +864,100 @@ declare namespace gapi.client {
|
|
|
768
864
|
path?: string;
|
|
769
865
|
}
|
|
770
866
|
interface CVSS {
|
|
771
|
-
attackComplexity?:
|
|
867
|
+
attackComplexity?:
|
|
868
|
+
| 'ATTACK_COMPLEXITY_UNSPECIFIED'
|
|
869
|
+
| 'ATTACK_COMPLEXITY_LOW'
|
|
870
|
+
| 'ATTACK_COMPLEXITY_HIGH'
|
|
871
|
+
| 'ATTACK_COMPLEXITY_MEDIUM';
|
|
772
872
|
/** Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. */
|
|
773
|
-
attackVector?:
|
|
774
|
-
|
|
775
|
-
|
|
873
|
+
attackVector?:
|
|
874
|
+
| 'ATTACK_VECTOR_UNSPECIFIED'
|
|
875
|
+
| 'ATTACK_VECTOR_NETWORK'
|
|
876
|
+
| 'ATTACK_VECTOR_ADJACENT'
|
|
877
|
+
| 'ATTACK_VECTOR_LOCAL'
|
|
878
|
+
| 'ATTACK_VECTOR_PHYSICAL';
|
|
879
|
+
authentication?:
|
|
880
|
+
| 'AUTHENTICATION_UNSPECIFIED'
|
|
881
|
+
| 'AUTHENTICATION_MULTIPLE'
|
|
882
|
+
| 'AUTHENTICATION_SINGLE'
|
|
883
|
+
| 'AUTHENTICATION_NONE';
|
|
884
|
+
availabilityImpact?:
|
|
885
|
+
| 'IMPACT_UNSPECIFIED'
|
|
886
|
+
| 'IMPACT_HIGH'
|
|
887
|
+
| 'IMPACT_LOW'
|
|
888
|
+
| 'IMPACT_NONE'
|
|
889
|
+
| 'IMPACT_PARTIAL'
|
|
890
|
+
| 'IMPACT_COMPLETE';
|
|
776
891
|
/** The base score is a function of the base metric scores. */
|
|
777
892
|
baseScore?: number;
|
|
778
|
-
confidentialityImpact?:
|
|
893
|
+
confidentialityImpact?:
|
|
894
|
+
| 'IMPACT_UNSPECIFIED'
|
|
895
|
+
| 'IMPACT_HIGH'
|
|
896
|
+
| 'IMPACT_LOW'
|
|
897
|
+
| 'IMPACT_NONE'
|
|
898
|
+
| 'IMPACT_PARTIAL'
|
|
899
|
+
| 'IMPACT_COMPLETE';
|
|
779
900
|
exploitabilityScore?: number;
|
|
780
901
|
impactScore?: number;
|
|
781
|
-
integrityImpact?:
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
902
|
+
integrityImpact?:
|
|
903
|
+
| 'IMPACT_UNSPECIFIED'
|
|
904
|
+
| 'IMPACT_HIGH'
|
|
905
|
+
| 'IMPACT_LOW'
|
|
906
|
+
| 'IMPACT_NONE'
|
|
907
|
+
| 'IMPACT_PARTIAL'
|
|
908
|
+
| 'IMPACT_COMPLETE';
|
|
909
|
+
privilegesRequired?:
|
|
910
|
+
| 'PRIVILEGES_REQUIRED_UNSPECIFIED'
|
|
911
|
+
| 'PRIVILEGES_REQUIRED_NONE'
|
|
912
|
+
| 'PRIVILEGES_REQUIRED_LOW'
|
|
913
|
+
| 'PRIVILEGES_REQUIRED_HIGH';
|
|
914
|
+
scope?: 'SCOPE_UNSPECIFIED' | 'SCOPE_UNCHANGED' | 'SCOPE_CHANGED';
|
|
915
|
+
userInteraction?:
|
|
916
|
+
| 'USER_INTERACTION_UNSPECIFIED'
|
|
917
|
+
| 'USER_INTERACTION_NONE'
|
|
918
|
+
| 'USER_INTERACTION_REQUIRED';
|
|
785
919
|
}
|
|
786
920
|
interface CVSSv3 {
|
|
787
|
-
attackComplexity?:
|
|
921
|
+
attackComplexity?:
|
|
922
|
+
| 'ATTACK_COMPLEXITY_UNSPECIFIED'
|
|
923
|
+
| 'ATTACK_COMPLEXITY_LOW'
|
|
924
|
+
| 'ATTACK_COMPLEXITY_HIGH';
|
|
788
925
|
/** Base Metrics Represents the intrinsic characteristics of a vulnerability that are constant over time and across user environments. */
|
|
789
|
-
attackVector?:
|
|
790
|
-
|
|
926
|
+
attackVector?:
|
|
927
|
+
| 'ATTACK_VECTOR_UNSPECIFIED'
|
|
928
|
+
| 'ATTACK_VECTOR_NETWORK'
|
|
929
|
+
| 'ATTACK_VECTOR_ADJACENT'
|
|
930
|
+
| 'ATTACK_VECTOR_LOCAL'
|
|
931
|
+
| 'ATTACK_VECTOR_PHYSICAL';
|
|
932
|
+
availabilityImpact?:
|
|
933
|
+
| 'IMPACT_UNSPECIFIED'
|
|
934
|
+
| 'IMPACT_HIGH'
|
|
935
|
+
| 'IMPACT_LOW'
|
|
936
|
+
| 'IMPACT_NONE';
|
|
791
937
|
/** The base score is a function of the base metric scores. */
|
|
792
938
|
baseScore?: number;
|
|
793
|
-
confidentialityImpact?:
|
|
939
|
+
confidentialityImpact?:
|
|
940
|
+
| 'IMPACT_UNSPECIFIED'
|
|
941
|
+
| 'IMPACT_HIGH'
|
|
942
|
+
| 'IMPACT_LOW'
|
|
943
|
+
| 'IMPACT_NONE';
|
|
794
944
|
exploitabilityScore?: number;
|
|
795
945
|
impactScore?: number;
|
|
796
|
-
integrityImpact?:
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
946
|
+
integrityImpact?:
|
|
947
|
+
| 'IMPACT_UNSPECIFIED'
|
|
948
|
+
| 'IMPACT_HIGH'
|
|
949
|
+
| 'IMPACT_LOW'
|
|
950
|
+
| 'IMPACT_NONE';
|
|
951
|
+
privilegesRequired?:
|
|
952
|
+
| 'PRIVILEGES_REQUIRED_UNSPECIFIED'
|
|
953
|
+
| 'PRIVILEGES_REQUIRED_NONE'
|
|
954
|
+
| 'PRIVILEGES_REQUIRED_LOW'
|
|
955
|
+
| 'PRIVILEGES_REQUIRED_HIGH';
|
|
956
|
+
scope?: 'SCOPE_UNSPECIFIED' | 'SCOPE_UNCHANGED' | 'SCOPE_CHANGED';
|
|
957
|
+
userInteraction?:
|
|
958
|
+
| 'USER_INTERACTION_UNSPECIFIED'
|
|
959
|
+
| 'USER_INTERACTION_NONE'
|
|
960
|
+
| 'USER_INTERACTION_REQUIRED';
|
|
800
961
|
}
|
|
801
962
|
interface DeploymentNote {
|
|
802
963
|
/** Required. Resource URI for the artifact being deployed. */
|
|
@@ -810,7 +971,7 @@ declare namespace gapi.client {
|
|
|
810
971
|
/** Required. Beginning of the lifetime of this deployment. */
|
|
811
972
|
deployTime?: string;
|
|
812
973
|
/** Platform hosting this deployment. */
|
|
813
|
-
platform?:
|
|
974
|
+
platform?: 'PLATFORM_UNSPECIFIED' | 'GKE' | 'FLEX' | 'CUSTOM';
|
|
814
975
|
/** Output only. Resource URI for the artifact being deployed taken from the deployable field with the same name. */
|
|
815
976
|
resourceUri?: string[];
|
|
816
977
|
/** End of the lifetime of this deployment. */
|
|
@@ -856,20 +1017,44 @@ declare namespace gapi.client {
|
|
|
856
1017
|
}
|
|
857
1018
|
interface DiscoveryNote {
|
|
858
1019
|
/** Required. Immutable. The kind of analysis that is handled by this discovery. */
|
|
859
|
-
analysisKind?:
|
|
1020
|
+
analysisKind?:
|
|
1021
|
+
| 'NOTE_KIND_UNSPECIFIED'
|
|
1022
|
+
| 'VULNERABILITY'
|
|
1023
|
+
| 'BUILD'
|
|
1024
|
+
| 'IMAGE'
|
|
1025
|
+
| 'PACKAGE'
|
|
1026
|
+
| 'DEPLOYMENT'
|
|
1027
|
+
| 'DISCOVERY'
|
|
1028
|
+
| 'ATTESTATION'
|
|
1029
|
+
| 'UPGRADE'
|
|
1030
|
+
| 'COMPLIANCE'
|
|
1031
|
+
| 'DSSE_ATTESTATION'
|
|
1032
|
+
| 'VULNERABILITY_ASSESSMENT'
|
|
1033
|
+
| 'SBOM_REFERENCE'
|
|
1034
|
+
| 'SECRET';
|
|
860
1035
|
}
|
|
861
1036
|
interface DiscoveryOccurrence {
|
|
862
1037
|
analysisCompleted?: AnalysisCompleted;
|
|
863
1038
|
/** Indicates any errors encountered during analysis of a resource. There could be 0 or more of these errors. */
|
|
864
1039
|
analysisError?: Status[];
|
|
865
1040
|
/** The status of discovery for the resource. */
|
|
866
|
-
analysisStatus?:
|
|
1041
|
+
analysisStatus?:
|
|
1042
|
+
| 'ANALYSIS_STATUS_UNSPECIFIED'
|
|
1043
|
+
| 'PENDING'
|
|
1044
|
+
| 'SCANNING'
|
|
1045
|
+
| 'FINISHED_SUCCESS'
|
|
1046
|
+
| 'COMPLETE'
|
|
1047
|
+
| 'FINISHED_FAILED'
|
|
1048
|
+
| 'FINISHED_UNSUPPORTED';
|
|
867
1049
|
/** When an error is encountered this will contain a LocalizedMessage under details to show to the user. The LocalizedMessage is output only and populated by the API. */
|
|
868
1050
|
analysisStatusError?: Status;
|
|
869
1051
|
/** Output only. The time occurrences related to this discovery occurrence were archived. */
|
|
870
1052
|
archiveTime?: string;
|
|
871
1053
|
/** Whether the resource is continuously analyzed. */
|
|
872
|
-
continuousAnalysis?:
|
|
1054
|
+
continuousAnalysis?:
|
|
1055
|
+
| 'CONTINUOUS_ANALYSIS_UNSPECIFIED'
|
|
1056
|
+
| 'ACTIVE'
|
|
1057
|
+
| 'INACTIVE';
|
|
873
1058
|
/** The CPE of the resource being scanned. */
|
|
874
1059
|
cpe?: string;
|
|
875
1060
|
/** Files that make up the resource described by the occurrence. */
|
|
@@ -883,7 +1068,7 @@ declare namespace gapi.client {
|
|
|
883
1068
|
}
|
|
884
1069
|
interface Distribution {
|
|
885
1070
|
/** The CPU architecture for which packages in this distribution channel were built. */
|
|
886
|
-
architecture?:
|
|
1071
|
+
architecture?: 'ARCHITECTURE_UNSPECIFIED' | 'X86' | 'X64';
|
|
887
1072
|
/** Required. The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package. */
|
|
888
1073
|
cpeUri?: string;
|
|
889
1074
|
/** The distribution channel-specific description of this package. */
|
|
@@ -964,7 +1149,13 @@ declare namespace gapi.client {
|
|
|
964
1149
|
/** The affected resource. */
|
|
965
1150
|
resourceUri?: string;
|
|
966
1151
|
/** The severity for this count. SEVERITY_UNSPECIFIED indicates total across all severities. */
|
|
967
|
-
severity?:
|
|
1152
|
+
severity?:
|
|
1153
|
+
| 'SEVERITY_UNSPECIFIED'
|
|
1154
|
+
| 'MINIMAL'
|
|
1155
|
+
| 'LOW'
|
|
1156
|
+
| 'MEDIUM'
|
|
1157
|
+
| 'HIGH'
|
|
1158
|
+
| 'CRITICAL';
|
|
968
1159
|
/** The total number of vulnerabilities associated with this resource. */
|
|
969
1160
|
totalCount?: string;
|
|
970
1161
|
}
|
|
@@ -1003,6 +1194,8 @@ declare namespace gapi.client {
|
|
|
1003
1194
|
filePath?: string;
|
|
1004
1195
|
/** Each package found in a file should have its own layer metadata (that is, information from the origin layer of the package). */
|
|
1005
1196
|
layerDetails?: LayerDetails;
|
|
1197
|
+
/** Line number in the file where the package was found. Optional field that only applies to source repository scanning. */
|
|
1198
|
+
lineNumber?: number;
|
|
1006
1199
|
}
|
|
1007
1200
|
interface GrafeasV1SlsaProvenanceZeroTwoSlsaBuilder {
|
|
1008
1201
|
id?: string;
|
|
@@ -1095,7 +1288,13 @@ declare namespace gapi.client {
|
|
|
1095
1288
|
/** Additional details on why this justification was chosen. */
|
|
1096
1289
|
details?: string;
|
|
1097
1290
|
/** The justification type for this vulnerability. */
|
|
1098
|
-
justificationType?:
|
|
1291
|
+
justificationType?:
|
|
1292
|
+
| 'JUSTIFICATION_TYPE_UNSPECIFIED'
|
|
1293
|
+
| 'COMPONENT_NOT_PRESENT'
|
|
1294
|
+
| 'VULNERABLE_CODE_NOT_PRESENT'
|
|
1295
|
+
| 'VULNERABLE_CODE_NOT_IN_EXECUTE_PATH'
|
|
1296
|
+
| 'VULNERABLE_CODE_CANNOT_BE_CONTROLLED_BY_ADVERSARY'
|
|
1297
|
+
| 'INLINE_MITIGATIONS_ALREADY_EXIST';
|
|
1099
1298
|
}
|
|
1100
1299
|
interface Jwt {
|
|
1101
1300
|
/** The compact encoding of a JWS, which is always three base64 encoded strings joined by periods. For details, see: https://tools.ietf.org/html/rfc7515.html#section-3.1 */
|
|
@@ -1205,7 +1404,21 @@ declare namespace gapi.client {
|
|
|
1205
1404
|
/** A note describing a base image. */
|
|
1206
1405
|
image?: ImageNote;
|
|
1207
1406
|
/** Output only. The type of analysis. This field can be used as a filter in list requests. */
|
|
1208
|
-
kind?:
|
|
1407
|
+
kind?:
|
|
1408
|
+
| 'NOTE_KIND_UNSPECIFIED'
|
|
1409
|
+
| 'VULNERABILITY'
|
|
1410
|
+
| 'BUILD'
|
|
1411
|
+
| 'IMAGE'
|
|
1412
|
+
| 'PACKAGE'
|
|
1413
|
+
| 'DEPLOYMENT'
|
|
1414
|
+
| 'DISCOVERY'
|
|
1415
|
+
| 'ATTESTATION'
|
|
1416
|
+
| 'UPGRADE'
|
|
1417
|
+
| 'COMPLIANCE'
|
|
1418
|
+
| 'DSSE_ATTESTATION'
|
|
1419
|
+
| 'VULNERABILITY_ASSESSMENT'
|
|
1420
|
+
| 'SBOM_REFERENCE'
|
|
1421
|
+
| 'SECRET';
|
|
1209
1422
|
/** A detailed description of this note. */
|
|
1210
1423
|
longDescription?: string;
|
|
1211
1424
|
/** Output only. The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. */
|
|
@@ -1251,7 +1464,21 @@ declare namespace gapi.client {
|
|
|
1251
1464
|
/** Describes how this resource derives from the basis in the associated note. */
|
|
1252
1465
|
image?: ImageOccurrence;
|
|
1253
1466
|
/** Output only. This explicitly denotes which of the occurrence details are specified. This field can be used as a filter in list requests. */
|
|
1254
|
-
kind?:
|
|
1467
|
+
kind?:
|
|
1468
|
+
| 'NOTE_KIND_UNSPECIFIED'
|
|
1469
|
+
| 'VULNERABILITY'
|
|
1470
|
+
| 'BUILD'
|
|
1471
|
+
| 'IMAGE'
|
|
1472
|
+
| 'PACKAGE'
|
|
1473
|
+
| 'DEPLOYMENT'
|
|
1474
|
+
| 'DISCOVERY'
|
|
1475
|
+
| 'ATTESTATION'
|
|
1476
|
+
| 'UPGRADE'
|
|
1477
|
+
| 'COMPLIANCE'
|
|
1478
|
+
| 'DSSE_ATTESTATION'
|
|
1479
|
+
| 'VULNERABILITY_ASSESSMENT'
|
|
1480
|
+
| 'SBOM_REFERENCE'
|
|
1481
|
+
| 'SECRET';
|
|
1255
1482
|
/** Output only. The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`. */
|
|
1256
1483
|
name?: string;
|
|
1257
1484
|
/** Required. Immutable. The analysis note associated with this occurrence, in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`. This field can be used as a filter in list requests. */
|
|
@@ -1281,7 +1508,13 @@ declare namespace gapi.client {
|
|
|
1281
1508
|
/** Required. The version of the package that is installed on the resource affected by this vulnerability. */
|
|
1282
1509
|
affectedVersion?: Version;
|
|
1283
1510
|
/** Output only. The distro or language system assigned severity for this vulnerability when that is available and note provider assigned severity when it is not available. */
|
|
1284
|
-
effectiveSeverity?:
|
|
1511
|
+
effectiveSeverity?:
|
|
1512
|
+
| 'SEVERITY_UNSPECIFIED'
|
|
1513
|
+
| 'MINIMAL'
|
|
1514
|
+
| 'LOW'
|
|
1515
|
+
| 'MEDIUM'
|
|
1516
|
+
| 'HIGH'
|
|
1517
|
+
| 'CRITICAL';
|
|
1285
1518
|
/** The location at which this package was found. */
|
|
1286
1519
|
fileLocation?: GrafeasV1FileLocation[];
|
|
1287
1520
|
/** Output only. Whether a fix is available for this package. */
|
|
@@ -1297,7 +1530,7 @@ declare namespace gapi.client {
|
|
|
1297
1530
|
}
|
|
1298
1531
|
interface PackageNote {
|
|
1299
1532
|
/** The CPU architecture for which packages in this distribution channel were built. Architecture will be blank for language packages. */
|
|
1300
|
-
architecture?:
|
|
1533
|
+
architecture?: 'ARCHITECTURE_UNSPECIFIED' | 'X86' | 'X64';
|
|
1301
1534
|
/** The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package. The cpe_uri will be blank for language packages. */
|
|
1302
1535
|
cpeUri?: string;
|
|
1303
1536
|
/** The description of this package. */
|
|
@@ -1321,7 +1554,7 @@ declare namespace gapi.client {
|
|
|
1321
1554
|
}
|
|
1322
1555
|
interface PackageOccurrence {
|
|
1323
1556
|
/** Output only. The CPU architecture for which packages in this distribution channel were built. Architecture will be blank for language packages. */
|
|
1324
|
-
architecture?:
|
|
1557
|
+
architecture?: 'ARCHITECTURE_UNSPECIFIED' | 'X86' | 'X64';
|
|
1325
1558
|
/** Output only. The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package. The cpe_uri will be blank for language packages. */
|
|
1326
1559
|
cpeUri?: string;
|
|
1327
1560
|
/** Licenses that have been declared by the authors of the package. */
|
|
@@ -1392,7 +1625,13 @@ declare namespace gapi.client {
|
|
|
1392
1625
|
/** Contains a comprehensive human-readable discussion of the remediation. */
|
|
1393
1626
|
details?: string;
|
|
1394
1627
|
/** The type of remediation that can be applied. */
|
|
1395
|
-
remediationType?:
|
|
1628
|
+
remediationType?:
|
|
1629
|
+
| 'REMEDIATION_TYPE_UNSPECIFIED'
|
|
1630
|
+
| 'MITIGATION'
|
|
1631
|
+
| 'NO_FIX_PLANNED'
|
|
1632
|
+
| 'NONE_AVAILABLE'
|
|
1633
|
+
| 'VENDOR_FIX'
|
|
1634
|
+
| 'WORKAROUND';
|
|
1396
1635
|
/** Contains the URL where to obtain the remediation. */
|
|
1397
1636
|
remediationUri?: RelatedUrl;
|
|
1398
1637
|
}
|
|
@@ -1460,7 +1699,7 @@ declare namespace gapi.client {
|
|
|
1460
1699
|
/** If there was an error generating an SBOM, this will indicate what that error was. */
|
|
1461
1700
|
error?: string;
|
|
1462
1701
|
/** The progress of the SBOM generation. */
|
|
1463
|
-
sbomState?:
|
|
1702
|
+
sbomState?: 'SBOM_STATE_UNSPECIFIED' | 'PENDING' | 'COMPLETE';
|
|
1464
1703
|
}
|
|
1465
1704
|
interface SecretLocation {
|
|
1466
1705
|
/** The secret is found from a file. */
|
|
@@ -1469,7 +1708,30 @@ declare namespace gapi.client {
|
|
|
1469
1708
|
interface SecretNote {}
|
|
1470
1709
|
interface SecretOccurrence {
|
|
1471
1710
|
/** Required. Type of secret. */
|
|
1472
|
-
kind?:
|
|
1711
|
+
kind?:
|
|
1712
|
+
| 'SECRET_KIND_UNSPECIFIED'
|
|
1713
|
+
| 'SECRET_KIND_UNKNOWN'
|
|
1714
|
+
| 'SECRET_KIND_GCP_SERVICE_ACCOUNT_KEY'
|
|
1715
|
+
| 'SECRET_KIND_GCP_API_KEY'
|
|
1716
|
+
| 'SECRET_KIND_GCP_OAUTH2_CLIENT_CREDENTIALS'
|
|
1717
|
+
| 'SECRET_KIND_GCP_OAUTH2_ACCESS_TOKEN'
|
|
1718
|
+
| 'SECRET_KIND_ANTHROPIC_ADMIN_API_KEY'
|
|
1719
|
+
| 'SECRET_KIND_ANTHROPIC_API_KEY'
|
|
1720
|
+
| 'SECRET_KIND_AZURE_ACCESS_TOKEN'
|
|
1721
|
+
| 'SECRET_KIND_AZURE_IDENTITY_TOKEN'
|
|
1722
|
+
| 'SECRET_KIND_DOCKER_HUB_PERSONAL_ACCESS_TOKEN'
|
|
1723
|
+
| 'SECRET_KIND_GITHUB_APP_REFRESH_TOKEN'
|
|
1724
|
+
| 'SECRET_KIND_GITHUB_APP_SERVER_TO_SERVER_TOKEN'
|
|
1725
|
+
| 'SECRET_KIND_GITHUB_APP_USER_TO_SERVER_TOKEN'
|
|
1726
|
+
| 'SECRET_KIND_GITHUB_CLASSIC_PERSONAL_ACCESS_TOKEN'
|
|
1727
|
+
| 'SECRET_KIND_GITHUB_FINE_GRAINED_PERSONAL_ACCESS_TOKEN'
|
|
1728
|
+
| 'SECRET_KIND_GITHUB_OAUTH_TOKEN'
|
|
1729
|
+
| 'SECRET_KIND_HUGGINGFACE_API_KEY'
|
|
1730
|
+
| 'SECRET_KIND_OPENAI_API_KEY'
|
|
1731
|
+
| 'SECRET_KIND_PERPLEXITY_API_KEY'
|
|
1732
|
+
| 'SECRET_KIND_STRIPE_SECRET_KEY'
|
|
1733
|
+
| 'SECRET_KIND_STRIPE_RESTRICTED_KEY'
|
|
1734
|
+
| 'SECRET_KIND_STRIPE_WEBHOOK_SECRET';
|
|
1473
1735
|
/** Optional. Locations where the secret is detected. */
|
|
1474
1736
|
locations?: SecretLocation[];
|
|
1475
1737
|
/** Optional. Status of the secret. */
|
|
@@ -1479,7 +1741,7 @@ declare namespace gapi.client {
|
|
|
1479
1741
|
/** Optional. Optional message about the status code. */
|
|
1480
1742
|
message?: string;
|
|
1481
1743
|
/** Optional. The status of the secret. */
|
|
1482
|
-
status?:
|
|
1744
|
+
status?: 'STATUS_UNSPECIFIED' | 'UNKNOWN' | 'VALID' | 'INVALID';
|
|
1483
1745
|
/** Optional. The time the secret status was last updated. */
|
|
1484
1746
|
updateTime?: string;
|
|
1485
1747
|
}
|
|
@@ -1639,7 +1901,7 @@ declare namespace gapi.client {
|
|
|
1639
1901
|
/** Whether this version is specifying part of an inclusive range. Grafeas does not have the capability to specify version ranges; instead we have fields that specify start version and end versions. At times this is insufficient - we also need to specify whether the version is included in the range or is excluded from the range. This boolean is expected to be set to true when the version is included in a range. */
|
|
1640
1902
|
inclusive?: boolean;
|
|
1641
1903
|
/** Required. Distinguishes between sentinel MIN/MAX versions and normal versions. */
|
|
1642
|
-
kind?:
|
|
1904
|
+
kind?: 'VERSION_KIND_UNSPECIFIED' | 'NORMAL' | 'MINIMUM' | 'MAXIMUM';
|
|
1643
1905
|
/** Required only when version kind is NORMAL. The main part of the version name. */
|
|
1644
1906
|
name?: string;
|
|
1645
1907
|
/** The iteration of the package build from the above version. */
|
|
@@ -1659,7 +1921,12 @@ declare namespace gapi.client {
|
|
|
1659
1921
|
/** Specifies details on how to handle (and presumably, fix) a vulnerability. */
|
|
1660
1922
|
remediations?: Remediation[];
|
|
1661
1923
|
/** Provides the state of this Vulnerability assessment. */
|
|
1662
|
-
state?:
|
|
1924
|
+
state?:
|
|
1925
|
+
| 'STATE_UNSPECIFIED'
|
|
1926
|
+
| 'AFFECTED'
|
|
1927
|
+
| 'NOT_AFFECTED'
|
|
1928
|
+
| 'FIXED'
|
|
1929
|
+
| 'UNDER_INVESTIGATION';
|
|
1663
1930
|
/** The vulnerability identifier for this Assessment. Will hold one of common identifiers e.g. CVE, GHSA etc. */
|
|
1664
1931
|
vulnerabilityId?: string;
|
|
1665
1932
|
}
|
|
@@ -1695,11 +1962,20 @@ declare namespace gapi.client {
|
|
|
1695
1962
|
/** The full description of the CVSSv3 for this vulnerability. */
|
|
1696
1963
|
cvssV3?: CVSSv3;
|
|
1697
1964
|
/** CVSS version used to populate cvss_score and severity. */
|
|
1698
|
-
cvssVersion?:
|
|
1965
|
+
cvssVersion?:
|
|
1966
|
+
| 'CVSS_VERSION_UNSPECIFIED'
|
|
1967
|
+
| 'CVSS_VERSION_2'
|
|
1968
|
+
| 'CVSS_VERSION_3';
|
|
1699
1969
|
/** Details of all known distros and packages affected by this vulnerability. */
|
|
1700
1970
|
details?: Detail[];
|
|
1701
1971
|
/** The note provider assigned severity of this vulnerability. */
|
|
1702
|
-
severity?:
|
|
1972
|
+
severity?:
|
|
1973
|
+
| 'SEVERITY_UNSPECIFIED'
|
|
1974
|
+
| 'MINIMAL'
|
|
1975
|
+
| 'LOW'
|
|
1976
|
+
| 'MEDIUM'
|
|
1977
|
+
| 'HIGH'
|
|
1978
|
+
| 'CRITICAL';
|
|
1703
1979
|
/** The time this information was last changed at the source. This is an upstream timestamp from the underlying information source - e.g. Ubuntu security tracker. */
|
|
1704
1980
|
sourceUpdateTime?: string;
|
|
1705
1981
|
/** Windows details get their own format because the information format and model don't match a normal detail. Specifically Windows updates are done as patches, thus Windows vulnerabilities really are a missing package, rather than a package being at an incorrect version. */
|
|
@@ -1713,9 +1989,18 @@ declare namespace gapi.client {
|
|
|
1713
1989
|
/** The cvss v3 score for the vulnerability. */
|
|
1714
1990
|
cvssv3?: CVSS;
|
|
1715
1991
|
/** Output only. CVSS version used to populate cvss_score and severity. */
|
|
1716
|
-
cvssVersion?:
|
|
1992
|
+
cvssVersion?:
|
|
1993
|
+
| 'CVSS_VERSION_UNSPECIFIED'
|
|
1994
|
+
| 'CVSS_VERSION_2'
|
|
1995
|
+
| 'CVSS_VERSION_3';
|
|
1717
1996
|
/** The distro assigned severity for this vulnerability when it is available, otherwise this is the note provider assigned severity. When there are multiple PackageIssues for this vulnerability, they can have different effective severities because some might be provided by the distro while others are provided by the language ecosystem for a language pack. For this reason, it is advised to use the effective severity on the PackageIssue level. In the case where multiple PackageIssues have differing effective severities, this field should be the highest severity for any of the PackageIssues. */
|
|
1718
|
-
effectiveSeverity?:
|
|
1997
|
+
effectiveSeverity?:
|
|
1998
|
+
| 'SEVERITY_UNSPECIFIED'
|
|
1999
|
+
| 'MINIMAL'
|
|
2000
|
+
| 'LOW'
|
|
2001
|
+
| 'MEDIUM'
|
|
2002
|
+
| 'HIGH'
|
|
2003
|
+
| 'CRITICAL';
|
|
1719
2004
|
/** Occurrence-specific extra details about the vulnerability. */
|
|
1720
2005
|
extraDetails?: string;
|
|
1721
2006
|
/** Output only. Whether at least one of the affected packages has a fix available. */
|
|
@@ -1729,7 +2014,13 @@ declare namespace gapi.client {
|
|
|
1729
2014
|
/** Risk information about the vulnerability, such as CISA, EPSS, etc. */
|
|
1730
2015
|
risk?: Risk;
|
|
1731
2016
|
/** Output only. The note provider assigned severity of this vulnerability. */
|
|
1732
|
-
severity?:
|
|
2017
|
+
severity?:
|
|
2018
|
+
| 'SEVERITY_UNSPECIFIED'
|
|
2019
|
+
| 'MINIMAL'
|
|
2020
|
+
| 'LOW'
|
|
2021
|
+
| 'MEDIUM'
|
|
2022
|
+
| 'HIGH'
|
|
2023
|
+
| 'CRITICAL';
|
|
1733
2024
|
/** Output only. A one sentence description of this vulnerability. */
|
|
1734
2025
|
shortDescription?: string;
|
|
1735
2026
|
/** The type of package; whether native or non native (e.g., ruby gems, node.js packages, etc.). */
|
|
@@ -1772,11 +2063,11 @@ declare namespace gapi.client {
|
|
|
1772
2063
|
/** Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note. */
|
|
1773
2064
|
list(request?: {
|
|
1774
2065
|
/** V1 error format. */
|
|
1775
|
-
'$.xgafv'?:
|
|
2066
|
+
'$.xgafv'?: '1' | '2';
|
|
1776
2067
|
/** OAuth access token. */
|
|
1777
2068
|
access_token?: string;
|
|
1778
2069
|
/** Data format for response. */
|
|
1779
|
-
alt?:
|
|
2070
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1780
2071
|
/** JSONP */
|
|
1781
2072
|
callback?: string;
|
|
1782
2073
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1807,11 +2098,11 @@ declare namespace gapi.client {
|
|
|
1807
2098
|
/** Creates new notes in batch. */
|
|
1808
2099
|
batchCreate(request: {
|
|
1809
2100
|
/** V1 error format. */
|
|
1810
|
-
'$.xgafv'?:
|
|
2101
|
+
'$.xgafv'?: '1' | '2';
|
|
1811
2102
|
/** OAuth access token. */
|
|
1812
2103
|
access_token?: string;
|
|
1813
2104
|
/** Data format for response. */
|
|
1814
|
-
alt?:
|
|
2105
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1815
2106
|
/** JSONP */
|
|
1816
2107
|
callback?: string;
|
|
1817
2108
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1836,11 +2127,11 @@ declare namespace gapi.client {
|
|
|
1836
2127
|
batchCreate(
|
|
1837
2128
|
request: {
|
|
1838
2129
|
/** V1 error format. */
|
|
1839
|
-
'$.xgafv'?:
|
|
2130
|
+
'$.xgafv'?: '1' | '2';
|
|
1840
2131
|
/** OAuth access token. */
|
|
1841
2132
|
access_token?: string;
|
|
1842
2133
|
/** Data format for response. */
|
|
1843
|
-
alt?:
|
|
2134
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1844
2135
|
/** JSONP */
|
|
1845
2136
|
callback?: string;
|
|
1846
2137
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1865,11 +2156,11 @@ declare namespace gapi.client {
|
|
|
1865
2156
|
/** Creates a new note. */
|
|
1866
2157
|
create(request: {
|
|
1867
2158
|
/** V1 error format. */
|
|
1868
|
-
'$.xgafv'?:
|
|
2159
|
+
'$.xgafv'?: '1' | '2';
|
|
1869
2160
|
/** OAuth access token. */
|
|
1870
2161
|
access_token?: string;
|
|
1871
2162
|
/** Data format for response. */
|
|
1872
|
-
alt?:
|
|
2163
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1873
2164
|
/** JSONP */
|
|
1874
2165
|
callback?: string;
|
|
1875
2166
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1896,11 +2187,11 @@ declare namespace gapi.client {
|
|
|
1896
2187
|
create(
|
|
1897
2188
|
request: {
|
|
1898
2189
|
/** V1 error format. */
|
|
1899
|
-
'$.xgafv'?:
|
|
2190
|
+
'$.xgafv'?: '1' | '2';
|
|
1900
2191
|
/** OAuth access token. */
|
|
1901
2192
|
access_token?: string;
|
|
1902
2193
|
/** Data format for response. */
|
|
1903
|
-
alt?:
|
|
2194
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1904
2195
|
/** JSONP */
|
|
1905
2196
|
callback?: string;
|
|
1906
2197
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1927,11 +2218,11 @@ declare namespace gapi.client {
|
|
|
1927
2218
|
/** Deletes the specified note. */
|
|
1928
2219
|
delete(request?: {
|
|
1929
2220
|
/** V1 error format. */
|
|
1930
|
-
'$.xgafv'?:
|
|
2221
|
+
'$.xgafv'?: '1' | '2';
|
|
1931
2222
|
/** OAuth access token. */
|
|
1932
2223
|
access_token?: string;
|
|
1933
2224
|
/** Data format for response. */
|
|
1934
|
-
alt?:
|
|
2225
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1935
2226
|
/** JSONP */
|
|
1936
2227
|
callback?: string;
|
|
1937
2228
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1954,11 +2245,11 @@ declare namespace gapi.client {
|
|
|
1954
2245
|
/** Gets the specified note. */
|
|
1955
2246
|
get(request?: {
|
|
1956
2247
|
/** V1 error format. */
|
|
1957
|
-
'$.xgafv'?:
|
|
2248
|
+
'$.xgafv'?: '1' | '2';
|
|
1958
2249
|
/** OAuth access token. */
|
|
1959
2250
|
access_token?: string;
|
|
1960
2251
|
/** Data format for response. */
|
|
1961
|
-
alt?:
|
|
2252
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1962
2253
|
/** JSONP */
|
|
1963
2254
|
callback?: string;
|
|
1964
2255
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -1982,11 +2273,11 @@ declare namespace gapi.client {
|
|
|
1982
2273
|
getIamPolicy(
|
|
1983
2274
|
request: {
|
|
1984
2275
|
/** V1 error format. */
|
|
1985
|
-
'$.xgafv'?:
|
|
2276
|
+
'$.xgafv'?: '1' | '2';
|
|
1986
2277
|
/** OAuth access token. */
|
|
1987
2278
|
access_token?: string;
|
|
1988
2279
|
/** Data format for response. */
|
|
1989
|
-
alt?:
|
|
2280
|
+
alt?: 'json' | 'media' | 'proto';
|
|
1990
2281
|
/** JSONP */
|
|
1991
2282
|
callback?: string;
|
|
1992
2283
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2011,11 +2302,11 @@ declare namespace gapi.client {
|
|
|
2011
2302
|
/** Lists notes for the specified project. */
|
|
2012
2303
|
list(request?: {
|
|
2013
2304
|
/** V1 error format. */
|
|
2014
|
-
'$.xgafv'?:
|
|
2305
|
+
'$.xgafv'?: '1' | '2';
|
|
2015
2306
|
/** OAuth access token. */
|
|
2016
2307
|
access_token?: string;
|
|
2017
2308
|
/** Data format for response. */
|
|
2018
|
-
alt?:
|
|
2309
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2019
2310
|
/** JSONP */
|
|
2020
2311
|
callback?: string;
|
|
2021
2312
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2046,11 +2337,11 @@ declare namespace gapi.client {
|
|
|
2046
2337
|
/** Updates the specified note. */
|
|
2047
2338
|
patch(request: {
|
|
2048
2339
|
/** V1 error format. */
|
|
2049
|
-
'$.xgafv'?:
|
|
2340
|
+
'$.xgafv'?: '1' | '2';
|
|
2050
2341
|
/** OAuth access token. */
|
|
2051
2342
|
access_token?: string;
|
|
2052
2343
|
/** Data format for response. */
|
|
2053
|
-
alt?:
|
|
2344
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2054
2345
|
/** JSONP */
|
|
2055
2346
|
callback?: string;
|
|
2056
2347
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2077,11 +2368,11 @@ declare namespace gapi.client {
|
|
|
2077
2368
|
patch(
|
|
2078
2369
|
request: {
|
|
2079
2370
|
/** V1 error format. */
|
|
2080
|
-
'$.xgafv'?:
|
|
2371
|
+
'$.xgafv'?: '1' | '2';
|
|
2081
2372
|
/** OAuth access token. */
|
|
2082
2373
|
access_token?: string;
|
|
2083
2374
|
/** Data format for response. */
|
|
2084
|
-
alt?:
|
|
2375
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2085
2376
|
/** JSONP */
|
|
2086
2377
|
callback?: string;
|
|
2087
2378
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2109,11 +2400,11 @@ declare namespace gapi.client {
|
|
|
2109
2400
|
setIamPolicy(
|
|
2110
2401
|
request: {
|
|
2111
2402
|
/** V1 error format. */
|
|
2112
|
-
'$.xgafv'?:
|
|
2403
|
+
'$.xgafv'?: '1' | '2';
|
|
2113
2404
|
/** OAuth access token. */
|
|
2114
2405
|
access_token?: string;
|
|
2115
2406
|
/** Data format for response. */
|
|
2116
|
-
alt?:
|
|
2407
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2117
2408
|
/** JSONP */
|
|
2118
2409
|
callback?: string;
|
|
2119
2410
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2139,11 +2430,11 @@ declare namespace gapi.client {
|
|
|
2139
2430
|
testIamPermissions(
|
|
2140
2431
|
request: {
|
|
2141
2432
|
/** V1 error format. */
|
|
2142
|
-
'$.xgafv'?:
|
|
2433
|
+
'$.xgafv'?: '1' | '2';
|
|
2143
2434
|
/** OAuth access token. */
|
|
2144
2435
|
access_token?: string;
|
|
2145
2436
|
/** Data format for response. */
|
|
2146
|
-
alt?:
|
|
2437
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2147
2438
|
/** JSONP */
|
|
2148
2439
|
callback?: string;
|
|
2149
2440
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2171,11 +2462,11 @@ declare namespace gapi.client {
|
|
|
2171
2462
|
/** Creates new occurrences in batch. */
|
|
2172
2463
|
batchCreate(request: {
|
|
2173
2464
|
/** V1 error format. */
|
|
2174
|
-
'$.xgafv'?:
|
|
2465
|
+
'$.xgafv'?: '1' | '2';
|
|
2175
2466
|
/** OAuth access token. */
|
|
2176
2467
|
access_token?: string;
|
|
2177
2468
|
/** Data format for response. */
|
|
2178
|
-
alt?:
|
|
2469
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2179
2470
|
/** JSONP */
|
|
2180
2471
|
callback?: string;
|
|
2181
2472
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2200,11 +2491,11 @@ declare namespace gapi.client {
|
|
|
2200
2491
|
batchCreate(
|
|
2201
2492
|
request: {
|
|
2202
2493
|
/** V1 error format. */
|
|
2203
|
-
'$.xgafv'?:
|
|
2494
|
+
'$.xgafv'?: '1' | '2';
|
|
2204
2495
|
/** OAuth access token. */
|
|
2205
2496
|
access_token?: string;
|
|
2206
2497
|
/** Data format for response. */
|
|
2207
|
-
alt?:
|
|
2498
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2208
2499
|
/** JSONP */
|
|
2209
2500
|
callback?: string;
|
|
2210
2501
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2229,11 +2520,11 @@ declare namespace gapi.client {
|
|
|
2229
2520
|
/** Creates a new occurrence. */
|
|
2230
2521
|
create(request: {
|
|
2231
2522
|
/** V1 error format. */
|
|
2232
|
-
'$.xgafv'?:
|
|
2523
|
+
'$.xgafv'?: '1' | '2';
|
|
2233
2524
|
/** OAuth access token. */
|
|
2234
2525
|
access_token?: string;
|
|
2235
2526
|
/** Data format for response. */
|
|
2236
|
-
alt?:
|
|
2527
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2237
2528
|
/** JSONP */
|
|
2238
2529
|
callback?: string;
|
|
2239
2530
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2258,11 +2549,11 @@ declare namespace gapi.client {
|
|
|
2258
2549
|
create(
|
|
2259
2550
|
request: {
|
|
2260
2551
|
/** V1 error format. */
|
|
2261
|
-
'$.xgafv'?:
|
|
2552
|
+
'$.xgafv'?: '1' | '2';
|
|
2262
2553
|
/** OAuth access token. */
|
|
2263
2554
|
access_token?: string;
|
|
2264
2555
|
/** Data format for response. */
|
|
2265
|
-
alt?:
|
|
2556
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2266
2557
|
/** JSONP */
|
|
2267
2558
|
callback?: string;
|
|
2268
2559
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2287,11 +2578,11 @@ declare namespace gapi.client {
|
|
|
2287
2578
|
/** Deletes the specified occurrence. For example, use this method to delete an occurrence when the occurrence is no longer applicable for the given resource. */
|
|
2288
2579
|
delete(request?: {
|
|
2289
2580
|
/** V1 error format. */
|
|
2290
|
-
'$.xgafv'?:
|
|
2581
|
+
'$.xgafv'?: '1' | '2';
|
|
2291
2582
|
/** OAuth access token. */
|
|
2292
2583
|
access_token?: string;
|
|
2293
2584
|
/** Data format for response. */
|
|
2294
|
-
alt?:
|
|
2585
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2295
2586
|
/** JSONP */
|
|
2296
2587
|
callback?: string;
|
|
2297
2588
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2314,11 +2605,11 @@ declare namespace gapi.client {
|
|
|
2314
2605
|
/** Gets the specified occurrence. */
|
|
2315
2606
|
get(request?: {
|
|
2316
2607
|
/** V1 error format. */
|
|
2317
|
-
'$.xgafv'?:
|
|
2608
|
+
'$.xgafv'?: '1' | '2';
|
|
2318
2609
|
/** OAuth access token. */
|
|
2319
2610
|
access_token?: string;
|
|
2320
2611
|
/** Data format for response. */
|
|
2321
|
-
alt?:
|
|
2612
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2322
2613
|
/** JSONP */
|
|
2323
2614
|
callback?: string;
|
|
2324
2615
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2342,11 +2633,11 @@ declare namespace gapi.client {
|
|
|
2342
2633
|
getIamPolicy(
|
|
2343
2634
|
request: {
|
|
2344
2635
|
/** V1 error format. */
|
|
2345
|
-
'$.xgafv'?:
|
|
2636
|
+
'$.xgafv'?: '1' | '2';
|
|
2346
2637
|
/** OAuth access token. */
|
|
2347
2638
|
access_token?: string;
|
|
2348
2639
|
/** Data format for response. */
|
|
2349
|
-
alt?:
|
|
2640
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2350
2641
|
/** JSONP */
|
|
2351
2642
|
callback?: string;
|
|
2352
2643
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2371,11 +2662,11 @@ declare namespace gapi.client {
|
|
|
2371
2662
|
/** Gets the note attached to the specified occurrence. Consumer projects can use this method to get a note that belongs to a provider project. */
|
|
2372
2663
|
getNotes(request?: {
|
|
2373
2664
|
/** V1 error format. */
|
|
2374
|
-
'$.xgafv'?:
|
|
2665
|
+
'$.xgafv'?: '1' | '2';
|
|
2375
2666
|
/** OAuth access token. */
|
|
2376
2667
|
access_token?: string;
|
|
2377
2668
|
/** Data format for response. */
|
|
2378
|
-
alt?:
|
|
2669
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2379
2670
|
/** JSONP */
|
|
2380
2671
|
callback?: string;
|
|
2381
2672
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2398,11 +2689,11 @@ declare namespace gapi.client {
|
|
|
2398
2689
|
/** Gets a summary of the number and severity of occurrences. */
|
|
2399
2690
|
getVulnerabilitySummary(request?: {
|
|
2400
2691
|
/** V1 error format. */
|
|
2401
|
-
'$.xgafv'?:
|
|
2692
|
+
'$.xgafv'?: '1' | '2';
|
|
2402
2693
|
/** OAuth access token. */
|
|
2403
2694
|
access_token?: string;
|
|
2404
2695
|
/** Data format for response. */
|
|
2405
|
-
alt?:
|
|
2696
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2406
2697
|
/** JSONP */
|
|
2407
2698
|
callback?: string;
|
|
2408
2699
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2429,11 +2720,11 @@ declare namespace gapi.client {
|
|
|
2429
2720
|
/** Lists occurrences for the specified project. */
|
|
2430
2721
|
list(request?: {
|
|
2431
2722
|
/** V1 error format. */
|
|
2432
|
-
'$.xgafv'?:
|
|
2723
|
+
'$.xgafv'?: '1' | '2';
|
|
2433
2724
|
/** OAuth access token. */
|
|
2434
2725
|
access_token?: string;
|
|
2435
2726
|
/** Data format for response. */
|
|
2436
|
-
alt?:
|
|
2727
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2437
2728
|
/** JSONP */
|
|
2438
2729
|
callback?: string;
|
|
2439
2730
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2464,11 +2755,11 @@ declare namespace gapi.client {
|
|
|
2464
2755
|
/** Updates the specified occurrence. */
|
|
2465
2756
|
patch(request: {
|
|
2466
2757
|
/** V1 error format. */
|
|
2467
|
-
'$.xgafv'?:
|
|
2758
|
+
'$.xgafv'?: '1' | '2';
|
|
2468
2759
|
/** OAuth access token. */
|
|
2469
2760
|
access_token?: string;
|
|
2470
2761
|
/** Data format for response. */
|
|
2471
|
-
alt?:
|
|
2762
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2472
2763
|
/** JSONP */
|
|
2473
2764
|
callback?: string;
|
|
2474
2765
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2495,11 +2786,11 @@ declare namespace gapi.client {
|
|
|
2495
2786
|
patch(
|
|
2496
2787
|
request: {
|
|
2497
2788
|
/** V1 error format. */
|
|
2498
|
-
'$.xgafv'?:
|
|
2789
|
+
'$.xgafv'?: '1' | '2';
|
|
2499
2790
|
/** OAuth access token. */
|
|
2500
2791
|
access_token?: string;
|
|
2501
2792
|
/** Data format for response. */
|
|
2502
|
-
alt?:
|
|
2793
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2503
2794
|
/** JSONP */
|
|
2504
2795
|
callback?: string;
|
|
2505
2796
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2527,11 +2818,11 @@ declare namespace gapi.client {
|
|
|
2527
2818
|
setIamPolicy(
|
|
2528
2819
|
request: {
|
|
2529
2820
|
/** V1 error format. */
|
|
2530
|
-
'$.xgafv'?:
|
|
2821
|
+
'$.xgafv'?: '1' | '2';
|
|
2531
2822
|
/** OAuth access token. */
|
|
2532
2823
|
access_token?: string;
|
|
2533
2824
|
/** Data format for response. */
|
|
2534
|
-
alt?:
|
|
2825
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2535
2826
|
/** JSONP */
|
|
2536
2827
|
callback?: string;
|
|
2537
2828
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2557,11 +2848,11 @@ declare namespace gapi.client {
|
|
|
2557
2848
|
testIamPermissions(
|
|
2558
2849
|
request: {
|
|
2559
2850
|
/** V1 error format. */
|
|
2560
|
-
'$.xgafv'?:
|
|
2851
|
+
'$.xgafv'?: '1' | '2';
|
|
2561
2852
|
/** OAuth access token. */
|
|
2562
2853
|
access_token?: string;
|
|
2563
2854
|
/** Data format for response. */
|
|
2564
|
-
alt?:
|
|
2855
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2565
2856
|
/** JSONP */
|
|
2566
2857
|
callback?: string;
|
|
2567
2858
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2588,11 +2879,11 @@ declare namespace gapi.client {
|
|
|
2588
2879
|
/** Generates an SBOM for the given resource. */
|
|
2589
2880
|
exportSBOM(request: {
|
|
2590
2881
|
/** V1 error format. */
|
|
2591
|
-
'$.xgafv'?:
|
|
2882
|
+
'$.xgafv'?: '1' | '2';
|
|
2592
2883
|
/** OAuth access token. */
|
|
2593
2884
|
access_token?: string;
|
|
2594
2885
|
/** Data format for response. */
|
|
2595
|
-
alt?:
|
|
2886
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2596
2887
|
/** JSONP */
|
|
2597
2888
|
callback?: string;
|
|
2598
2889
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2617,11 +2908,11 @@ declare namespace gapi.client {
|
|
|
2617
2908
|
exportSBOM(
|
|
2618
2909
|
request: {
|
|
2619
2910
|
/** V1 error format. */
|
|
2620
|
-
'$.xgafv'?:
|
|
2911
|
+
'$.xgafv'?: '1' | '2';
|
|
2621
2912
|
/** OAuth access token. */
|
|
2622
2913
|
access_token?: string;
|
|
2623
2914
|
/** Data format for response. */
|
|
2624
|
-
alt?:
|
|
2915
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2625
2916
|
/** JSONP */
|
|
2626
2917
|
callback?: string;
|
|
2627
2918
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2653,11 +2944,11 @@ declare namespace gapi.client {
|
|
|
2653
2944
|
/** Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note. */
|
|
2654
2945
|
list(request?: {
|
|
2655
2946
|
/** V1 error format. */
|
|
2656
|
-
'$.xgafv'?:
|
|
2947
|
+
'$.xgafv'?: '1' | '2';
|
|
2657
2948
|
/** OAuth access token. */
|
|
2658
2949
|
access_token?: string;
|
|
2659
2950
|
/** Data format for response. */
|
|
2660
|
-
alt?:
|
|
2951
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2661
2952
|
/** JSONP */
|
|
2662
2953
|
callback?: string;
|
|
2663
2954
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2688,11 +2979,11 @@ declare namespace gapi.client {
|
|
|
2688
2979
|
/** Creates new notes in batch. */
|
|
2689
2980
|
batchCreate(request: {
|
|
2690
2981
|
/** V1 error format. */
|
|
2691
|
-
'$.xgafv'?:
|
|
2982
|
+
'$.xgafv'?: '1' | '2';
|
|
2692
2983
|
/** OAuth access token. */
|
|
2693
2984
|
access_token?: string;
|
|
2694
2985
|
/** Data format for response. */
|
|
2695
|
-
alt?:
|
|
2986
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2696
2987
|
/** JSONP */
|
|
2697
2988
|
callback?: string;
|
|
2698
2989
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2717,11 +3008,11 @@ declare namespace gapi.client {
|
|
|
2717
3008
|
batchCreate(
|
|
2718
3009
|
request: {
|
|
2719
3010
|
/** V1 error format. */
|
|
2720
|
-
'$.xgafv'?:
|
|
3011
|
+
'$.xgafv'?: '1' | '2';
|
|
2721
3012
|
/** OAuth access token. */
|
|
2722
3013
|
access_token?: string;
|
|
2723
3014
|
/** Data format for response. */
|
|
2724
|
-
alt?:
|
|
3015
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2725
3016
|
/** JSONP */
|
|
2726
3017
|
callback?: string;
|
|
2727
3018
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2746,11 +3037,11 @@ declare namespace gapi.client {
|
|
|
2746
3037
|
/** Creates a new note. */
|
|
2747
3038
|
create(request: {
|
|
2748
3039
|
/** V1 error format. */
|
|
2749
|
-
'$.xgafv'?:
|
|
3040
|
+
'$.xgafv'?: '1' | '2';
|
|
2750
3041
|
/** OAuth access token. */
|
|
2751
3042
|
access_token?: string;
|
|
2752
3043
|
/** Data format for response. */
|
|
2753
|
-
alt?:
|
|
3044
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2754
3045
|
/** JSONP */
|
|
2755
3046
|
callback?: string;
|
|
2756
3047
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2777,11 +3068,11 @@ declare namespace gapi.client {
|
|
|
2777
3068
|
create(
|
|
2778
3069
|
request: {
|
|
2779
3070
|
/** V1 error format. */
|
|
2780
|
-
'$.xgafv'?:
|
|
3071
|
+
'$.xgafv'?: '1' | '2';
|
|
2781
3072
|
/** OAuth access token. */
|
|
2782
3073
|
access_token?: string;
|
|
2783
3074
|
/** Data format for response. */
|
|
2784
|
-
alt?:
|
|
3075
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2785
3076
|
/** JSONP */
|
|
2786
3077
|
callback?: string;
|
|
2787
3078
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2808,11 +3099,11 @@ declare namespace gapi.client {
|
|
|
2808
3099
|
/** Deletes the specified note. */
|
|
2809
3100
|
delete(request?: {
|
|
2810
3101
|
/** V1 error format. */
|
|
2811
|
-
'$.xgafv'?:
|
|
3102
|
+
'$.xgafv'?: '1' | '2';
|
|
2812
3103
|
/** OAuth access token. */
|
|
2813
3104
|
access_token?: string;
|
|
2814
3105
|
/** Data format for response. */
|
|
2815
|
-
alt?:
|
|
3106
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2816
3107
|
/** JSONP */
|
|
2817
3108
|
callback?: string;
|
|
2818
3109
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2835,11 +3126,11 @@ declare namespace gapi.client {
|
|
|
2835
3126
|
/** Gets the specified note. */
|
|
2836
3127
|
get(request?: {
|
|
2837
3128
|
/** V1 error format. */
|
|
2838
|
-
'$.xgafv'?:
|
|
3129
|
+
'$.xgafv'?: '1' | '2';
|
|
2839
3130
|
/** OAuth access token. */
|
|
2840
3131
|
access_token?: string;
|
|
2841
3132
|
/** Data format for response. */
|
|
2842
|
-
alt?:
|
|
3133
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2843
3134
|
/** JSONP */
|
|
2844
3135
|
callback?: string;
|
|
2845
3136
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2863,11 +3154,11 @@ declare namespace gapi.client {
|
|
|
2863
3154
|
getIamPolicy(
|
|
2864
3155
|
request: {
|
|
2865
3156
|
/** V1 error format. */
|
|
2866
|
-
'$.xgafv'?:
|
|
3157
|
+
'$.xgafv'?: '1' | '2';
|
|
2867
3158
|
/** OAuth access token. */
|
|
2868
3159
|
access_token?: string;
|
|
2869
3160
|
/** Data format for response. */
|
|
2870
|
-
alt?:
|
|
3161
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2871
3162
|
/** JSONP */
|
|
2872
3163
|
callback?: string;
|
|
2873
3164
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2892,11 +3183,11 @@ declare namespace gapi.client {
|
|
|
2892
3183
|
/** Lists notes for the specified project. */
|
|
2893
3184
|
list(request?: {
|
|
2894
3185
|
/** V1 error format. */
|
|
2895
|
-
'$.xgafv'?:
|
|
3186
|
+
'$.xgafv'?: '1' | '2';
|
|
2896
3187
|
/** OAuth access token. */
|
|
2897
3188
|
access_token?: string;
|
|
2898
3189
|
/** Data format for response. */
|
|
2899
|
-
alt?:
|
|
3190
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2900
3191
|
/** JSONP */
|
|
2901
3192
|
callback?: string;
|
|
2902
3193
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2927,11 +3218,11 @@ declare namespace gapi.client {
|
|
|
2927
3218
|
/** Updates the specified note. */
|
|
2928
3219
|
patch(request: {
|
|
2929
3220
|
/** V1 error format. */
|
|
2930
|
-
'$.xgafv'?:
|
|
3221
|
+
'$.xgafv'?: '1' | '2';
|
|
2931
3222
|
/** OAuth access token. */
|
|
2932
3223
|
access_token?: string;
|
|
2933
3224
|
/** Data format for response. */
|
|
2934
|
-
alt?:
|
|
3225
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2935
3226
|
/** JSONP */
|
|
2936
3227
|
callback?: string;
|
|
2937
3228
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2958,11 +3249,11 @@ declare namespace gapi.client {
|
|
|
2958
3249
|
patch(
|
|
2959
3250
|
request: {
|
|
2960
3251
|
/** V1 error format. */
|
|
2961
|
-
'$.xgafv'?:
|
|
3252
|
+
'$.xgafv'?: '1' | '2';
|
|
2962
3253
|
/** OAuth access token. */
|
|
2963
3254
|
access_token?: string;
|
|
2964
3255
|
/** Data format for response. */
|
|
2965
|
-
alt?:
|
|
3256
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2966
3257
|
/** JSONP */
|
|
2967
3258
|
callback?: string;
|
|
2968
3259
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -2990,11 +3281,11 @@ declare namespace gapi.client {
|
|
|
2990
3281
|
setIamPolicy(
|
|
2991
3282
|
request: {
|
|
2992
3283
|
/** V1 error format. */
|
|
2993
|
-
'$.xgafv'?:
|
|
3284
|
+
'$.xgafv'?: '1' | '2';
|
|
2994
3285
|
/** OAuth access token. */
|
|
2995
3286
|
access_token?: string;
|
|
2996
3287
|
/** Data format for response. */
|
|
2997
|
-
alt?:
|
|
3288
|
+
alt?: 'json' | 'media' | 'proto';
|
|
2998
3289
|
/** JSONP */
|
|
2999
3290
|
callback?: string;
|
|
3000
3291
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3020,11 +3311,11 @@ declare namespace gapi.client {
|
|
|
3020
3311
|
testIamPermissions(
|
|
3021
3312
|
request: {
|
|
3022
3313
|
/** V1 error format. */
|
|
3023
|
-
'$.xgafv'?:
|
|
3314
|
+
'$.xgafv'?: '1' | '2';
|
|
3024
3315
|
/** OAuth access token. */
|
|
3025
3316
|
access_token?: string;
|
|
3026
3317
|
/** Data format for response. */
|
|
3027
|
-
alt?:
|
|
3318
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3028
3319
|
/** JSONP */
|
|
3029
3320
|
callback?: string;
|
|
3030
3321
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3052,11 +3343,11 @@ declare namespace gapi.client {
|
|
|
3052
3343
|
/** Creates new occurrences in batch. */
|
|
3053
3344
|
batchCreate(request: {
|
|
3054
3345
|
/** V1 error format. */
|
|
3055
|
-
'$.xgafv'?:
|
|
3346
|
+
'$.xgafv'?: '1' | '2';
|
|
3056
3347
|
/** OAuth access token. */
|
|
3057
3348
|
access_token?: string;
|
|
3058
3349
|
/** Data format for response. */
|
|
3059
|
-
alt?:
|
|
3350
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3060
3351
|
/** JSONP */
|
|
3061
3352
|
callback?: string;
|
|
3062
3353
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3081,11 +3372,11 @@ declare namespace gapi.client {
|
|
|
3081
3372
|
batchCreate(
|
|
3082
3373
|
request: {
|
|
3083
3374
|
/** V1 error format. */
|
|
3084
|
-
'$.xgafv'?:
|
|
3375
|
+
'$.xgafv'?: '1' | '2';
|
|
3085
3376
|
/** OAuth access token. */
|
|
3086
3377
|
access_token?: string;
|
|
3087
3378
|
/** Data format for response. */
|
|
3088
|
-
alt?:
|
|
3379
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3089
3380
|
/** JSONP */
|
|
3090
3381
|
callback?: string;
|
|
3091
3382
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3110,11 +3401,11 @@ declare namespace gapi.client {
|
|
|
3110
3401
|
/** Creates a new occurrence. */
|
|
3111
3402
|
create(request: {
|
|
3112
3403
|
/** V1 error format. */
|
|
3113
|
-
'$.xgafv'?:
|
|
3404
|
+
'$.xgafv'?: '1' | '2';
|
|
3114
3405
|
/** OAuth access token. */
|
|
3115
3406
|
access_token?: string;
|
|
3116
3407
|
/** Data format for response. */
|
|
3117
|
-
alt?:
|
|
3408
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3118
3409
|
/** JSONP */
|
|
3119
3410
|
callback?: string;
|
|
3120
3411
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3139,11 +3430,11 @@ declare namespace gapi.client {
|
|
|
3139
3430
|
create(
|
|
3140
3431
|
request: {
|
|
3141
3432
|
/** V1 error format. */
|
|
3142
|
-
'$.xgafv'?:
|
|
3433
|
+
'$.xgafv'?: '1' | '2';
|
|
3143
3434
|
/** OAuth access token. */
|
|
3144
3435
|
access_token?: string;
|
|
3145
3436
|
/** Data format for response. */
|
|
3146
|
-
alt?:
|
|
3437
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3147
3438
|
/** JSONP */
|
|
3148
3439
|
callback?: string;
|
|
3149
3440
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3168,11 +3459,11 @@ declare namespace gapi.client {
|
|
|
3168
3459
|
/** Deletes the specified occurrence. For example, use this method to delete an occurrence when the occurrence is no longer applicable for the given resource. */
|
|
3169
3460
|
delete(request?: {
|
|
3170
3461
|
/** V1 error format. */
|
|
3171
|
-
'$.xgafv'?:
|
|
3462
|
+
'$.xgafv'?: '1' | '2';
|
|
3172
3463
|
/** OAuth access token. */
|
|
3173
3464
|
access_token?: string;
|
|
3174
3465
|
/** Data format for response. */
|
|
3175
|
-
alt?:
|
|
3466
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3176
3467
|
/** JSONP */
|
|
3177
3468
|
callback?: string;
|
|
3178
3469
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3195,11 +3486,11 @@ declare namespace gapi.client {
|
|
|
3195
3486
|
/** Gets the specified occurrence. */
|
|
3196
3487
|
get(request?: {
|
|
3197
3488
|
/** V1 error format. */
|
|
3198
|
-
'$.xgafv'?:
|
|
3489
|
+
'$.xgafv'?: '1' | '2';
|
|
3199
3490
|
/** OAuth access token. */
|
|
3200
3491
|
access_token?: string;
|
|
3201
3492
|
/** Data format for response. */
|
|
3202
|
-
alt?:
|
|
3493
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3203
3494
|
/** JSONP */
|
|
3204
3495
|
callback?: string;
|
|
3205
3496
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3223,11 +3514,11 @@ declare namespace gapi.client {
|
|
|
3223
3514
|
getIamPolicy(
|
|
3224
3515
|
request: {
|
|
3225
3516
|
/** V1 error format. */
|
|
3226
|
-
'$.xgafv'?:
|
|
3517
|
+
'$.xgafv'?: '1' | '2';
|
|
3227
3518
|
/** OAuth access token. */
|
|
3228
3519
|
access_token?: string;
|
|
3229
3520
|
/** Data format for response. */
|
|
3230
|
-
alt?:
|
|
3521
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3231
3522
|
/** JSONP */
|
|
3232
3523
|
callback?: string;
|
|
3233
3524
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3252,11 +3543,11 @@ declare namespace gapi.client {
|
|
|
3252
3543
|
/** Gets the note attached to the specified occurrence. Consumer projects can use this method to get a note that belongs to a provider project. */
|
|
3253
3544
|
getNotes(request?: {
|
|
3254
3545
|
/** V1 error format. */
|
|
3255
|
-
'$.xgafv'?:
|
|
3546
|
+
'$.xgafv'?: '1' | '2';
|
|
3256
3547
|
/** OAuth access token. */
|
|
3257
3548
|
access_token?: string;
|
|
3258
3549
|
/** Data format for response. */
|
|
3259
|
-
alt?:
|
|
3550
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3260
3551
|
/** JSONP */
|
|
3261
3552
|
callback?: string;
|
|
3262
3553
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3279,11 +3570,11 @@ declare namespace gapi.client {
|
|
|
3279
3570
|
/** Gets a summary of the number and severity of occurrences. */
|
|
3280
3571
|
getVulnerabilitySummary(request?: {
|
|
3281
3572
|
/** V1 error format. */
|
|
3282
|
-
'$.xgafv'?:
|
|
3573
|
+
'$.xgafv'?: '1' | '2';
|
|
3283
3574
|
/** OAuth access token. */
|
|
3284
3575
|
access_token?: string;
|
|
3285
3576
|
/** Data format for response. */
|
|
3286
|
-
alt?:
|
|
3577
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3287
3578
|
/** JSONP */
|
|
3288
3579
|
callback?: string;
|
|
3289
3580
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3310,11 +3601,11 @@ declare namespace gapi.client {
|
|
|
3310
3601
|
/** Lists occurrences for the specified project. */
|
|
3311
3602
|
list(request?: {
|
|
3312
3603
|
/** V1 error format. */
|
|
3313
|
-
'$.xgafv'?:
|
|
3604
|
+
'$.xgafv'?: '1' | '2';
|
|
3314
3605
|
/** OAuth access token. */
|
|
3315
3606
|
access_token?: string;
|
|
3316
3607
|
/** Data format for response. */
|
|
3317
|
-
alt?:
|
|
3608
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3318
3609
|
/** JSONP */
|
|
3319
3610
|
callback?: string;
|
|
3320
3611
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3345,11 +3636,11 @@ declare namespace gapi.client {
|
|
|
3345
3636
|
/** Updates the specified occurrence. */
|
|
3346
3637
|
patch(request: {
|
|
3347
3638
|
/** V1 error format. */
|
|
3348
|
-
'$.xgafv'?:
|
|
3639
|
+
'$.xgafv'?: '1' | '2';
|
|
3349
3640
|
/** OAuth access token. */
|
|
3350
3641
|
access_token?: string;
|
|
3351
3642
|
/** Data format for response. */
|
|
3352
|
-
alt?:
|
|
3643
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3353
3644
|
/** JSONP */
|
|
3354
3645
|
callback?: string;
|
|
3355
3646
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3376,11 +3667,11 @@ declare namespace gapi.client {
|
|
|
3376
3667
|
patch(
|
|
3377
3668
|
request: {
|
|
3378
3669
|
/** V1 error format. */
|
|
3379
|
-
'$.xgafv'?:
|
|
3670
|
+
'$.xgafv'?: '1' | '2';
|
|
3380
3671
|
/** OAuth access token. */
|
|
3381
3672
|
access_token?: string;
|
|
3382
3673
|
/** Data format for response. */
|
|
3383
|
-
alt?:
|
|
3674
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3384
3675
|
/** JSONP */
|
|
3385
3676
|
callback?: string;
|
|
3386
3677
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3408,11 +3699,11 @@ declare namespace gapi.client {
|
|
|
3408
3699
|
setIamPolicy(
|
|
3409
3700
|
request: {
|
|
3410
3701
|
/** V1 error format. */
|
|
3411
|
-
'$.xgafv'?:
|
|
3702
|
+
'$.xgafv'?: '1' | '2';
|
|
3412
3703
|
/** OAuth access token. */
|
|
3413
3704
|
access_token?: string;
|
|
3414
3705
|
/** Data format for response. */
|
|
3415
|
-
alt?:
|
|
3706
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3416
3707
|
/** JSONP */
|
|
3417
3708
|
callback?: string;
|
|
3418
3709
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3438,11 +3729,11 @@ declare namespace gapi.client {
|
|
|
3438
3729
|
testIamPermissions(
|
|
3439
3730
|
request: {
|
|
3440
3731
|
/** V1 error format. */
|
|
3441
|
-
'$.xgafv'?:
|
|
3732
|
+
'$.xgafv'?: '1' | '2';
|
|
3442
3733
|
/** OAuth access token. */
|
|
3443
3734
|
access_token?: string;
|
|
3444
3735
|
/** Data format for response. */
|
|
3445
|
-
alt?:
|
|
3736
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3446
3737
|
/** JSONP */
|
|
3447
3738
|
callback?: string;
|
|
3448
3739
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3469,11 +3760,11 @@ declare namespace gapi.client {
|
|
|
3469
3760
|
/** Generates an SBOM for the given resource. */
|
|
3470
3761
|
exportSBOM(request: {
|
|
3471
3762
|
/** V1 error format. */
|
|
3472
|
-
'$.xgafv'?:
|
|
3763
|
+
'$.xgafv'?: '1' | '2';
|
|
3473
3764
|
/** OAuth access token. */
|
|
3474
3765
|
access_token?: string;
|
|
3475
3766
|
/** Data format for response. */
|
|
3476
|
-
alt?:
|
|
3767
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3477
3768
|
/** JSONP */
|
|
3478
3769
|
callback?: string;
|
|
3479
3770
|
/** Selector specifying which fields to include in a partial response. */
|
|
@@ -3498,11 +3789,11 @@ declare namespace gapi.client {
|
|
|
3498
3789
|
exportSBOM(
|
|
3499
3790
|
request: {
|
|
3500
3791
|
/** V1 error format. */
|
|
3501
|
-
'$.xgafv'?:
|
|
3792
|
+
'$.xgafv'?: '1' | '2';
|
|
3502
3793
|
/** OAuth access token. */
|
|
3503
3794
|
access_token?: string;
|
|
3504
3795
|
/** Data format for response. */
|
|
3505
|
-
alt?:
|
|
3796
|
+
alt?: 'json' | 'media' | 'proto';
|
|
3506
3797
|
/** JSONP */
|
|
3507
3798
|
callback?: string;
|
|
3508
3799
|
/** Selector specifying which fields to include in a partial response. */
|