@maxim_mazurok/gapi.client.securesourcemanager-v1 0.32.0 → 0.33.0

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.
Files changed (2) hide show
  1. package/index.d.ts +14 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -473,6 +473,10 @@ declare namespace gapi.client {
473
473
  instance?: string;
474
474
  /** Identifier. A unique identifier for a repository. The name should be of the format: `projects/{project}/locations/{location_id}/repositories/{repository_id}` */
475
475
  name?: string;
476
+ /** Optional. Provides configuration for scanning. */
477
+ scanConfig?: ScanConfig;
478
+ /** Optional. Repository level service account (BYOSA). */
479
+ serviceAccount?: string;
476
480
  /** Output only. Unique identifier of the repository. */
477
481
  uid?: string;
478
482
  /** Output only. Update timestamp. */
@@ -502,6 +506,16 @@ declare namespace gapi.client {
502
506
  /** Output only. The effective commit sha this review is pointing to. */
503
507
  effectiveCommitSha?: string;
504
508
  }
509
+ interface ScanConfig {
510
+ /** Optional. Configuration for secret scanning. */
511
+ secretScanConfig?: SecretScanConfig;
512
+ }
513
+ interface SecretScanConfig {
514
+ /** Optional. Enables secret scanning for the repository. */
515
+ enabled?: boolean;
516
+ /** Optional. The DLP inspect template to use for secret scanning. */
517
+ inspectTemplate?: string;
518
+ }
505
519
  interface SetIamPolicyRequest {
506
520
  /** REQUIRED: The complete policy to be applied to the `resource`. The size of the policy is limited to a few 10s of KB. An empty policy is a valid policy but certain Google Cloud services (such as Projects) might reject them. */
507
521
  policy?: Policy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.securesourcemanager-v1",
3
- "version": "0.32.0",
3
+ "version": "0.33.0",
4
4
  "description": "TypeScript typings for Secure Source Manager API v1",
5
5
  "repository": {
6
6
  "type": "git",