@pulumi/gcp 8.3.1 → 8.4.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.
- package/apigee/natAddress.d.ts +76 -1
- package/apigee/natAddress.js +66 -1
- package/apigee/natAddress.js.map +1 -1
- package/bigquery/table.d.ts +12 -0
- package/bigquery/table.js +2 -0
- package/bigquery/table.js.map +1 -1
- package/cloudrun/service.d.ts +39 -0
- package/cloudrun/service.js +39 -0
- package/cloudrun/service.js.map +1 -1
- package/cloudrunv2/service.d.ts +33 -0
- package/cloudrunv2/service.js +33 -0
- package/cloudrunv2/service.js.map +1 -1
- package/compute/getRegionInstanceGroupManager.d.ts +135 -0
- package/compute/getRegionInstanceGroupManager.js +82 -0
- package/compute/getRegionInstanceGroupManager.js.map +1 -0
- package/compute/getRouterNat.d.ts +1 -0
- package/compute/getRouterNat.js.map +1 -1
- package/compute/index.d.ts +9 -0
- package/compute/index.js +17 -4
- package/compute/index.js.map +1 -1
- package/compute/instance.d.ts +3 -3
- package/compute/instanceFromMachineImage.d.ts +3 -3
- package/compute/instanceFromTemplate.d.ts +3 -3
- package/compute/interconnect.d.ts +22 -16
- package/compute/interconnect.js +0 -6
- package/compute/interconnect.js.map +1 -1
- package/compute/regionCommitment.d.ts +12 -0
- package/compute/regionCommitment.js +2 -0
- package/compute/regionCommitment.js.map +1 -1
- package/compute/regionNetworkFirewallPolicyWithRules.d.ts +304 -0
- package/compute/regionNetworkFirewallPolicyWithRules.js +210 -0
- package/compute/regionNetworkFirewallPolicyWithRules.js.map +1 -0
- package/compute/routerNat.d.ts +17 -2
- package/compute/routerNat.js +2 -0
- package/compute/routerNat.js.map +1 -1
- package/compute/routerNatAddress.d.ts +171 -0
- package/compute/routerNatAddress.js +113 -0
- package/compute/routerNatAddress.js.map +1 -0
- package/compute/subnetwork.d.ts +6 -6
- package/logging/index.d.ts +3 -0
- package/logging/index.js +6 -1
- package/logging/index.js.map +1 -1
- package/logging/logScope.d.ts +163 -0
- package/logging/logScope.js +106 -0
- package/logging/logScope.js.map +1 -0
- package/looker/instance.d.ts +49 -0
- package/looker/instance.js +26 -0
- package/looker/instance.js.map +1 -1
- package/networkconnectivity/spoke.d.ts +174 -0
- package/networkconnectivity/spoke.js +174 -0
- package/networkconnectivity/spoke.js.map +1 -1
- package/networksecurity/securityProfile.d.ts +1 -1
- package/networksecurity/securityProfile.js +1 -1
- package/package.json +2 -2
- package/privilegedaccessmanager/getEntitlement.d.ts +43 -0
- package/privilegedaccessmanager/getEntitlement.js +28 -0
- package/privilegedaccessmanager/getEntitlement.js.map +1 -0
- package/privilegedaccessmanager/index.d.ts +3 -0
- package/privilegedaccessmanager/index.js +4 -1
- package/privilegedaccessmanager/index.js.map +1 -1
- package/secretmanager/getRegionalSecretVersion.d.ts +2 -2
- package/secretmanager/getRegionalSecretVersion.js +2 -2
- package/secretmanager/getRegionalSecretVersionAccess.d.ts +105 -0
- package/secretmanager/getRegionalSecretVersionAccess.js +58 -0
- package/secretmanager/getRegionalSecretVersionAccess.js.map +1 -0
- package/secretmanager/getRegionalSecrets.d.ts +88 -0
- package/secretmanager/getRegionalSecrets.js +54 -0
- package/secretmanager/getRegionalSecrets.js.map +1 -0
- package/secretmanager/index.d.ts +6 -0
- package/secretmanager/index.js +7 -1
- package/secretmanager/index.js.map +1 -1
- package/types/input.d.ts +578 -3
- package/types/output.d.ts +1055 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/gcp",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.4.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Google Cloud Platform resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"pulumi": {
|
|
28
28
|
"resource": true,
|
|
29
29
|
"name": "gcp",
|
|
30
|
-
"version": "8.
|
|
30
|
+
"version": "8.4.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
export declare function getEntitlement(args?: GetEntitlementArgs, opts?: pulumi.InvokeOptions): Promise<GetEntitlementResult>;
|
|
4
|
+
/**
|
|
5
|
+
* A collection of arguments for invoking getEntitlement.
|
|
6
|
+
*/
|
|
7
|
+
export interface GetEntitlementArgs {
|
|
8
|
+
entitlementId?: string;
|
|
9
|
+
location?: string;
|
|
10
|
+
parent?: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* A collection of values returned by getEntitlement.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetEntitlementResult {
|
|
16
|
+
readonly additionalNotificationTargets: outputs.privilegedaccessmanager.GetEntitlementAdditionalNotificationTarget[];
|
|
17
|
+
readonly approvalWorkflows: outputs.privilegedaccessmanager.GetEntitlementApprovalWorkflow[];
|
|
18
|
+
readonly createTime: string;
|
|
19
|
+
readonly eligibleUsers: outputs.privilegedaccessmanager.GetEntitlementEligibleUser[];
|
|
20
|
+
readonly entitlementId?: string;
|
|
21
|
+
readonly etag: string;
|
|
22
|
+
/**
|
|
23
|
+
* The provider-assigned unique ID for this managed resource.
|
|
24
|
+
*/
|
|
25
|
+
readonly id: string;
|
|
26
|
+
readonly location?: string;
|
|
27
|
+
readonly maxRequestDuration: string;
|
|
28
|
+
readonly name: string;
|
|
29
|
+
readonly parent?: string;
|
|
30
|
+
readonly privilegedAccesses: outputs.privilegedaccessmanager.GetEntitlementPrivilegedAccess[];
|
|
31
|
+
readonly requesterJustificationConfigs: outputs.privilegedaccessmanager.GetEntitlementRequesterJustificationConfig[];
|
|
32
|
+
readonly state: string;
|
|
33
|
+
readonly updateTime: string;
|
|
34
|
+
}
|
|
35
|
+
export declare function getEntitlementOutput(args?: GetEntitlementOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEntitlementResult>;
|
|
36
|
+
/**
|
|
37
|
+
* A collection of arguments for invoking getEntitlement.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetEntitlementOutputArgs {
|
|
40
|
+
entitlementId?: pulumi.Input<string>;
|
|
41
|
+
location?: pulumi.Input<string>;
|
|
42
|
+
parent?: pulumi.Input<string>;
|
|
43
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getEntitlementOutput = exports.getEntitlement = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
function getEntitlement(args, opts) {
|
|
9
|
+
args = args || {};
|
|
10
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
11
|
+
return pulumi.runtime.invoke("gcp:privilegedaccessmanager/getEntitlement:getEntitlement", {
|
|
12
|
+
"entitlementId": args.entitlementId,
|
|
13
|
+
"location": args.location,
|
|
14
|
+
"parent": args.parent,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getEntitlement = getEntitlement;
|
|
18
|
+
function getEntitlementOutput(args, opts) {
|
|
19
|
+
args = args || {};
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("gcp:privilegedaccessmanager/getEntitlement:getEntitlement", {
|
|
22
|
+
"entitlementId": args.entitlementId,
|
|
23
|
+
"location": args.location,
|
|
24
|
+
"parent": args.parent,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getEntitlementOutput = getEntitlementOutput;
|
|
28
|
+
//# sourceMappingURL=getEntitlement.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getEntitlement.js","sourceRoot":"","sources":["../../privilegedaccessmanager/getEntitlement.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2DAA2D,EAAE;QACtF,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wCAQC;AAkCD,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2DAA2D,EAAE;QAC5F,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oDAQC"}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export { EntitlementArgs, EntitlementState } from "./entitlement";
|
|
2
2
|
export type Entitlement = import("./entitlement").Entitlement;
|
|
3
3
|
export declare const Entitlement: typeof import("./entitlement").Entitlement;
|
|
4
|
+
export { GetEntitlementArgs, GetEntitlementResult, GetEntitlementOutputArgs } from "./getEntitlement";
|
|
5
|
+
export declare const getEntitlement: typeof import("./getEntitlement").getEntitlement;
|
|
6
|
+
export declare const getEntitlementOutput: typeof import("./getEntitlement").getEntitlementOutput;
|
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.Entitlement = void 0;
|
|
5
|
+
exports.getEntitlementOutput = exports.getEntitlement = exports.Entitlement = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.Entitlement = null;
|
|
9
9
|
utilities.lazyLoad(exports, ["Entitlement"], () => require("./entitlement"));
|
|
10
|
+
exports.getEntitlement = null;
|
|
11
|
+
exports.getEntitlementOutput = null;
|
|
12
|
+
utilities.lazyLoad(exports, ["getEntitlement", "getEntitlementOutput"], () => require("./getEntitlement"));
|
|
10
13
|
const _module = {
|
|
11
14
|
version: utilities.getVersion(),
|
|
12
15
|
construct: (name, type, urn) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../privilegedaccessmanager/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../privilegedaccessmanager/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,WAAW,GAA+C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGhE,QAAA,cAAc,GAAqD,IAAW,CAAC;AAC/E,QAAA,oBAAoB,GAA2D,IAAW,CAAC;AACxG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,gBAAgB,EAAC,sBAAsB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAC,CAAC;AAG1G,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,qDAAqD;gBACtD,OAAO,IAAI,mBAAW,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACzD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,qCAAqC,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "../types/output";
|
|
3
3
|
/**
|
|
4
|
-
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the
|
|
4
|
+
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the gcp.secretmanager.getRegionalSecretVersionAccess datasource.
|
|
5
5
|
*
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
|
@@ -80,7 +80,7 @@ export interface GetRegionalSecretVersionResult {
|
|
|
80
80
|
readonly version: string;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
|
-
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the
|
|
83
|
+
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the gcp.secretmanager.getRegionalSecretVersionAccess datasource.
|
|
84
84
|
*
|
|
85
85
|
* ## Example Usage
|
|
86
86
|
*
|
|
@@ -6,7 +6,7 @@ exports.getRegionalSecretVersionOutput = exports.getRegionalSecretVersion = void
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the
|
|
9
|
+
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the gcp.secretmanager.getRegionalSecretVersionAccess datasource.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -31,7 +31,7 @@ function getRegionalSecretVersion(args, opts) {
|
|
|
31
31
|
}
|
|
32
32
|
exports.getRegionalSecretVersion = getRegionalSecretVersion;
|
|
33
33
|
/**
|
|
34
|
-
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the
|
|
34
|
+
* Get the value and metadata from a Secret Manager regional secret version. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions). If you don't need the metadata (i.e., if you want to use a more limited role to access the regional secret version only), see also the gcp.secretmanager.getRegionalSecretVersionAccess datasource.
|
|
35
35
|
*
|
|
36
36
|
* ## Example Usage
|
|
37
37
|
*
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Get the value from a Secret Manager regional secret version. This is similar to the gcp.secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions/access).
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as gcp from "@pulumi/gcp";
|
|
10
|
+
*
|
|
11
|
+
* const latest = gcp.secretmanager.getRegionalSecretVersionAccess({
|
|
12
|
+
* secret: "my-secret",
|
|
13
|
+
* location: "us-central1",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getRegionalSecretVersionAccess(args: GetRegionalSecretVersionAccessArgs, opts?: pulumi.InvokeOptions): Promise<GetRegionalSecretVersionAccessResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getRegionalSecretVersionAccess.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetRegionalSecretVersionAccessArgs {
|
|
22
|
+
/**
|
|
23
|
+
* Location of Secret Manager regional secret resource.
|
|
24
|
+
* It must be provided when the `secret` field provided consists of only the name of the regional secret.
|
|
25
|
+
*/
|
|
26
|
+
location?: string;
|
|
27
|
+
/**
|
|
28
|
+
* The project to get the secret version for. If it
|
|
29
|
+
* is not provided, the provider project is used.
|
|
30
|
+
*/
|
|
31
|
+
project?: string;
|
|
32
|
+
/**
|
|
33
|
+
* The regional secret to get the secret version for.
|
|
34
|
+
* This can be either the reference of the regional secret as in `projects/{{project}}/locations/{{location}}/secrets/{{secret_id}}` or only the name of the regional secret as in `{{secret_id}}`. If only the name of the regional secret is provided, the location must also be provided.
|
|
35
|
+
*/
|
|
36
|
+
secret: string;
|
|
37
|
+
/**
|
|
38
|
+
* The version of the regional secret to get. If it
|
|
39
|
+
* is not provided, the latest version is retrieved.
|
|
40
|
+
*/
|
|
41
|
+
version?: string;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* A collection of values returned by getRegionalSecretVersionAccess.
|
|
45
|
+
*/
|
|
46
|
+
export interface GetRegionalSecretVersionAccessResult {
|
|
47
|
+
/**
|
|
48
|
+
* The provider-assigned unique ID for this managed resource.
|
|
49
|
+
*/
|
|
50
|
+
readonly id: string;
|
|
51
|
+
readonly location: string;
|
|
52
|
+
/**
|
|
53
|
+
* The resource name of the regional SecretVersion. Format:
|
|
54
|
+
* `projects/{{project}}/locations/{{location}}/secrets/{{secret_id}}/versions/{{version}}`
|
|
55
|
+
*/
|
|
56
|
+
readonly name: string;
|
|
57
|
+
readonly project: string;
|
|
58
|
+
readonly secret: string;
|
|
59
|
+
/**
|
|
60
|
+
* The secret data. No larger than 64KiB.
|
|
61
|
+
*/
|
|
62
|
+
readonly secretData: string;
|
|
63
|
+
readonly version: string;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Get the value from a Secret Manager regional secret version. This is similar to the gcp.secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions/access).
|
|
67
|
+
*
|
|
68
|
+
* ## Example Usage
|
|
69
|
+
*
|
|
70
|
+
* ```typescript
|
|
71
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
72
|
+
* import * as gcp from "@pulumi/gcp";
|
|
73
|
+
*
|
|
74
|
+
* const latest = gcp.secretmanager.getRegionalSecretVersionAccess({
|
|
75
|
+
* secret: "my-secret",
|
|
76
|
+
* location: "us-central1",
|
|
77
|
+
* });
|
|
78
|
+
* ```
|
|
79
|
+
*/
|
|
80
|
+
export declare function getRegionalSecretVersionAccessOutput(args: GetRegionalSecretVersionAccessOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRegionalSecretVersionAccessResult>;
|
|
81
|
+
/**
|
|
82
|
+
* A collection of arguments for invoking getRegionalSecretVersionAccess.
|
|
83
|
+
*/
|
|
84
|
+
export interface GetRegionalSecretVersionAccessOutputArgs {
|
|
85
|
+
/**
|
|
86
|
+
* Location of Secret Manager regional secret resource.
|
|
87
|
+
* It must be provided when the `secret` field provided consists of only the name of the regional secret.
|
|
88
|
+
*/
|
|
89
|
+
location?: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* The project to get the secret version for. If it
|
|
92
|
+
* is not provided, the provider project is used.
|
|
93
|
+
*/
|
|
94
|
+
project?: pulumi.Input<string>;
|
|
95
|
+
/**
|
|
96
|
+
* The regional secret to get the secret version for.
|
|
97
|
+
* This can be either the reference of the regional secret as in `projects/{{project}}/locations/{{location}}/secrets/{{secret_id}}` or only the name of the regional secret as in `{{secret_id}}`. If only the name of the regional secret is provided, the location must also be provided.
|
|
98
|
+
*/
|
|
99
|
+
secret: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* The version of the regional secret to get. If it
|
|
102
|
+
* is not provided, the latest version is retrieved.
|
|
103
|
+
*/
|
|
104
|
+
version?: pulumi.Input<string>;
|
|
105
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRegionalSecretVersionAccessOutput = exports.getRegionalSecretVersionAccess = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Get the value from a Secret Manager regional secret version. This is similar to the gcp.secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions/access).
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as gcp from "@pulumi/gcp";
|
|
16
|
+
*
|
|
17
|
+
* const latest = gcp.secretmanager.getRegionalSecretVersionAccess({
|
|
18
|
+
* secret: "my-secret",
|
|
19
|
+
* location: "us-central1",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getRegionalSecretVersionAccess(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("gcp:secretmanager/getRegionalSecretVersionAccess:getRegionalSecretVersionAccess", {
|
|
26
|
+
"location": args.location,
|
|
27
|
+
"project": args.project,
|
|
28
|
+
"secret": args.secret,
|
|
29
|
+
"version": args.version,
|
|
30
|
+
}, opts);
|
|
31
|
+
}
|
|
32
|
+
exports.getRegionalSecretVersionAccess = getRegionalSecretVersionAccess;
|
|
33
|
+
/**
|
|
34
|
+
* Get the value from a Secret Manager regional secret version. This is similar to the gcp.secretmanager.RegionalSecretVersion datasource, but it only requires the [Secret Manager Secret Accessor](https://cloud.google.com/secret-manager/docs/access-control#secretmanager.secretAccessor) role. For more information see the [official documentation](https://cloud.google.com/secret-manager/docs/regional-secrets-overview) and [API](https://cloud.google.com/secret-manager/docs/reference/rest/v1/projects.secrets.versions/access).
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as gcp from "@pulumi/gcp";
|
|
41
|
+
*
|
|
42
|
+
* const latest = gcp.secretmanager.getRegionalSecretVersionAccess({
|
|
43
|
+
* secret: "my-secret",
|
|
44
|
+
* location: "us-central1",
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getRegionalSecretVersionAccessOutput(args, opts) {
|
|
49
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
50
|
+
return pulumi.runtime.invokeOutput("gcp:secretmanager/getRegionalSecretVersionAccess:getRegionalSecretVersionAccess", {
|
|
51
|
+
"location": args.location,
|
|
52
|
+
"project": args.project,
|
|
53
|
+
"secret": args.secret,
|
|
54
|
+
"version": args.version,
|
|
55
|
+
}, opts);
|
|
56
|
+
}
|
|
57
|
+
exports.getRegionalSecretVersionAccessOutput = getRegionalSecretVersionAccessOutput;
|
|
58
|
+
//# sourceMappingURL=getRegionalSecretVersionAccess.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRegionalSecretVersionAccess.js","sourceRoot":"","sources":["../../secretmanager/getRegionalSecretVersionAccess.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;GAcG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iFAAiF,EAAE;QAC5G,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wEAQC;AAkDD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iFAAiF,EAAE;QAClH,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oFAQC"}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to list the Secret Manager Regional Secrets.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as gcp from "@pulumi/gcp";
|
|
11
|
+
*
|
|
12
|
+
* const secrets = gcp.secretmanager.getRegionalSecrets({
|
|
13
|
+
* location: "us-central1",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getRegionalSecrets(args: GetRegionalSecretsArgs, opts?: pulumi.InvokeOptions): Promise<GetRegionalSecretsResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getRegionalSecrets.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetRegionalSecretsArgs {
|
|
22
|
+
/**
|
|
23
|
+
* Filter string, adhering to the rules in [List-operation filtering](https://cloud.google.com/secret-manager/docs/filtering). List only secrets matching the filter. If filter is empty, all regional secrets are listed from the specified location.
|
|
24
|
+
*/
|
|
25
|
+
filter?: string;
|
|
26
|
+
/**
|
|
27
|
+
* The location of the regional secret.
|
|
28
|
+
*/
|
|
29
|
+
location: string;
|
|
30
|
+
/**
|
|
31
|
+
* The ID of the project.
|
|
32
|
+
*/
|
|
33
|
+
project?: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* A collection of values returned by getRegionalSecrets.
|
|
37
|
+
*/
|
|
38
|
+
export interface GetRegionalSecretsResult {
|
|
39
|
+
readonly filter?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The provider-assigned unique ID for this managed resource.
|
|
42
|
+
*/
|
|
43
|
+
readonly id: string;
|
|
44
|
+
/**
|
|
45
|
+
* The location in which the resource belongs.
|
|
46
|
+
*/
|
|
47
|
+
readonly location: string;
|
|
48
|
+
/**
|
|
49
|
+
* The ID of the project in which the resource belongs.
|
|
50
|
+
*/
|
|
51
|
+
readonly project: string;
|
|
52
|
+
/**
|
|
53
|
+
* A list of regional secrets present in the specified location and matching the filter. Structure is defined below.
|
|
54
|
+
*/
|
|
55
|
+
readonly secrets: outputs.secretmanager.GetRegionalSecretsSecret[];
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* Use this data source to list the Secret Manager Regional Secrets.
|
|
59
|
+
*
|
|
60
|
+
* ## Example Usage
|
|
61
|
+
*
|
|
62
|
+
* ```typescript
|
|
63
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
64
|
+
* import * as gcp from "@pulumi/gcp";
|
|
65
|
+
*
|
|
66
|
+
* const secrets = gcp.secretmanager.getRegionalSecrets({
|
|
67
|
+
* location: "us-central1",
|
|
68
|
+
* });
|
|
69
|
+
* ```
|
|
70
|
+
*/
|
|
71
|
+
export declare function getRegionalSecretsOutput(args: GetRegionalSecretsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetRegionalSecretsResult>;
|
|
72
|
+
/**
|
|
73
|
+
* A collection of arguments for invoking getRegionalSecrets.
|
|
74
|
+
*/
|
|
75
|
+
export interface GetRegionalSecretsOutputArgs {
|
|
76
|
+
/**
|
|
77
|
+
* Filter string, adhering to the rules in [List-operation filtering](https://cloud.google.com/secret-manager/docs/filtering). List only secrets matching the filter. If filter is empty, all regional secrets are listed from the specified location.
|
|
78
|
+
*/
|
|
79
|
+
filter?: pulumi.Input<string>;
|
|
80
|
+
/**
|
|
81
|
+
* The location of the regional secret.
|
|
82
|
+
*/
|
|
83
|
+
location: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* The ID of the project.
|
|
86
|
+
*/
|
|
87
|
+
project?: pulumi.Input<string>;
|
|
88
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRegionalSecretsOutput = exports.getRegionalSecrets = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to list the Secret Manager Regional Secrets.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as gcp from "@pulumi/gcp";
|
|
16
|
+
*
|
|
17
|
+
* const secrets = gcp.secretmanager.getRegionalSecrets({
|
|
18
|
+
* location: "us-central1",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getRegionalSecrets(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("gcp:secretmanager/getRegionalSecrets:getRegionalSecrets", {
|
|
25
|
+
"filter": args.filter,
|
|
26
|
+
"location": args.location,
|
|
27
|
+
"project": args.project,
|
|
28
|
+
}, opts);
|
|
29
|
+
}
|
|
30
|
+
exports.getRegionalSecrets = getRegionalSecrets;
|
|
31
|
+
/**
|
|
32
|
+
* Use this data source to list the Secret Manager Regional Secrets.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as gcp from "@pulumi/gcp";
|
|
39
|
+
*
|
|
40
|
+
* const secrets = gcp.secretmanager.getRegionalSecrets({
|
|
41
|
+
* location: "us-central1",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getRegionalSecretsOutput(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invokeOutput("gcp:secretmanager/getRegionalSecrets:getRegionalSecrets", {
|
|
48
|
+
"filter": args.filter,
|
|
49
|
+
"location": args.location,
|
|
50
|
+
"project": args.project,
|
|
51
|
+
}, opts);
|
|
52
|
+
}
|
|
53
|
+
exports.getRegionalSecretsOutput = getRegionalSecretsOutput;
|
|
54
|
+
//# sourceMappingURL=getRegionalSecrets.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRegionalSecrets.js","sourceRoot":"","sources":["../../secretmanager/getRegionalSecrets.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yDAAyD,EAAE;QACpF,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AA0CD;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yDAAyD,EAAE;QAC1F,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4DAOC"}
|
package/secretmanager/index.d.ts
CHANGED
|
@@ -7,6 +7,12 @@ export declare const getRegionalSecretIamPolicyOutput: typeof import("./getRegio
|
|
|
7
7
|
export { GetRegionalSecretVersionArgs, GetRegionalSecretVersionResult, GetRegionalSecretVersionOutputArgs } from "./getRegionalSecretVersion";
|
|
8
8
|
export declare const getRegionalSecretVersion: typeof import("./getRegionalSecretVersion").getRegionalSecretVersion;
|
|
9
9
|
export declare const getRegionalSecretVersionOutput: typeof import("./getRegionalSecretVersion").getRegionalSecretVersionOutput;
|
|
10
|
+
export { GetRegionalSecretVersionAccessArgs, GetRegionalSecretVersionAccessResult, GetRegionalSecretVersionAccessOutputArgs } from "./getRegionalSecretVersionAccess";
|
|
11
|
+
export declare const getRegionalSecretVersionAccess: typeof import("./getRegionalSecretVersionAccess").getRegionalSecretVersionAccess;
|
|
12
|
+
export declare const getRegionalSecretVersionAccessOutput: typeof import("./getRegionalSecretVersionAccess").getRegionalSecretVersionAccessOutput;
|
|
13
|
+
export { GetRegionalSecretsArgs, GetRegionalSecretsResult, GetRegionalSecretsOutputArgs } from "./getRegionalSecrets";
|
|
14
|
+
export declare const getRegionalSecrets: typeof import("./getRegionalSecrets").getRegionalSecrets;
|
|
15
|
+
export declare const getRegionalSecretsOutput: typeof import("./getRegionalSecrets").getRegionalSecretsOutput;
|
|
10
16
|
export { GetSecretArgs, GetSecretResult, GetSecretOutputArgs } from "./getSecret";
|
|
11
17
|
export declare const getSecret: typeof import("./getSecret").getSecret;
|
|
12
18
|
export declare const getSecretOutput: typeof import("./getSecret").getSecretOutput;
|
package/secretmanager/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.SecretVersion = exports.SecretIamPolicy = exports.SecretIamMember = exports.SecretIamBinding = exports.Secret = exports.RegionalSecretVersion = exports.RegionalSecretIamPolicy = exports.RegionalSecretIamMember = exports.RegionalSecretIamBinding = exports.RegionalSecret = exports.getSecretsOutput = exports.getSecrets = exports.getSecretVersionAccessOutput = exports.getSecretVersionAccess = exports.getSecretVersionOutput = exports.getSecretVersion = exports.getSecretIamPolicyOutput = exports.getSecretIamPolicy = exports.getSecretOutput = exports.getSecret = exports.getRegionalSecretVersionOutput = exports.getRegionalSecretVersion = exports.getRegionalSecretIamPolicyOutput = exports.getRegionalSecretIamPolicy = exports.getRegionalSecretOutput = exports.getRegionalSecret = void 0;
|
|
5
|
+
exports.SecretVersion = exports.SecretIamPolicy = exports.SecretIamMember = exports.SecretIamBinding = exports.Secret = exports.RegionalSecretVersion = exports.RegionalSecretIamPolicy = exports.RegionalSecretIamMember = exports.RegionalSecretIamBinding = exports.RegionalSecret = exports.getSecretsOutput = exports.getSecrets = exports.getSecretVersionAccessOutput = exports.getSecretVersionAccess = exports.getSecretVersionOutput = exports.getSecretVersion = exports.getSecretIamPolicyOutput = exports.getSecretIamPolicy = exports.getSecretOutput = exports.getSecret = exports.getRegionalSecretsOutput = exports.getRegionalSecrets = exports.getRegionalSecretVersionAccessOutput = exports.getRegionalSecretVersionAccess = exports.getRegionalSecretVersionOutput = exports.getRegionalSecretVersion = exports.getRegionalSecretIamPolicyOutput = exports.getRegionalSecretIamPolicy = exports.getRegionalSecretOutput = exports.getRegionalSecret = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.getRegionalSecret = null;
|
|
@@ -14,6 +14,12 @@ utilities.lazyLoad(exports, ["getRegionalSecretIamPolicy", "getRegionalSecretIam
|
|
|
14
14
|
exports.getRegionalSecretVersion = null;
|
|
15
15
|
exports.getRegionalSecretVersionOutput = null;
|
|
16
16
|
utilities.lazyLoad(exports, ["getRegionalSecretVersion", "getRegionalSecretVersionOutput"], () => require("./getRegionalSecretVersion"));
|
|
17
|
+
exports.getRegionalSecretVersionAccess = null;
|
|
18
|
+
exports.getRegionalSecretVersionAccessOutput = null;
|
|
19
|
+
utilities.lazyLoad(exports, ["getRegionalSecretVersionAccess", "getRegionalSecretVersionAccessOutput"], () => require("./getRegionalSecretVersionAccess"));
|
|
20
|
+
exports.getRegionalSecrets = null;
|
|
21
|
+
exports.getRegionalSecretsOutput = null;
|
|
22
|
+
utilities.lazyLoad(exports, ["getRegionalSecrets", "getRegionalSecretsOutput"], () => require("./getRegionalSecrets"));
|
|
17
23
|
exports.getSecret = null;
|
|
18
24
|
exports.getSecretOutput = null;
|
|
19
25
|
utilities.lazyLoad(exports, ["getSecret", "getSecretOutput"], () => require("./getSecret"));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../secretmanager/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../secretmanager/index.ts"],"names":[],"mappings":"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"}
|