@pulumi/gcp 6.62.0 → 6.63.0-alpha.1691443541
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/alloydb/cluster.d.ts +39 -8
- package/alloydb/cluster.js +8 -0
- package/alloydb/cluster.js.map +1 -1
- package/alloydb/instance.d.ts +6 -4
- package/alloydb/instance.js +6 -4
- package/alloydb/instance.js.map +1 -1
- package/appengine/firewallRule.d.ts +1 -0
- package/appengine/firewallRule.js +1 -0
- package/appengine/firewallRule.js.map +1 -1
- package/certificateauthority/certificate.d.ts +0 -101
- package/certificateauthority/certificate.js +0 -101
- package/certificateauthority/certificate.js.map +1 -1
- package/compute/address.d.ts +43 -10
- package/compute/address.js +4 -0
- package/compute/address.js.map +1 -1
- package/compute/globalAddress.d.ts +7 -7
- package/compute/subnetwork.d.ts +12 -9
- package/compute/subnetwork.js.map +1 -1
- package/compute/targetHttpsProxy.d.ts +6 -9
- package/compute/targetHttpsProxy.js.map +1 -1
- package/config/vars.d.ts +1 -0
- package/config/vars.js +6 -0
- package/config/vars.js.map +1 -1
- package/container/cluster.d.ts +18 -0
- package/container/cluster.js +2 -0
- package/container/cluster.js.map +1 -1
- package/container/getCluster.d.ts +1 -0
- package/container/getCluster.js.map +1 -1
- package/datafusion/instance.d.ts +1 -1
- package/datafusion/instance.js +1 -1
- package/essentialcontacts/documentAiWarehouseDocumentSchema.d.ts +451 -0
- package/essentialcontacts/documentAiWarehouseDocumentSchema.js +395 -0
- package/essentialcontacts/documentAiWarehouseDocumentSchema.js.map +1 -0
- package/essentialcontacts/documentAiWarehouseLocation.d.ts +169 -0
- package/essentialcontacts/documentAiWarehouseLocation.js +102 -0
- package/essentialcontacts/documentAiWarehouseLocation.js.map +1 -0
- package/essentialcontacts/index.d.ts +6 -0
- package/essentialcontacts/index.js +11 -1
- package/essentialcontacts/index.js.map +1 -1
- package/identityplatform/config.d.ts +67 -0
- package/identityplatform/config.js +29 -0
- package/identityplatform/config.js.map +1 -1
- package/looker/instance.d.ts +6 -4
- package/looker/instance.js +6 -4
- package/looker/instance.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +2 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/securitycenter/instanceIamBinding.d.ts +1 -1
- package/securitycenter/instanceIamBinding.js +1 -1
- package/securitycenter/instanceIamMember.d.ts +1 -1
- package/securitycenter/instanceIamMember.js +1 -1
- package/securitycenter/instanceIamPolicy.d.ts +1 -1
- package/securitycenter/instanceIamPolicy.js +1 -1
- package/types/input.d.ts +525 -10
- package/types/output.d.ts +569 -11
- package/workstations/workstationConfig.d.ts +49 -0
- package/workstations/workstationConfig.js +49 -0
- package/workstations/workstationConfig.js.map +1 -1
package/alloydb/cluster.d.ts
CHANGED
|
@@ -44,6 +44,10 @@ import * as outputs from "../types/output";
|
|
|
44
44
|
* user: "alloydb-cluster-full",
|
|
45
45
|
* password: "alloydb-cluster-full",
|
|
46
46
|
* },
|
|
47
|
+
* continuousBackupConfig: {
|
|
48
|
+
* enabled: true,
|
|
49
|
+
* recoveryWindowDays: 14,
|
|
50
|
+
* },
|
|
47
51
|
* automatedBackupPolicy: {
|
|
48
52
|
* location: "us-central1",
|
|
49
53
|
* backupWindow: "1800s",
|
|
@@ -108,8 +112,7 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
108
112
|
*/
|
|
109
113
|
static isInstance(obj: any): obj is Cluster;
|
|
110
114
|
/**
|
|
111
|
-
* The automated backup policy for this cluster.
|
|
112
|
-
* If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days.
|
|
115
|
+
* The automated backup policy for this cluster. AutomatedBackupPolicy is disabled by default.
|
|
113
116
|
* Structure is documented below.
|
|
114
117
|
*/
|
|
115
118
|
readonly automatedBackupPolicy: pulumi.Output<outputs.alloydb.ClusterAutomatedBackupPolicy>;
|
|
@@ -122,6 +125,17 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
122
125
|
* The ID of the alloydb cluster.
|
|
123
126
|
*/
|
|
124
127
|
readonly clusterId: pulumi.Output<string>;
|
|
128
|
+
/**
|
|
129
|
+
* The continuous backup config for this cluster.
|
|
130
|
+
* If no policy is provided then the default policy will be used. The default policy takes one backup a day and retains backups for 14 days.
|
|
131
|
+
* Structure is documented below.
|
|
132
|
+
*/
|
|
133
|
+
readonly continuousBackupConfig: pulumi.Output<outputs.alloydb.ClusterContinuousBackupConfig>;
|
|
134
|
+
/**
|
|
135
|
+
* ContinuousBackupInfo describes the continuous backup properties of a cluster.
|
|
136
|
+
* Structure is documented below.
|
|
137
|
+
*/
|
|
138
|
+
readonly continuousBackupInfos: pulumi.Output<outputs.alloydb.ClusterContinuousBackupInfo[]>;
|
|
125
139
|
/**
|
|
126
140
|
* The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.
|
|
127
141
|
*/
|
|
@@ -136,7 +150,8 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
136
150
|
*/
|
|
137
151
|
readonly encryptionConfig: pulumi.Output<outputs.alloydb.ClusterEncryptionConfig | undefined>;
|
|
138
152
|
/**
|
|
139
|
-
*
|
|
153
|
+
* (Output)
|
|
154
|
+
* Output only. The encryption information for the WALs and backups required for ContinuousBackup.
|
|
140
155
|
* Structure is documented below.
|
|
141
156
|
*/
|
|
142
157
|
readonly encryptionInfos: pulumi.Output<outputs.alloydb.ClusterEncryptionInfo[]>;
|
|
@@ -195,8 +210,7 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
195
210
|
*/
|
|
196
211
|
export interface ClusterState {
|
|
197
212
|
/**
|
|
198
|
-
* The automated backup policy for this cluster.
|
|
199
|
-
* If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days.
|
|
213
|
+
* The automated backup policy for this cluster. AutomatedBackupPolicy is disabled by default.
|
|
200
214
|
* Structure is documented below.
|
|
201
215
|
*/
|
|
202
216
|
automatedBackupPolicy?: pulumi.Input<inputs.alloydb.ClusterAutomatedBackupPolicy>;
|
|
@@ -209,6 +223,17 @@ export interface ClusterState {
|
|
|
209
223
|
* The ID of the alloydb cluster.
|
|
210
224
|
*/
|
|
211
225
|
clusterId?: pulumi.Input<string>;
|
|
226
|
+
/**
|
|
227
|
+
* The continuous backup config for this cluster.
|
|
228
|
+
* If no policy is provided then the default policy will be used. The default policy takes one backup a day and retains backups for 14 days.
|
|
229
|
+
* Structure is documented below.
|
|
230
|
+
*/
|
|
231
|
+
continuousBackupConfig?: pulumi.Input<inputs.alloydb.ClusterContinuousBackupConfig>;
|
|
232
|
+
/**
|
|
233
|
+
* ContinuousBackupInfo describes the continuous backup properties of a cluster.
|
|
234
|
+
* Structure is documented below.
|
|
235
|
+
*/
|
|
236
|
+
continuousBackupInfos?: pulumi.Input<pulumi.Input<inputs.alloydb.ClusterContinuousBackupInfo>[]>;
|
|
212
237
|
/**
|
|
213
238
|
* The database engine major version. This is an output-only field and it's populated at the Cluster creation time. This field cannot be changed after cluster creation.
|
|
214
239
|
*/
|
|
@@ -223,7 +248,8 @@ export interface ClusterState {
|
|
|
223
248
|
*/
|
|
224
249
|
encryptionConfig?: pulumi.Input<inputs.alloydb.ClusterEncryptionConfig>;
|
|
225
250
|
/**
|
|
226
|
-
*
|
|
251
|
+
* (Output)
|
|
252
|
+
* Output only. The encryption information for the WALs and backups required for ContinuousBackup.
|
|
227
253
|
* Structure is documented below.
|
|
228
254
|
*/
|
|
229
255
|
encryptionInfos?: pulumi.Input<pulumi.Input<inputs.alloydb.ClusterEncryptionInfo>[]>;
|
|
@@ -274,8 +300,7 @@ export interface ClusterState {
|
|
|
274
300
|
*/
|
|
275
301
|
export interface ClusterArgs {
|
|
276
302
|
/**
|
|
277
|
-
* The automated backup policy for this cluster.
|
|
278
|
-
* If no policy is provided then the default policy will be used. The default policy takes one backup a day, has a backup window of 1 hour, and retains backups for 14 days.
|
|
303
|
+
* The automated backup policy for this cluster. AutomatedBackupPolicy is disabled by default.
|
|
279
304
|
* Structure is documented below.
|
|
280
305
|
*/
|
|
281
306
|
automatedBackupPolicy?: pulumi.Input<inputs.alloydb.ClusterAutomatedBackupPolicy>;
|
|
@@ -283,6 +308,12 @@ export interface ClusterArgs {
|
|
|
283
308
|
* The ID of the alloydb cluster.
|
|
284
309
|
*/
|
|
285
310
|
clusterId: pulumi.Input<string>;
|
|
311
|
+
/**
|
|
312
|
+
* The continuous backup config for this cluster.
|
|
313
|
+
* If no policy is provided then the default policy will be used. The default policy takes one backup a day and retains backups for 14 days.
|
|
314
|
+
* Structure is documented below.
|
|
315
|
+
*/
|
|
316
|
+
continuousBackupConfig?: pulumi.Input<inputs.alloydb.ClusterContinuousBackupConfig>;
|
|
286
317
|
/**
|
|
287
318
|
* User-settable and human-readable display name for the Cluster.
|
|
288
319
|
*/
|
package/alloydb/cluster.js
CHANGED
|
@@ -48,6 +48,10 @@ const utilities = require("../utilities");
|
|
|
48
48
|
* user: "alloydb-cluster-full",
|
|
49
49
|
* password: "alloydb-cluster-full",
|
|
50
50
|
* },
|
|
51
|
+
* continuousBackupConfig: {
|
|
52
|
+
* enabled: true,
|
|
53
|
+
* recoveryWindowDays: 14,
|
|
54
|
+
* },
|
|
51
55
|
* automatedBackupPolicy: {
|
|
52
56
|
* location: "us-central1",
|
|
53
57
|
* backupWindow: "1800s",
|
|
@@ -126,6 +130,8 @@ class Cluster extends pulumi.CustomResource {
|
|
|
126
130
|
resourceInputs["automatedBackupPolicy"] = state ? state.automatedBackupPolicy : undefined;
|
|
127
131
|
resourceInputs["backupSources"] = state ? state.backupSources : undefined;
|
|
128
132
|
resourceInputs["clusterId"] = state ? state.clusterId : undefined;
|
|
133
|
+
resourceInputs["continuousBackupConfig"] = state ? state.continuousBackupConfig : undefined;
|
|
134
|
+
resourceInputs["continuousBackupInfos"] = state ? state.continuousBackupInfos : undefined;
|
|
129
135
|
resourceInputs["databaseVersion"] = state ? state.databaseVersion : undefined;
|
|
130
136
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
131
137
|
resourceInputs["encryptionConfig"] = state ? state.encryptionConfig : undefined;
|
|
@@ -152,6 +158,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
152
158
|
}
|
|
153
159
|
resourceInputs["automatedBackupPolicy"] = args ? args.automatedBackupPolicy : undefined;
|
|
154
160
|
resourceInputs["clusterId"] = args ? args.clusterId : undefined;
|
|
161
|
+
resourceInputs["continuousBackupConfig"] = args ? args.continuousBackupConfig : undefined;
|
|
155
162
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
156
163
|
resourceInputs["encryptionConfig"] = args ? args.encryptionConfig : undefined;
|
|
157
164
|
resourceInputs["initialUser"] = args ? args.initialUser : undefined;
|
|
@@ -160,6 +167,7 @@ class Cluster extends pulumi.CustomResource {
|
|
|
160
167
|
resourceInputs["network"] = args ? args.network : undefined;
|
|
161
168
|
resourceInputs["project"] = args ? args.project : undefined;
|
|
162
169
|
resourceInputs["backupSources"] = undefined /*out*/;
|
|
170
|
+
resourceInputs["continuousBackupInfos"] = undefined /*out*/;
|
|
163
171
|
resourceInputs["databaseVersion"] = undefined /*out*/;
|
|
164
172
|
resourceInputs["encryptionInfos"] = undefined /*out*/;
|
|
165
173
|
resourceInputs["migrationSources"] = undefined /*out*/;
|
package/alloydb/cluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../alloydb/cluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"cluster.js","sourceRoot":"","sources":["../../alloydb/cluster.ts"],"names":[],"mappings":"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"}
|
package/alloydb/instance.d.ts
CHANGED
|
@@ -17,11 +17,13 @@ import * as outputs from "../types/output";
|
|
|
17
17
|
* import * as pulumi from "@pulumi/pulumi";
|
|
18
18
|
* import * as gcp from "@pulumi/gcp";
|
|
19
19
|
*
|
|
20
|
-
* const defaultNetwork =
|
|
20
|
+
* const defaultNetwork = gcp.compute.getNetwork({
|
|
21
|
+
* name: "alloydb-network",
|
|
22
|
+
* });
|
|
21
23
|
* const defaultCluster = new gcp.alloydb.Cluster("defaultCluster", {
|
|
22
24
|
* clusterId: "alloydb-cluster",
|
|
23
25
|
* location: "us-central1",
|
|
24
|
-
* network: defaultNetwork.id,
|
|
26
|
+
* network: defaultNetwork.then(defaultNetwork => defaultNetwork.id),
|
|
25
27
|
* initialUser: {
|
|
26
28
|
* password: "alloydb-cluster",
|
|
27
29
|
* },
|
|
@@ -30,10 +32,10 @@ import * as outputs from "../types/output";
|
|
|
30
32
|
* addressType: "INTERNAL",
|
|
31
33
|
* purpose: "VPC_PEERING",
|
|
32
34
|
* prefixLength: 16,
|
|
33
|
-
* network: defaultNetwork.id,
|
|
35
|
+
* network: defaultNetwork.then(defaultNetwork => defaultNetwork.id),
|
|
34
36
|
* });
|
|
35
37
|
* const vpcConnection = new gcp.servicenetworking.Connection("vpcConnection", {
|
|
36
|
-
* network: defaultNetwork.id,
|
|
38
|
+
* network: defaultNetwork.then(defaultNetwork => defaultNetwork.id),
|
|
37
39
|
* service: "servicenetworking.googleapis.com",
|
|
38
40
|
* reservedPeeringRanges: [privateIpAlloc.name],
|
|
39
41
|
* });
|
package/alloydb/instance.js
CHANGED
|
@@ -21,11 +21,13 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* import * as pulumi from "@pulumi/pulumi";
|
|
22
22
|
* import * as gcp from "@pulumi/gcp";
|
|
23
23
|
*
|
|
24
|
-
* const defaultNetwork =
|
|
24
|
+
* const defaultNetwork = gcp.compute.getNetwork({
|
|
25
|
+
* name: "alloydb-network",
|
|
26
|
+
* });
|
|
25
27
|
* const defaultCluster = new gcp.alloydb.Cluster("defaultCluster", {
|
|
26
28
|
* clusterId: "alloydb-cluster",
|
|
27
29
|
* location: "us-central1",
|
|
28
|
-
* network: defaultNetwork.id,
|
|
30
|
+
* network: defaultNetwork.then(defaultNetwork => defaultNetwork.id),
|
|
29
31
|
* initialUser: {
|
|
30
32
|
* password: "alloydb-cluster",
|
|
31
33
|
* },
|
|
@@ -34,10 +36,10 @@ const utilities = require("../utilities");
|
|
|
34
36
|
* addressType: "INTERNAL",
|
|
35
37
|
* purpose: "VPC_PEERING",
|
|
36
38
|
* prefixLength: 16,
|
|
37
|
-
* network: defaultNetwork.id,
|
|
39
|
+
* network: defaultNetwork.then(defaultNetwork => defaultNetwork.id),
|
|
38
40
|
* });
|
|
39
41
|
* const vpcConnection = new gcp.servicenetworking.Connection("vpcConnection", {
|
|
40
|
-
* network: defaultNetwork.id,
|
|
42
|
+
* network: defaultNetwork.then(defaultNetwork => defaultNetwork.id),
|
|
41
43
|
* service: "servicenetworking.googleapis.com",
|
|
42
44
|
* reservedPeeringRanges: [privateIpAlloc.name],
|
|
43
45
|
* });
|
package/alloydb/instance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../alloydb/instance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../alloydb/instance.ts"],"names":[],"mappings":"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"}
|
|
@@ -19,6 +19,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
19
19
|
* const myProject = new gcp.organizations.Project("myProject", {
|
|
20
20
|
* projectId: "ae-project",
|
|
21
21
|
* orgId: "123456789",
|
|
22
|
+
* billingAccount: "000000-0000000-0000000-000000",
|
|
22
23
|
* });
|
|
23
24
|
* const app = new gcp.appengine.Application("app", {
|
|
24
25
|
* project: myProject.projectId,
|
|
@@ -25,6 +25,7 @@ const utilities = require("../utilities");
|
|
|
25
25
|
* const myProject = new gcp.organizations.Project("myProject", {
|
|
26
26
|
* projectId: "ae-project",
|
|
27
27
|
* orgId: "123456789",
|
|
28
|
+
* billingAccount: "000000-0000000-0000000-000000",
|
|
28
29
|
* });
|
|
29
30
|
* const app = new gcp.appengine.Application("app", {
|
|
30
31
|
* project: myProject.projectId,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"firewallRule.js","sourceRoot":"","sources":["../../appengine/firewallRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"firewallRule.js","sourceRoot":"","sources":["../../appengine/firewallRule.ts"],"names":[],"mappings":"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"}
|
|
@@ -8,107 +8,6 @@ import * as outputs from "../types/output";
|
|
|
8
8
|
* `tier = "ENTERPRISE"`
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
|
-
* ### Privateca Certificate Config
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as fs from "fs";
|
|
16
|
-
* import * as gcp from "@pulumi/gcp";
|
|
17
|
-
*
|
|
18
|
-
* const defaultCaPool = new gcp.certificateauthority.CaPool("defaultCaPool", {
|
|
19
|
-
* location: "us-central1",
|
|
20
|
-
* tier: "ENTERPRISE",
|
|
21
|
-
* });
|
|
22
|
-
* const defaultAuthority = new gcp.certificateauthority.Authority("defaultAuthority", {
|
|
23
|
-
* location: "us-central1",
|
|
24
|
-
* pool: defaultCaPool.name,
|
|
25
|
-
* certificateAuthorityId: "my-authority",
|
|
26
|
-
* config: {
|
|
27
|
-
* subjectConfig: {
|
|
28
|
-
* subject: {
|
|
29
|
-
* organization: "HashiCorp",
|
|
30
|
-
* commonName: "my-certificate-authority",
|
|
31
|
-
* },
|
|
32
|
-
* subjectAltName: {
|
|
33
|
-
* dnsNames: ["hashicorp.com"],
|
|
34
|
-
* },
|
|
35
|
-
* },
|
|
36
|
-
* x509Config: {
|
|
37
|
-
* caOptions: {
|
|
38
|
-
* isCa: true,
|
|
39
|
-
* },
|
|
40
|
-
* keyUsage: {
|
|
41
|
-
* baseKeyUsage: {
|
|
42
|
-
* certSign: true,
|
|
43
|
-
* crlSign: true,
|
|
44
|
-
* },
|
|
45
|
-
* extendedKeyUsage: {
|
|
46
|
-
* serverAuth: true,
|
|
47
|
-
* },
|
|
48
|
-
* },
|
|
49
|
-
* },
|
|
50
|
-
* },
|
|
51
|
-
* keySpec: {
|
|
52
|
-
* algorithm: "RSA_PKCS1_4096_SHA256",
|
|
53
|
-
* },
|
|
54
|
-
* deletionProtection: false,
|
|
55
|
-
* skipGracePeriod: true,
|
|
56
|
-
* ignoreActiveCertificatesOnDeletion: true,
|
|
57
|
-
* });
|
|
58
|
-
* const defaultCertificate = new gcp.certificateauthority.Certificate("defaultCertificate", {
|
|
59
|
-
* location: "us-central1",
|
|
60
|
-
* pool: defaultCaPool.name,
|
|
61
|
-
* certificateAuthority: defaultAuthority.certificateAuthorityId,
|
|
62
|
-
* lifetime: "86000s",
|
|
63
|
-
* config: {
|
|
64
|
-
* subjectConfig: {
|
|
65
|
-
* subject: {
|
|
66
|
-
* commonName: "san1.example.com",
|
|
67
|
-
* countryCode: "us",
|
|
68
|
-
* organization: "google",
|
|
69
|
-
* organizationalUnit: "enterprise",
|
|
70
|
-
* locality: "mountain view",
|
|
71
|
-
* province: "california",
|
|
72
|
-
* streetAddress: "1600 amphitheatre parkway",
|
|
73
|
-
* },
|
|
74
|
-
* subjectAltName: {
|
|
75
|
-
* emailAddresses: ["email@example.com"],
|
|
76
|
-
* ipAddresses: ["127.0.0.1"],
|
|
77
|
-
* uris: ["http://www.ietf.org/rfc/rfc3986.txt"],
|
|
78
|
-
* },
|
|
79
|
-
* },
|
|
80
|
-
* x509Config: {
|
|
81
|
-
* caOptions: {
|
|
82
|
-
* isCa: true,
|
|
83
|
-
* },
|
|
84
|
-
* keyUsage: {
|
|
85
|
-
* baseKeyUsage: {
|
|
86
|
-
* crlSign: false,
|
|
87
|
-
* decipherOnly: false,
|
|
88
|
-
* },
|
|
89
|
-
* extendedKeyUsage: {
|
|
90
|
-
* serverAuth: false,
|
|
91
|
-
* },
|
|
92
|
-
* },
|
|
93
|
-
* nameConstraints: {
|
|
94
|
-
* critical: true,
|
|
95
|
-
* permittedDnsNames: ["*.example.com"],
|
|
96
|
-
* excludedDnsNames: ["*.deny.example.com"],
|
|
97
|
-
* permittedIpRanges: ["10.0.0.0/8"],
|
|
98
|
-
* excludedIpRanges: ["10.1.1.0/24"],
|
|
99
|
-
* permittedEmailAddresses: [".example.com"],
|
|
100
|
-
* excludedEmailAddresses: [".deny.example.com"],
|
|
101
|
-
* permittedUris: [".example.com"],
|
|
102
|
-
* excludedUris: [".deny.example.com"],
|
|
103
|
-
* },
|
|
104
|
-
* },
|
|
105
|
-
* publicKey: {
|
|
106
|
-
* format: "PEM",
|
|
107
|
-
* key: Buffer.from(fs.readFileSync("test-fixtures/rsa_public.pem"), 'binary').toString('base64'),
|
|
108
|
-
* },
|
|
109
|
-
* },
|
|
110
|
-
* });
|
|
111
|
-
* ```
|
|
112
11
|
* ### Privateca Certificate With Template
|
|
113
12
|
*
|
|
114
13
|
* ```typescript
|
|
@@ -12,107 +12,6 @@ const utilities = require("../utilities");
|
|
|
12
12
|
* `tier = "ENTERPRISE"`
|
|
13
13
|
*
|
|
14
14
|
* ## Example Usage
|
|
15
|
-
* ### Privateca Certificate Config
|
|
16
|
-
*
|
|
17
|
-
* ```typescript
|
|
18
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
-
* import * as fs from "fs";
|
|
20
|
-
* import * as gcp from "@pulumi/gcp";
|
|
21
|
-
*
|
|
22
|
-
* const defaultCaPool = new gcp.certificateauthority.CaPool("defaultCaPool", {
|
|
23
|
-
* location: "us-central1",
|
|
24
|
-
* tier: "ENTERPRISE",
|
|
25
|
-
* });
|
|
26
|
-
* const defaultAuthority = new gcp.certificateauthority.Authority("defaultAuthority", {
|
|
27
|
-
* location: "us-central1",
|
|
28
|
-
* pool: defaultCaPool.name,
|
|
29
|
-
* certificateAuthorityId: "my-authority",
|
|
30
|
-
* config: {
|
|
31
|
-
* subjectConfig: {
|
|
32
|
-
* subject: {
|
|
33
|
-
* organization: "HashiCorp",
|
|
34
|
-
* commonName: "my-certificate-authority",
|
|
35
|
-
* },
|
|
36
|
-
* subjectAltName: {
|
|
37
|
-
* dnsNames: ["hashicorp.com"],
|
|
38
|
-
* },
|
|
39
|
-
* },
|
|
40
|
-
* x509Config: {
|
|
41
|
-
* caOptions: {
|
|
42
|
-
* isCa: true,
|
|
43
|
-
* },
|
|
44
|
-
* keyUsage: {
|
|
45
|
-
* baseKeyUsage: {
|
|
46
|
-
* certSign: true,
|
|
47
|
-
* crlSign: true,
|
|
48
|
-
* },
|
|
49
|
-
* extendedKeyUsage: {
|
|
50
|
-
* serverAuth: true,
|
|
51
|
-
* },
|
|
52
|
-
* },
|
|
53
|
-
* },
|
|
54
|
-
* },
|
|
55
|
-
* keySpec: {
|
|
56
|
-
* algorithm: "RSA_PKCS1_4096_SHA256",
|
|
57
|
-
* },
|
|
58
|
-
* deletionProtection: false,
|
|
59
|
-
* skipGracePeriod: true,
|
|
60
|
-
* ignoreActiveCertificatesOnDeletion: true,
|
|
61
|
-
* });
|
|
62
|
-
* const defaultCertificate = new gcp.certificateauthority.Certificate("defaultCertificate", {
|
|
63
|
-
* location: "us-central1",
|
|
64
|
-
* pool: defaultCaPool.name,
|
|
65
|
-
* certificateAuthority: defaultAuthority.certificateAuthorityId,
|
|
66
|
-
* lifetime: "86000s",
|
|
67
|
-
* config: {
|
|
68
|
-
* subjectConfig: {
|
|
69
|
-
* subject: {
|
|
70
|
-
* commonName: "san1.example.com",
|
|
71
|
-
* countryCode: "us",
|
|
72
|
-
* organization: "google",
|
|
73
|
-
* organizationalUnit: "enterprise",
|
|
74
|
-
* locality: "mountain view",
|
|
75
|
-
* province: "california",
|
|
76
|
-
* streetAddress: "1600 amphitheatre parkway",
|
|
77
|
-
* },
|
|
78
|
-
* subjectAltName: {
|
|
79
|
-
* emailAddresses: ["email@example.com"],
|
|
80
|
-
* ipAddresses: ["127.0.0.1"],
|
|
81
|
-
* uris: ["http://www.ietf.org/rfc/rfc3986.txt"],
|
|
82
|
-
* },
|
|
83
|
-
* },
|
|
84
|
-
* x509Config: {
|
|
85
|
-
* caOptions: {
|
|
86
|
-
* isCa: true,
|
|
87
|
-
* },
|
|
88
|
-
* keyUsage: {
|
|
89
|
-
* baseKeyUsage: {
|
|
90
|
-
* crlSign: false,
|
|
91
|
-
* decipherOnly: false,
|
|
92
|
-
* },
|
|
93
|
-
* extendedKeyUsage: {
|
|
94
|
-
* serverAuth: false,
|
|
95
|
-
* },
|
|
96
|
-
* },
|
|
97
|
-
* nameConstraints: {
|
|
98
|
-
* critical: true,
|
|
99
|
-
* permittedDnsNames: ["*.example.com"],
|
|
100
|
-
* excludedDnsNames: ["*.deny.example.com"],
|
|
101
|
-
* permittedIpRanges: ["10.0.0.0/8"],
|
|
102
|
-
* excludedIpRanges: ["10.1.1.0/24"],
|
|
103
|
-
* permittedEmailAddresses: [".example.com"],
|
|
104
|
-
* excludedEmailAddresses: [".deny.example.com"],
|
|
105
|
-
* permittedUris: [".example.com"],
|
|
106
|
-
* excludedUris: [".deny.example.com"],
|
|
107
|
-
* },
|
|
108
|
-
* },
|
|
109
|
-
* publicKey: {
|
|
110
|
-
* format: "PEM",
|
|
111
|
-
* key: Buffer.from(fs.readFileSync("test-fixtures/rsa_public.pem"), 'binary').toString('base64'),
|
|
112
|
-
* },
|
|
113
|
-
* },
|
|
114
|
-
* });
|
|
115
|
-
* ```
|
|
116
15
|
* ### Privateca Certificate With Template
|
|
117
16
|
*
|
|
118
17
|
* ```typescript
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"certificate.js","sourceRoot":"","sources":["../../certificateauthority/certificate.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"certificate.js","sourceRoot":"","sources":["../../certificateauthority/certificate.ts"],"names":[],"mappings":"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"}
|
package/compute/address.d.ts
CHANGED
|
@@ -140,9 +140,8 @@ export declare class Address extends pulumi.CustomResource {
|
|
|
140
140
|
*/
|
|
141
141
|
static isInstance(obj: any): obj is Address;
|
|
142
142
|
/**
|
|
143
|
-
* The static external IP address represented by this resource.
|
|
144
|
-
*
|
|
145
|
-
* address types. The IP address must be inside the specified subnetwork,
|
|
143
|
+
* The static external IP address represented by this resource.
|
|
144
|
+
* The IP address must be inside the specified subnetwork,
|
|
146
145
|
* if any. Set by the API if undefined.
|
|
147
146
|
*/
|
|
148
147
|
readonly address: pulumi.Output<string>;
|
|
@@ -161,6 +160,18 @@ export declare class Address extends pulumi.CustomResource {
|
|
|
161
160
|
* An optional description of this resource.
|
|
162
161
|
*/
|
|
163
162
|
readonly description: pulumi.Output<string | undefined>;
|
|
163
|
+
/**
|
|
164
|
+
* The IP Version that will be used by this address. The default value is `IPV4`.
|
|
165
|
+
* Possible values are: `IPV4`, `IPV6`.
|
|
166
|
+
*/
|
|
167
|
+
readonly ipVersion: pulumi.Output<string | undefined>;
|
|
168
|
+
/**
|
|
169
|
+
* The endpoint type of this address, which should be VM or NETLB. This is
|
|
170
|
+
* used for deciding which type of endpoint this address can be used after
|
|
171
|
+
* the external IPv6 address reservation.
|
|
172
|
+
* Possible values are: `VM`, `NETLB`.
|
|
173
|
+
*/
|
|
174
|
+
readonly ipv6EndpointType: pulumi.Output<string | undefined>;
|
|
164
175
|
/**
|
|
165
176
|
* The fingerprint used for optimistic locking of this resource. Used internally during updates.
|
|
166
177
|
*/
|
|
@@ -199,7 +210,7 @@ export declare class Address extends pulumi.CustomResource {
|
|
|
199
210
|
/**
|
|
200
211
|
* The prefix length if the resource represents an IP range.
|
|
201
212
|
*/
|
|
202
|
-
readonly prefixLength: pulumi.Output<number
|
|
213
|
+
readonly prefixLength: pulumi.Output<number>;
|
|
203
214
|
/**
|
|
204
215
|
* The ID of the project in which the resource belongs.
|
|
205
216
|
* If it is not provided, the provider project is used.
|
|
@@ -256,9 +267,8 @@ export declare class Address extends pulumi.CustomResource {
|
|
|
256
267
|
*/
|
|
257
268
|
export interface AddressState {
|
|
258
269
|
/**
|
|
259
|
-
* The static external IP address represented by this resource.
|
|
260
|
-
*
|
|
261
|
-
* address types. The IP address must be inside the specified subnetwork,
|
|
270
|
+
* The static external IP address represented by this resource.
|
|
271
|
+
* The IP address must be inside the specified subnetwork,
|
|
262
272
|
* if any. Set by the API if undefined.
|
|
263
273
|
*/
|
|
264
274
|
address?: pulumi.Input<string>;
|
|
@@ -277,6 +287,18 @@ export interface AddressState {
|
|
|
277
287
|
* An optional description of this resource.
|
|
278
288
|
*/
|
|
279
289
|
description?: pulumi.Input<string>;
|
|
290
|
+
/**
|
|
291
|
+
* The IP Version that will be used by this address. The default value is `IPV4`.
|
|
292
|
+
* Possible values are: `IPV4`, `IPV6`.
|
|
293
|
+
*/
|
|
294
|
+
ipVersion?: pulumi.Input<string>;
|
|
295
|
+
/**
|
|
296
|
+
* The endpoint type of this address, which should be VM or NETLB. This is
|
|
297
|
+
* used for deciding which type of endpoint this address can be used after
|
|
298
|
+
* the external IPv6 address reservation.
|
|
299
|
+
* Possible values are: `VM`, `NETLB`.
|
|
300
|
+
*/
|
|
301
|
+
ipv6EndpointType?: pulumi.Input<string>;
|
|
280
302
|
/**
|
|
281
303
|
* The fingerprint used for optimistic locking of this resource. Used internally during updates.
|
|
282
304
|
*/
|
|
@@ -364,9 +386,8 @@ export interface AddressState {
|
|
|
364
386
|
*/
|
|
365
387
|
export interface AddressArgs {
|
|
366
388
|
/**
|
|
367
|
-
* The static external IP address represented by this resource.
|
|
368
|
-
*
|
|
369
|
-
* address types. The IP address must be inside the specified subnetwork,
|
|
389
|
+
* The static external IP address represented by this resource.
|
|
390
|
+
* The IP address must be inside the specified subnetwork,
|
|
370
391
|
* if any. Set by the API if undefined.
|
|
371
392
|
*/
|
|
372
393
|
address?: pulumi.Input<string>;
|
|
@@ -381,6 +402,18 @@ export interface AddressArgs {
|
|
|
381
402
|
* An optional description of this resource.
|
|
382
403
|
*/
|
|
383
404
|
description?: pulumi.Input<string>;
|
|
405
|
+
/**
|
|
406
|
+
* The IP Version that will be used by this address. The default value is `IPV4`.
|
|
407
|
+
* Possible values are: `IPV4`, `IPV6`.
|
|
408
|
+
*/
|
|
409
|
+
ipVersion?: pulumi.Input<string>;
|
|
410
|
+
/**
|
|
411
|
+
* The endpoint type of this address, which should be VM or NETLB. This is
|
|
412
|
+
* used for deciding which type of endpoint this address can be used after
|
|
413
|
+
* the external IPv6 address reservation.
|
|
414
|
+
* Possible values are: `VM`, `NETLB`.
|
|
415
|
+
*/
|
|
416
|
+
ipv6EndpointType?: pulumi.Input<string>;
|
|
384
417
|
/**
|
|
385
418
|
* Labels to apply to this address. A list of key->value pairs.
|
|
386
419
|
*/
|
package/compute/address.js
CHANGED
|
@@ -161,6 +161,8 @@ class Address extends pulumi.CustomResource {
|
|
|
161
161
|
resourceInputs["addressType"] = state ? state.addressType : undefined;
|
|
162
162
|
resourceInputs["creationTimestamp"] = state ? state.creationTimestamp : undefined;
|
|
163
163
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
164
|
+
resourceInputs["ipVersion"] = state ? state.ipVersion : undefined;
|
|
165
|
+
resourceInputs["ipv6EndpointType"] = state ? state.ipv6EndpointType : undefined;
|
|
164
166
|
resourceInputs["labelFingerprint"] = state ? state.labelFingerprint : undefined;
|
|
165
167
|
resourceInputs["labels"] = state ? state.labels : undefined;
|
|
166
168
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
@@ -179,6 +181,8 @@ class Address extends pulumi.CustomResource {
|
|
|
179
181
|
resourceInputs["address"] = args ? args.address : undefined;
|
|
180
182
|
resourceInputs["addressType"] = args ? args.addressType : undefined;
|
|
181
183
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
184
|
+
resourceInputs["ipVersion"] = args ? args.ipVersion : undefined;
|
|
185
|
+
resourceInputs["ipv6EndpointType"] = args ? args.ipv6EndpointType : undefined;
|
|
182
186
|
resourceInputs["labels"] = args ? args.labels : undefined;
|
|
183
187
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
184
188
|
resourceInputs["network"] = args ? args.network : undefined;
|