@pulumi/gcp 6.9.0 → 6.10.0-alpha.1643832204
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/assuredworkloads/index.d.ts +1 -0
- package/assuredworkloads/index.js +33 -0
- package/assuredworkloads/index.js.map +1 -0
- package/assuredworkloads/workload.d.ts +228 -0
- package/assuredworkloads/workload.js +139 -0
- package/assuredworkloads/workload.js.map +1 -0
- package/index.d.ts +3 -1
- package/index.js +6 -2
- package/index.js.map +1 -1
- package/notebooks/runtime.d.ts +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/recaptcha/enterpriseKey.d.ts +269 -0
- package/recaptcha/enterpriseKey.js +196 -0
- package/recaptcha/enterpriseKey.js.map +1 -0
- package/recaptcha/index.d.ts +1 -0
- package/recaptcha/index.js +33 -0
- package/recaptcha/index.js.map +1 -0
- package/redis/getInstance.d.ts +2 -0
- package/redis/getInstance.js.map +1 -1
- package/redis/instance.d.ts +49 -2
- package/redis/instance.js +15 -0
- package/redis/instance.js.map +1 -1
- package/types/input.d.ts +200 -2
- package/types/output.d.ts +222 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./workload";
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
7
|
+
}) : (function(o, m, k, k2) {
|
|
8
|
+
if (k2 === undefined) k2 = k;
|
|
9
|
+
o[k2] = m[k];
|
|
10
|
+
}));
|
|
11
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
12
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
13
|
+
};
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
const pulumi = require("@pulumi/pulumi");
|
|
16
|
+
const utilities = require("../utilities");
|
|
17
|
+
// Export members:
|
|
18
|
+
__exportStar(require("./workload"), exports);
|
|
19
|
+
// Import resources to register:
|
|
20
|
+
const workload_1 = require("./workload");
|
|
21
|
+
const _module = {
|
|
22
|
+
version: utilities.getVersion(),
|
|
23
|
+
construct: (name, type, urn) => {
|
|
24
|
+
switch (type) {
|
|
25
|
+
case "gcp:assuredworkloads/workload:Workload":
|
|
26
|
+
return new workload_1.Workload(name, undefined, { urn });
|
|
27
|
+
default:
|
|
28
|
+
throw new Error(`unknown resource type ${type}`);
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
pulumi.runtime.registerResourceModule("gcp", "assuredworkloads/workload", _module);
|
|
33
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../assuredworkloads/index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C,kBAAkB;AAClB,6CAA2B;AAE3B,gCAAgC;AAChC,yCAAsC;AAEtC,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,wCAAwC;gBACzC,OAAO,IAAI,mBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,KAAK,EAAE,2BAA2B,EAAE,OAAO,CAAC,CAAA"}
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* The AssuredWorkloads Workload resource
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
* ### Basic_workload
|
|
8
|
+
* A basic test of a assuredworkloads api
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as gcp from "@pulumi/gcp";
|
|
12
|
+
*
|
|
13
|
+
* const primary = new gcp.assuredworkloads.Workload("primary", {
|
|
14
|
+
* billingAccount: "billingAccounts/000000-0000000-0000000-000000",
|
|
15
|
+
* complianceRegime: "FEDRAMP_MODERATE",
|
|
16
|
+
* displayName: "Workload Example",
|
|
17
|
+
* kmsSettings: {
|
|
18
|
+
* nextRotationTime: "9999-10-02T15:01:23Z",
|
|
19
|
+
* rotationPeriod: "10368000s",
|
|
20
|
+
* },
|
|
21
|
+
* labels: {
|
|
22
|
+
* "label-one": "value-one",
|
|
23
|
+
* },
|
|
24
|
+
* location: "us-west1",
|
|
25
|
+
* organization: "123456789",
|
|
26
|
+
* provisionedResourcesParent: "folders/519620126891",
|
|
27
|
+
* resourceSettings: [
|
|
28
|
+
* {
|
|
29
|
+
* resourceType: "CONSUMER_PROJECT",
|
|
30
|
+
* },
|
|
31
|
+
* {
|
|
32
|
+
* resourceType: "ENCRYPTION_KEYS_PROJECT",
|
|
33
|
+
* },
|
|
34
|
+
* {
|
|
35
|
+
* resourceId: "ring",
|
|
36
|
+
* resourceType: "KEYRING",
|
|
37
|
+
* },
|
|
38
|
+
* ],
|
|
39
|
+
* });
|
|
40
|
+
* ```
|
|
41
|
+
*
|
|
42
|
+
* ## Import
|
|
43
|
+
*
|
|
44
|
+
* Workload can be imported using any of these accepted formats
|
|
45
|
+
*
|
|
46
|
+
* ```sh
|
|
47
|
+
* $ pulumi import gcp:assuredworkloads/workload:Workload default organizations/{{organization}}/locations/{{location}}/workloads/{{name}}
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* ```sh
|
|
51
|
+
* $ pulumi import gcp:assuredworkloads/workload:Workload default {{organization}}/{{location}}/{{name}}
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
export declare class Workload extends pulumi.CustomResource {
|
|
55
|
+
/**
|
|
56
|
+
* Get an existing Workload resource's state with the given name, ID, and optional extra
|
|
57
|
+
* properties used to qualify the lookup.
|
|
58
|
+
*
|
|
59
|
+
* @param name The _unique_ name of the resulting resource.
|
|
60
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
61
|
+
* @param state Any extra arguments used during the lookup.
|
|
62
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
63
|
+
*/
|
|
64
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WorkloadState, opts?: pulumi.CustomResourceOptions): Workload;
|
|
65
|
+
/**
|
|
66
|
+
* Returns true if the given object is an instance of Workload. This is designed to work even
|
|
67
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
68
|
+
*/
|
|
69
|
+
static isInstance(obj: any): obj is Workload;
|
|
70
|
+
/**
|
|
71
|
+
* Required. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, 'billingAccounts/012345-567890-ABCDEF`.
|
|
72
|
+
*/
|
|
73
|
+
readonly billingAccount: pulumi.Output<string>;
|
|
74
|
+
/**
|
|
75
|
+
* Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS
|
|
76
|
+
*/
|
|
77
|
+
readonly complianceRegime: pulumi.Output<string>;
|
|
78
|
+
/**
|
|
79
|
+
* Output only. Immutable. The Workload creation timestamp.
|
|
80
|
+
*/
|
|
81
|
+
readonly createTime: pulumi.Output<string>;
|
|
82
|
+
/**
|
|
83
|
+
* Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
|
|
84
|
+
*/
|
|
85
|
+
readonly displayName: pulumi.Output<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Input only. Settings used to create a CMEK crypto key. When set a project with a KMS CMEK key is provisioned. This field is mandatory for a subset of Compliance Regimes.
|
|
88
|
+
*/
|
|
89
|
+
readonly kmsSettings: pulumi.Output<outputs.assuredworkloads.WorkloadKmsSettings | undefined>;
|
|
90
|
+
/**
|
|
91
|
+
* Optional. Labels applied to the workload.
|
|
92
|
+
*/
|
|
93
|
+
readonly labels: pulumi.Output<{
|
|
94
|
+
[key: string]: string;
|
|
95
|
+
} | undefined>;
|
|
96
|
+
/**
|
|
97
|
+
* The location for the resource
|
|
98
|
+
*/
|
|
99
|
+
readonly location: pulumi.Output<string>;
|
|
100
|
+
/**
|
|
101
|
+
* Output only. The resource name of the workload.
|
|
102
|
+
*/
|
|
103
|
+
readonly name: pulumi.Output<string>;
|
|
104
|
+
/**
|
|
105
|
+
* The organization for the resource
|
|
106
|
+
*/
|
|
107
|
+
readonly organization: pulumi.Output<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Input only. The parent resource for the resources managed by this Assured Workload. May be either an organization or a folder. Must be the same or a child of the Workload parent. If not specified all resources are created under the Workload parent. Formats: folders/{folder_id}, organizations/{organization_id}
|
|
110
|
+
*/
|
|
111
|
+
readonly provisionedResourcesParent: pulumi.Output<string | undefined>;
|
|
112
|
+
/**
|
|
113
|
+
* Input only. Resource properties that are used to customize workload resources. These properties (such as custom project id) will be used to create workload resources if possible. This field is optional.
|
|
114
|
+
*/
|
|
115
|
+
readonly resourceSettings: pulumi.Output<outputs.assuredworkloads.WorkloadResourceSetting[] | undefined>;
|
|
116
|
+
/**
|
|
117
|
+
* Output only. The resources associated with this workload. These resources will be created when creating the workload. If
|
|
118
|
+
* any of the projects already exist, the workload creation will fail. Always read only.
|
|
119
|
+
*/
|
|
120
|
+
readonly resources: pulumi.Output<outputs.assuredworkloads.WorkloadResource[]>;
|
|
121
|
+
/**
|
|
122
|
+
* Create a Workload resource with the given unique name, arguments, and options.
|
|
123
|
+
*
|
|
124
|
+
* @param name The _unique_ name of the resource.
|
|
125
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
126
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
127
|
+
*/
|
|
128
|
+
constructor(name: string, args: WorkloadArgs, opts?: pulumi.CustomResourceOptions);
|
|
129
|
+
}
|
|
130
|
+
/**
|
|
131
|
+
* Input properties used for looking up and filtering Workload resources.
|
|
132
|
+
*/
|
|
133
|
+
export interface WorkloadState {
|
|
134
|
+
/**
|
|
135
|
+
* Required. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, 'billingAccounts/012345-567890-ABCDEF`.
|
|
136
|
+
*/
|
|
137
|
+
billingAccount?: pulumi.Input<string>;
|
|
138
|
+
/**
|
|
139
|
+
* Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS
|
|
140
|
+
*/
|
|
141
|
+
complianceRegime?: pulumi.Input<string>;
|
|
142
|
+
/**
|
|
143
|
+
* Output only. Immutable. The Workload creation timestamp.
|
|
144
|
+
*/
|
|
145
|
+
createTime?: pulumi.Input<string>;
|
|
146
|
+
/**
|
|
147
|
+
* Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
|
|
148
|
+
*/
|
|
149
|
+
displayName?: pulumi.Input<string>;
|
|
150
|
+
/**
|
|
151
|
+
* Input only. Settings used to create a CMEK crypto key. When set a project with a KMS CMEK key is provisioned. This field is mandatory for a subset of Compliance Regimes.
|
|
152
|
+
*/
|
|
153
|
+
kmsSettings?: pulumi.Input<inputs.assuredworkloads.WorkloadKmsSettings>;
|
|
154
|
+
/**
|
|
155
|
+
* Optional. Labels applied to the workload.
|
|
156
|
+
*/
|
|
157
|
+
labels?: pulumi.Input<{
|
|
158
|
+
[key: string]: pulumi.Input<string>;
|
|
159
|
+
}>;
|
|
160
|
+
/**
|
|
161
|
+
* The location for the resource
|
|
162
|
+
*/
|
|
163
|
+
location?: pulumi.Input<string>;
|
|
164
|
+
/**
|
|
165
|
+
* Output only. The resource name of the workload.
|
|
166
|
+
*/
|
|
167
|
+
name?: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* The organization for the resource
|
|
170
|
+
*/
|
|
171
|
+
organization?: pulumi.Input<string>;
|
|
172
|
+
/**
|
|
173
|
+
* Input only. The parent resource for the resources managed by this Assured Workload. May be either an organization or a folder. Must be the same or a child of the Workload parent. If not specified all resources are created under the Workload parent. Formats: folders/{folder_id}, organizations/{organization_id}
|
|
174
|
+
*/
|
|
175
|
+
provisionedResourcesParent?: pulumi.Input<string>;
|
|
176
|
+
/**
|
|
177
|
+
* Input only. Resource properties that are used to customize workload resources. These properties (such as custom project id) will be used to create workload resources if possible. This field is optional.
|
|
178
|
+
*/
|
|
179
|
+
resourceSettings?: pulumi.Input<pulumi.Input<inputs.assuredworkloads.WorkloadResourceSetting>[]>;
|
|
180
|
+
/**
|
|
181
|
+
* Output only. The resources associated with this workload. These resources will be created when creating the workload. If
|
|
182
|
+
* any of the projects already exist, the workload creation will fail. Always read only.
|
|
183
|
+
*/
|
|
184
|
+
resources?: pulumi.Input<pulumi.Input<inputs.assuredworkloads.WorkloadResource>[]>;
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* The set of arguments for constructing a Workload resource.
|
|
188
|
+
*/
|
|
189
|
+
export interface WorkloadArgs {
|
|
190
|
+
/**
|
|
191
|
+
* Required. Input only. The billing account used for the resources which are direct children of workload. This billing account is initially associated with the resources created as part of Workload creation. After the initial creation of these resources, the customer can change the assigned billing account. The resource name has the form `billingAccounts/{billing_account_id}`. For example, 'billingAccounts/012345-567890-ABCDEF`.
|
|
192
|
+
*/
|
|
193
|
+
billingAccount: pulumi.Input<string>;
|
|
194
|
+
/**
|
|
195
|
+
* Required. Immutable. Compliance Regime associated with this workload. Possible values: COMPLIANCE_REGIME_UNSPECIFIED, IL4, CJIS, FEDRAMP_HIGH, FEDRAMP_MODERATE, US_REGIONAL_ACCESS
|
|
196
|
+
*/
|
|
197
|
+
complianceRegime: pulumi.Input<string>;
|
|
198
|
+
/**
|
|
199
|
+
* Required. The user-assigned display name of the Workload. When present it must be between 4 to 30 characters. Allowed characters are: lowercase and uppercase letters, numbers, hyphen, and spaces. Example: My Workload
|
|
200
|
+
*/
|
|
201
|
+
displayName: pulumi.Input<string>;
|
|
202
|
+
/**
|
|
203
|
+
* Input only. Settings used to create a CMEK crypto key. When set a project with a KMS CMEK key is provisioned. This field is mandatory for a subset of Compliance Regimes.
|
|
204
|
+
*/
|
|
205
|
+
kmsSettings?: pulumi.Input<inputs.assuredworkloads.WorkloadKmsSettings>;
|
|
206
|
+
/**
|
|
207
|
+
* Optional. Labels applied to the workload.
|
|
208
|
+
*/
|
|
209
|
+
labels?: pulumi.Input<{
|
|
210
|
+
[key: string]: pulumi.Input<string>;
|
|
211
|
+
}>;
|
|
212
|
+
/**
|
|
213
|
+
* The location for the resource
|
|
214
|
+
*/
|
|
215
|
+
location: pulumi.Input<string>;
|
|
216
|
+
/**
|
|
217
|
+
* The organization for the resource
|
|
218
|
+
*/
|
|
219
|
+
organization: pulumi.Input<string>;
|
|
220
|
+
/**
|
|
221
|
+
* Input only. The parent resource for the resources managed by this Assured Workload. May be either an organization or a folder. Must be the same or a child of the Workload parent. If not specified all resources are created under the Workload parent. Formats: folders/{folder_id}, organizations/{organization_id}
|
|
222
|
+
*/
|
|
223
|
+
provisionedResourcesParent?: pulumi.Input<string>;
|
|
224
|
+
/**
|
|
225
|
+
* Input only. Resource properties that are used to customize workload resources. These properties (such as custom project id) will be used to create workload resources if possible. This field is optional.
|
|
226
|
+
*/
|
|
227
|
+
resourceSettings?: pulumi.Input<pulumi.Input<inputs.assuredworkloads.WorkloadResourceSetting>[]>;
|
|
228
|
+
}
|
|
@@ -0,0 +1,139 @@
|
|
|
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.Workload = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The AssuredWorkloads Workload resource
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
* ### Basic_workload
|
|
13
|
+
* A basic test of a assuredworkloads api
|
|
14
|
+
* ```typescript
|
|
15
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
16
|
+
* import * as gcp from "@pulumi/gcp";
|
|
17
|
+
*
|
|
18
|
+
* const primary = new gcp.assuredworkloads.Workload("primary", {
|
|
19
|
+
* billingAccount: "billingAccounts/000000-0000000-0000000-000000",
|
|
20
|
+
* complianceRegime: "FEDRAMP_MODERATE",
|
|
21
|
+
* displayName: "Workload Example",
|
|
22
|
+
* kmsSettings: {
|
|
23
|
+
* nextRotationTime: "9999-10-02T15:01:23Z",
|
|
24
|
+
* rotationPeriod: "10368000s",
|
|
25
|
+
* },
|
|
26
|
+
* labels: {
|
|
27
|
+
* "label-one": "value-one",
|
|
28
|
+
* },
|
|
29
|
+
* location: "us-west1",
|
|
30
|
+
* organization: "123456789",
|
|
31
|
+
* provisionedResourcesParent: "folders/519620126891",
|
|
32
|
+
* resourceSettings: [
|
|
33
|
+
* {
|
|
34
|
+
* resourceType: "CONSUMER_PROJECT",
|
|
35
|
+
* },
|
|
36
|
+
* {
|
|
37
|
+
* resourceType: "ENCRYPTION_KEYS_PROJECT",
|
|
38
|
+
* },
|
|
39
|
+
* {
|
|
40
|
+
* resourceId: "ring",
|
|
41
|
+
* resourceType: "KEYRING",
|
|
42
|
+
* },
|
|
43
|
+
* ],
|
|
44
|
+
* });
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* ## Import
|
|
48
|
+
*
|
|
49
|
+
* Workload can be imported using any of these accepted formats
|
|
50
|
+
*
|
|
51
|
+
* ```sh
|
|
52
|
+
* $ pulumi import gcp:assuredworkloads/workload:Workload default organizations/{{organization}}/locations/{{location}}/workloads/{{name}}
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* ```sh
|
|
56
|
+
* $ pulumi import gcp:assuredworkloads/workload:Workload default {{organization}}/{{location}}/{{name}}
|
|
57
|
+
* ```
|
|
58
|
+
*/
|
|
59
|
+
class Workload extends pulumi.CustomResource {
|
|
60
|
+
constructor(name, argsOrState, opts) {
|
|
61
|
+
let inputs = {};
|
|
62
|
+
opts = opts || {};
|
|
63
|
+
if (opts.id) {
|
|
64
|
+
const state = argsOrState;
|
|
65
|
+
inputs["billingAccount"] = state ? state.billingAccount : undefined;
|
|
66
|
+
inputs["complianceRegime"] = state ? state.complianceRegime : undefined;
|
|
67
|
+
inputs["createTime"] = state ? state.createTime : undefined;
|
|
68
|
+
inputs["displayName"] = state ? state.displayName : undefined;
|
|
69
|
+
inputs["kmsSettings"] = state ? state.kmsSettings : undefined;
|
|
70
|
+
inputs["labels"] = state ? state.labels : undefined;
|
|
71
|
+
inputs["location"] = state ? state.location : undefined;
|
|
72
|
+
inputs["name"] = state ? state.name : undefined;
|
|
73
|
+
inputs["organization"] = state ? state.organization : undefined;
|
|
74
|
+
inputs["provisionedResourcesParent"] = state ? state.provisionedResourcesParent : undefined;
|
|
75
|
+
inputs["resourceSettings"] = state ? state.resourceSettings : undefined;
|
|
76
|
+
inputs["resources"] = state ? state.resources : undefined;
|
|
77
|
+
}
|
|
78
|
+
else {
|
|
79
|
+
const args = argsOrState;
|
|
80
|
+
if ((!args || args.billingAccount === undefined) && !opts.urn) {
|
|
81
|
+
throw new Error("Missing required property 'billingAccount'");
|
|
82
|
+
}
|
|
83
|
+
if ((!args || args.complianceRegime === undefined) && !opts.urn) {
|
|
84
|
+
throw new Error("Missing required property 'complianceRegime'");
|
|
85
|
+
}
|
|
86
|
+
if ((!args || args.displayName === undefined) && !opts.urn) {
|
|
87
|
+
throw new Error("Missing required property 'displayName'");
|
|
88
|
+
}
|
|
89
|
+
if ((!args || args.location === undefined) && !opts.urn) {
|
|
90
|
+
throw new Error("Missing required property 'location'");
|
|
91
|
+
}
|
|
92
|
+
if ((!args || args.organization === undefined) && !opts.urn) {
|
|
93
|
+
throw new Error("Missing required property 'organization'");
|
|
94
|
+
}
|
|
95
|
+
inputs["billingAccount"] = args ? args.billingAccount : undefined;
|
|
96
|
+
inputs["complianceRegime"] = args ? args.complianceRegime : undefined;
|
|
97
|
+
inputs["displayName"] = args ? args.displayName : undefined;
|
|
98
|
+
inputs["kmsSettings"] = args ? args.kmsSettings : undefined;
|
|
99
|
+
inputs["labels"] = args ? args.labels : undefined;
|
|
100
|
+
inputs["location"] = args ? args.location : undefined;
|
|
101
|
+
inputs["organization"] = args ? args.organization : undefined;
|
|
102
|
+
inputs["provisionedResourcesParent"] = args ? args.provisionedResourcesParent : undefined;
|
|
103
|
+
inputs["resourceSettings"] = args ? args.resourceSettings : undefined;
|
|
104
|
+
inputs["createTime"] = undefined /*out*/;
|
|
105
|
+
inputs["name"] = undefined /*out*/;
|
|
106
|
+
inputs["resources"] = undefined /*out*/;
|
|
107
|
+
}
|
|
108
|
+
if (!opts.version) {
|
|
109
|
+
opts = pulumi.mergeOptions(opts, { version: utilities.getVersion() });
|
|
110
|
+
}
|
|
111
|
+
super(Workload.__pulumiType, name, inputs, opts);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* Get an existing Workload resource's state with the given name, ID, and optional extra
|
|
115
|
+
* properties used to qualify the lookup.
|
|
116
|
+
*
|
|
117
|
+
* @param name The _unique_ name of the resulting resource.
|
|
118
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
119
|
+
* @param state Any extra arguments used during the lookup.
|
|
120
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
121
|
+
*/
|
|
122
|
+
static get(name, id, state, opts) {
|
|
123
|
+
return new Workload(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Returns true if the given object is an instance of Workload. This is designed to work even
|
|
127
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
128
|
+
*/
|
|
129
|
+
static isInstance(obj) {
|
|
130
|
+
if (obj === undefined || obj === null) {
|
|
131
|
+
return false;
|
|
132
|
+
}
|
|
133
|
+
return obj['__pulumiType'] === Workload.__pulumiType;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
exports.Workload = Workload;
|
|
137
|
+
/** @internal */
|
|
138
|
+
Workload.__pulumiType = 'gcp:assuredworkloads/workload:Workload';
|
|
139
|
+
//# sourceMappingURL=workload.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workload.js","sourceRoot":"","sources":["../../assuredworkloads/workload.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import * as apigateway from "./apigateway";
|
|
|
6
6
|
import * as apigee from "./apigee";
|
|
7
7
|
import * as appengine from "./appengine";
|
|
8
8
|
import * as artifactregistry from "./artifactregistry";
|
|
9
|
+
import * as assuredworkloads from "./assuredworkloads";
|
|
9
10
|
import * as bigquery from "./bigquery";
|
|
10
11
|
import * as bigtable from "./bigtable";
|
|
11
12
|
import * as billing from "./billing";
|
|
@@ -61,6 +62,7 @@ import * as osconfig from "./osconfig";
|
|
|
61
62
|
import * as oslogin from "./oslogin";
|
|
62
63
|
import * as projects from "./projects";
|
|
63
64
|
import * as pubsub from "./pubsub";
|
|
65
|
+
import * as recaptcha from "./recaptcha";
|
|
64
66
|
import * as redis from "./redis";
|
|
65
67
|
import * as resourcemanager from "./resourcemanager";
|
|
66
68
|
import * as runtimeconfig from "./runtimeconfig";
|
|
@@ -80,4 +82,4 @@ import * as types from "./types";
|
|
|
80
82
|
import * as vertex from "./vertex";
|
|
81
83
|
import * as vpcaccess from "./vpcaccess";
|
|
82
84
|
import * as workflows from "./workflows";
|
|
83
|
-
export { accesscontextmanager, activedirectory, apigateway, apigee, appengine, artifactregistry, bigquery, bigtable, billing, binaryauthorization, certificateauthority, cloudasset, cloudbuild, cloudfunctions, cloudidentity, cloudrun, cloudscheduler, cloudtasks, composer, compute, config, container, containeranalysis, datacatalog, dataflow, datafusion, dataloss, dataproc, datastore, deploymentmanager, diagflow, dns, endpoints, essentialcontacts, eventarc, filestore, firebase, firestore, folder, gameservices, gkehub, healthcare, iam, iap, identityplatform, iot, kms, logging, memcache, ml, monitoring, networkconnectivity, networkmanagement, networkservices, notebooks, organizations, orgpolicy, osconfig, oslogin, projects, pubsub, redis, resourcemanager, runtimeconfig, secretmanager, securitycenter, serviceaccount, servicedirectory, servicenetworking, serviceusage, sourcerepo, spanner, sql, storage, tags, tpu, types, vertex, vpcaccess, workflows, };
|
|
85
|
+
export { accesscontextmanager, activedirectory, apigateway, apigee, appengine, artifactregistry, assuredworkloads, bigquery, bigtable, billing, binaryauthorization, certificateauthority, cloudasset, cloudbuild, cloudfunctions, cloudidentity, cloudrun, cloudscheduler, cloudtasks, composer, compute, config, container, containeranalysis, datacatalog, dataflow, datafusion, dataloss, dataproc, datastore, deploymentmanager, diagflow, dns, endpoints, essentialcontacts, eventarc, filestore, firebase, firestore, folder, gameservices, gkehub, healthcare, iam, iap, identityplatform, iot, kms, logging, memcache, ml, monitoring, networkconnectivity, networkmanagement, networkservices, notebooks, organizations, orgpolicy, osconfig, oslogin, projects, pubsub, recaptcha, redis, resourcemanager, runtimeconfig, secretmanager, securitycenter, serviceaccount, servicedirectory, servicenetworking, serviceusage, sourcerepo, spanner, sql, storage, tags, tpu, types, vertex, vpcaccess, workflows, };
|
package/index.js
CHANGED
|
@@ -12,8 +12,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
12
12
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
13
13
|
};
|
|
14
14
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
-
exports.
|
|
16
|
-
exports.workflows = exports.vpcaccess = exports.vertex = exports.types = exports.tpu = exports.tags = exports.storage = exports.sql = exports.spanner = exports.sourcerepo = exports.serviceusage = exports.servicenetworking = exports.servicedirectory = exports.serviceaccount = exports.securitycenter = exports.secretmanager = exports.runtimeconfig = exports.resourcemanager = exports.redis = exports.pubsub = exports.projects = exports.oslogin = exports.osconfig = exports.orgpolicy = exports.organizations = exports.notebooks = exports.networkservices = exports.networkmanagement = exports.networkconnectivity = exports.monitoring = void 0;
|
|
15
|
+
exports.memcache = exports.logging = exports.kms = exports.iot = exports.identityplatform = exports.iap = exports.iam = exports.healthcare = exports.gkehub = exports.gameservices = exports.folder = exports.firestore = exports.firebase = exports.filestore = exports.eventarc = exports.essentialcontacts = exports.endpoints = exports.dns = exports.diagflow = exports.deploymentmanager = exports.datastore = exports.dataproc = exports.dataloss = exports.datafusion = exports.dataflow = exports.datacatalog = exports.containeranalysis = exports.container = exports.config = exports.compute = exports.composer = exports.cloudtasks = exports.cloudscheduler = exports.cloudrun = exports.cloudidentity = exports.cloudfunctions = exports.cloudbuild = exports.cloudasset = exports.certificateauthority = exports.binaryauthorization = exports.billing = exports.bigtable = exports.bigquery = exports.assuredworkloads = exports.artifactregistry = exports.appengine = exports.apigee = exports.apigateway = exports.activedirectory = exports.accesscontextmanager = void 0;
|
|
16
|
+
exports.workflows = exports.vpcaccess = exports.vertex = exports.types = exports.tpu = exports.tags = exports.storage = exports.sql = exports.spanner = exports.sourcerepo = exports.serviceusage = exports.servicenetworking = exports.servicedirectory = exports.serviceaccount = exports.securitycenter = exports.secretmanager = exports.runtimeconfig = exports.resourcemanager = exports.redis = exports.recaptcha = exports.pubsub = exports.projects = exports.oslogin = exports.osconfig = exports.orgpolicy = exports.organizations = exports.notebooks = exports.networkservices = exports.networkmanagement = exports.networkconnectivity = exports.monitoring = exports.ml = void 0;
|
|
17
17
|
const pulumi = require("@pulumi/pulumi");
|
|
18
18
|
const utilities = require("./utilities");
|
|
19
19
|
// Export members:
|
|
@@ -32,6 +32,8 @@ const appengine = require("./appengine");
|
|
|
32
32
|
exports.appengine = appengine;
|
|
33
33
|
const artifactregistry = require("./artifactregistry");
|
|
34
34
|
exports.artifactregistry = artifactregistry;
|
|
35
|
+
const assuredworkloads = require("./assuredworkloads");
|
|
36
|
+
exports.assuredworkloads = assuredworkloads;
|
|
35
37
|
const bigquery = require("./bigquery");
|
|
36
38
|
exports.bigquery = bigquery;
|
|
37
39
|
const bigtable = require("./bigtable");
|
|
@@ -142,6 +144,8 @@ const projects = require("./projects");
|
|
|
142
144
|
exports.projects = projects;
|
|
143
145
|
const pubsub = require("./pubsub");
|
|
144
146
|
exports.pubsub = pubsub;
|
|
147
|
+
const recaptcha = require("./recaptcha");
|
|
148
|
+
exports.recaptcha = recaptcha;
|
|
145
149
|
const redis = require("./redis");
|
|
146
150
|
exports.redis = redis;
|
|
147
151
|
const resourcemanager = require("./resourcemanager");
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;;;;;;;;;;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,kBAAkB;AAClB,6CAA2B;AAC3B,0CAAwB;AAExB,sBAAsB;AACtB,+DAA+D;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|
package/notebooks/runtime.d.ts
CHANGED
|
@@ -170,7 +170,7 @@ export declare class Runtime extends pulumi.CustomResource {
|
|
|
170
170
|
* The config settings for software inside the runtime.
|
|
171
171
|
* Structure is documented below.
|
|
172
172
|
*/
|
|
173
|
-
readonly softwareConfig: pulumi.Output<outputs.notebooks.RuntimeSoftwareConfig
|
|
173
|
+
readonly softwareConfig: pulumi.Output<outputs.notebooks.RuntimeSoftwareConfig>;
|
|
174
174
|
/**
|
|
175
175
|
* The state of this runtime.
|
|
176
176
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/gcp",
|
|
3
|
-
"version": "v6.
|
|
3
|
+
"version": "v6.10.0-alpha.1643832204+2d304e64",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Google Cloud Platform resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource gcp v6.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource gcp v6.10.0-alpha.1643832204+2d304e64"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0",
|