@pulumi/gcp 6.60.0 → 6.61.0-alpha.1690301856
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 +43 -2
- package/alloydb/cluster.js +43 -2
- package/alloydb/cluster.js.map +1 -1
- package/alloydb/instance.d.ts +2 -2
- package/alloydb/instance.js +2 -2
- package/apigee/organization.d.ts +69 -0
- package/apigee/organization.js +47 -0
- package/apigee/organization.js.map +1 -1
- package/bigtable/table.d.ts +19 -6
- package/bigtable/table.js +3 -0
- package/bigtable/table.js.map +1 -1
- package/cloudfunctionsv2/function.d.ts +0 -2
- package/cloudfunctionsv2/function.js +0 -2
- package/cloudfunctionsv2/function.js.map +1 -1
- package/compute/disk.d.ts +15 -0
- package/compute/disk.js +2 -0
- package/compute/disk.js.map +1 -1
- package/compute/getDisk.d.ts +1 -0
- package/compute/getDisk.js.map +1 -1
- package/compute/getImage.d.ts +15 -2
- package/compute/getImage.js +1 -0
- package/compute/getImage.js.map +1 -1
- package/compute/getInstance.d.ts +1 -1
- package/compute/resourcePolicy.d.ts +4 -0
- package/compute/resourcePolicy.js +4 -0
- package/compute/resourcePolicy.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/dns/responsePolicy.d.ts +5 -12
- package/dns/responsePolicy.js +5 -12
- package/dns/responsePolicy.js.map +1 -1
- package/dns/responsePolicyRule.d.ts +13 -13
- package/dns/responsePolicyRule.js +7 -10
- package/dns/responsePolicyRule.js.map +1 -1
- package/firestore/database.d.ts +35 -4
- package/firestore/database.js +35 -4
- package/firestore/database.js.map +1 -1
- package/gkebackup/backupPlan.d.ts +16 -0
- package/gkebackup/backupPlan.js +4 -0
- package/gkebackup/backupPlan.js.map +1 -1
- package/healthcare/fhirStore.d.ts +16 -0
- package/healthcare/fhirStore.js +3 -0
- package/healthcare/fhirStore.js.map +1 -1
- package/index.d.ts +2 -1
- package/index.js +4 -2
- package/index.js.map +1 -1
- package/looker/index.d.ts +3 -0
- package/looker/index.js +22 -0
- package/looker/index.js.map +1 -0
- package/looker/instance.d.ts +532 -0
- package/looker/instance.js +259 -0
- package/looker/instance.js.map +1 -0
- package/package.json +2 -2
- package/provider.d.ts +2 -0
- package/provider.js +1 -0
- package/provider.js.map +1 -1
- package/types/input.d.ts +214 -3
- package/types/output.d.ts +222 -3
- package/vpcaccess/connector.d.ts +10 -6
- package/vpcaccess/connector.js +5 -1
- package/vpcaccess/connector.js.map +1 -1
- package/workflows/workflow.d.ts +10 -9
- package/workflows/workflow.js +10 -9
- package/workflows/workflow.js.map +1 -1
package/alloydb/cluster.d.ts
CHANGED
|
@@ -21,13 +21,54 @@ import * as outputs from "../types/output";
|
|
|
21
21
|
* import * as pulumi from "@pulumi/pulumi";
|
|
22
22
|
* import * as gcp from "@pulumi/gcp";
|
|
23
23
|
*
|
|
24
|
-
* const project = gcp.organizations.getProject({});
|
|
25
24
|
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {});
|
|
26
25
|
* const defaultCluster = new gcp.alloydb.Cluster("defaultCluster", {
|
|
27
26
|
* clusterId: "alloydb-cluster",
|
|
28
27
|
* location: "us-central1",
|
|
29
|
-
* network:
|
|
28
|
+
* network: defaultNetwork.id,
|
|
30
29
|
* });
|
|
30
|
+
* const project = gcp.organizations.getProject({});
|
|
31
|
+
* ```
|
|
32
|
+
* ### Alloydb Cluster Full
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as gcp from "@pulumi/gcp";
|
|
37
|
+
*
|
|
38
|
+
* const _default = new gcp.compute.Network("default", {});
|
|
39
|
+
* const full = new gcp.alloydb.Cluster("full", {
|
|
40
|
+
* clusterId: "alloydb-cluster-full",
|
|
41
|
+
* location: "us-central1",
|
|
42
|
+
* network: _default.id,
|
|
43
|
+
* initialUser: {
|
|
44
|
+
* user: "alloydb-cluster-full",
|
|
45
|
+
* password: "alloydb-cluster-full",
|
|
46
|
+
* },
|
|
47
|
+
* automatedBackupPolicy: {
|
|
48
|
+
* location: "us-central1",
|
|
49
|
+
* backupWindow: "1800s",
|
|
50
|
+
* enabled: true,
|
|
51
|
+
* weeklySchedule: {
|
|
52
|
+
* daysOfWeeks: ["MONDAY"],
|
|
53
|
+
* startTimes: [{
|
|
54
|
+
* hours: 23,
|
|
55
|
+
* minutes: 0,
|
|
56
|
+
* seconds: 0,
|
|
57
|
+
* nanos: 0,
|
|
58
|
+
* }],
|
|
59
|
+
* },
|
|
60
|
+
* quantityBasedRetention: {
|
|
61
|
+
* count: 1,
|
|
62
|
+
* },
|
|
63
|
+
* labels: {
|
|
64
|
+
* test: "alloydb-cluster-full",
|
|
65
|
+
* },
|
|
66
|
+
* },
|
|
67
|
+
* labels: {
|
|
68
|
+
* test: "alloydb-cluster-full",
|
|
69
|
+
* },
|
|
70
|
+
* });
|
|
71
|
+
* const project = gcp.organizations.getProject({});
|
|
31
72
|
* ```
|
|
32
73
|
*
|
|
33
74
|
* ## Import
|
package/alloydb/cluster.js
CHANGED
|
@@ -25,13 +25,54 @@ const utilities = require("../utilities");
|
|
|
25
25
|
* import * as pulumi from "@pulumi/pulumi";
|
|
26
26
|
* import * as gcp from "@pulumi/gcp";
|
|
27
27
|
*
|
|
28
|
-
* const project = gcp.organizations.getProject({});
|
|
29
28
|
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {});
|
|
30
29
|
* const defaultCluster = new gcp.alloydb.Cluster("defaultCluster", {
|
|
31
30
|
* clusterId: "alloydb-cluster",
|
|
32
31
|
* location: "us-central1",
|
|
33
|
-
* network:
|
|
32
|
+
* network: defaultNetwork.id,
|
|
34
33
|
* });
|
|
34
|
+
* const project = gcp.organizations.getProject({});
|
|
35
|
+
* ```
|
|
36
|
+
* ### Alloydb Cluster Full
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as gcp from "@pulumi/gcp";
|
|
41
|
+
*
|
|
42
|
+
* const _default = new gcp.compute.Network("default", {});
|
|
43
|
+
* const full = new gcp.alloydb.Cluster("full", {
|
|
44
|
+
* clusterId: "alloydb-cluster-full",
|
|
45
|
+
* location: "us-central1",
|
|
46
|
+
* network: _default.id,
|
|
47
|
+
* initialUser: {
|
|
48
|
+
* user: "alloydb-cluster-full",
|
|
49
|
+
* password: "alloydb-cluster-full",
|
|
50
|
+
* },
|
|
51
|
+
* automatedBackupPolicy: {
|
|
52
|
+
* location: "us-central1",
|
|
53
|
+
* backupWindow: "1800s",
|
|
54
|
+
* enabled: true,
|
|
55
|
+
* weeklySchedule: {
|
|
56
|
+
* daysOfWeeks: ["MONDAY"],
|
|
57
|
+
* startTimes: [{
|
|
58
|
+
* hours: 23,
|
|
59
|
+
* minutes: 0,
|
|
60
|
+
* seconds: 0,
|
|
61
|
+
* nanos: 0,
|
|
62
|
+
* }],
|
|
63
|
+
* },
|
|
64
|
+
* quantityBasedRetention: {
|
|
65
|
+
* count: 1,
|
|
66
|
+
* },
|
|
67
|
+
* labels: {
|
|
68
|
+
* test: "alloydb-cluster-full",
|
|
69
|
+
* },
|
|
70
|
+
* },
|
|
71
|
+
* labels: {
|
|
72
|
+
* test: "alloydb-cluster-full",
|
|
73
|
+
* },
|
|
74
|
+
* });
|
|
75
|
+
* const project = gcp.organizations.getProject({});
|
|
35
76
|
* ```
|
|
36
77
|
*
|
|
37
78
|
* ## Import
|
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,12 +17,11 @@ 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 project = gcp.organizations.getProject({});
|
|
21
20
|
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {});
|
|
22
21
|
* const defaultCluster = new gcp.alloydb.Cluster("defaultCluster", {
|
|
23
22
|
* clusterId: "alloydb-cluster",
|
|
24
23
|
* location: "us-central1",
|
|
25
|
-
* network:
|
|
24
|
+
* network: defaultNetwork.id,
|
|
26
25
|
* initialUser: {
|
|
27
26
|
* password: "alloydb-cluster",
|
|
28
27
|
* },
|
|
@@ -48,6 +47,7 @@ import * as outputs from "../types/output";
|
|
|
48
47
|
* }, {
|
|
49
48
|
* dependsOn: [vpcConnection],
|
|
50
49
|
* });
|
|
50
|
+
* const project = gcp.organizations.getProject({});
|
|
51
51
|
* ```
|
|
52
52
|
*
|
|
53
53
|
* ## Import
|
package/alloydb/instance.js
CHANGED
|
@@ -21,12 +21,11 @@ const utilities = require("../utilities");
|
|
|
21
21
|
* import * as pulumi from "@pulumi/pulumi";
|
|
22
22
|
* import * as gcp from "@pulumi/gcp";
|
|
23
23
|
*
|
|
24
|
-
* const project = gcp.organizations.getProject({});
|
|
25
24
|
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {});
|
|
26
25
|
* const defaultCluster = new gcp.alloydb.Cluster("defaultCluster", {
|
|
27
26
|
* clusterId: "alloydb-cluster",
|
|
28
27
|
* location: "us-central1",
|
|
29
|
-
* network:
|
|
28
|
+
* network: defaultNetwork.id,
|
|
30
29
|
* initialUser: {
|
|
31
30
|
* password: "alloydb-cluster",
|
|
32
31
|
* },
|
|
@@ -52,6 +51,7 @@ const utilities = require("../utilities");
|
|
|
52
51
|
* }, {
|
|
53
52
|
* dependsOn: [vpcConnection],
|
|
54
53
|
* });
|
|
54
|
+
* const project = gcp.organizations.getProject({});
|
|
55
55
|
* ```
|
|
56
56
|
*
|
|
57
57
|
* ## Import
|
package/apigee/organization.d.ts
CHANGED
|
@@ -38,6 +38,20 @@ import * as outputs from "../types/output";
|
|
|
38
38
|
* dependsOn: [apigeeVpcConnection],
|
|
39
39
|
* });
|
|
40
40
|
* ```
|
|
41
|
+
* ### Apigee Organization Cloud Basic Disable Vpc Peering
|
|
42
|
+
*
|
|
43
|
+
* ```typescript
|
|
44
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
45
|
+
* import * as gcp from "@pulumi/gcp";
|
|
46
|
+
*
|
|
47
|
+
* const current = gcp.organizations.getClientConfig({});
|
|
48
|
+
* const org = new gcp.apigee.Organization("org", {
|
|
49
|
+
* description: "Terraform-provisioned basic Apigee Org without VPC Peering.",
|
|
50
|
+
* analyticsRegion: "us-central1",
|
|
51
|
+
* projectId: current.then(current => current.project),
|
|
52
|
+
* disableVpcPeering: true,
|
|
53
|
+
* });
|
|
54
|
+
* ```
|
|
41
55
|
* ### Apigee Organization Cloud Full
|
|
42
56
|
*
|
|
43
57
|
* ```typescript
|
|
@@ -84,6 +98,37 @@ import * as outputs from "../types/output";
|
|
|
84
98
|
* ],
|
|
85
99
|
* });
|
|
86
100
|
* ```
|
|
101
|
+
* ### Apigee Organization Cloud Full Disable Vpc Peering
|
|
102
|
+
*
|
|
103
|
+
* ```typescript
|
|
104
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
105
|
+
* import * as gcp from "@pulumi/gcp";
|
|
106
|
+
*
|
|
107
|
+
* const current = gcp.organizations.getClientConfig({});
|
|
108
|
+
* const apigeeKeyring = new gcp.kms.KeyRing("apigeeKeyring", {location: "us-central1"});
|
|
109
|
+
* const apigeeKey = new gcp.kms.CryptoKey("apigeeKey", {keyRing: apigeeKeyring.id});
|
|
110
|
+
* const apigeeSa = new gcp.projects.ServiceIdentity("apigeeSa", {
|
|
111
|
+
* project: google_project.project.project_id,
|
|
112
|
+
* service: google_project_service.apigee.service,
|
|
113
|
+
* }, {
|
|
114
|
+
* provider: google_beta,
|
|
115
|
+
* });
|
|
116
|
+
* const apigeeSaKeyuser = new gcp.kms.CryptoKeyIAMBinding("apigeeSaKeyuser", {
|
|
117
|
+
* cryptoKeyId: apigeeKey.id,
|
|
118
|
+
* role: "roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
|
119
|
+
* members: [pulumi.interpolate`serviceAccount:${apigeeSa.email}`],
|
|
120
|
+
* });
|
|
121
|
+
* const org = new gcp.apigee.Organization("org", {
|
|
122
|
+
* analyticsRegion: "us-central1",
|
|
123
|
+
* displayName: "apigee-org",
|
|
124
|
+
* description: "Terraform-provisioned Apigee Org without VPC Peering.",
|
|
125
|
+
* projectId: current.then(current => current.project),
|
|
126
|
+
* disableVpcPeering: true,
|
|
127
|
+
* runtimeDatabaseEncryptionKeyName: apigeeKey.id,
|
|
128
|
+
* }, {
|
|
129
|
+
* dependsOn: [apigeeSaKeyuser],
|
|
130
|
+
* });
|
|
131
|
+
* ```
|
|
87
132
|
*
|
|
88
133
|
* ## Import
|
|
89
134
|
*
|
|
@@ -140,6 +185,14 @@ export declare class Organization extends pulumi.CustomResource {
|
|
|
140
185
|
* Description of the Apigee organization.
|
|
141
186
|
*/
|
|
142
187
|
readonly description: pulumi.Output<string | undefined>;
|
|
188
|
+
/**
|
|
189
|
+
* Flag that specifies whether the VPC Peering through Private Google Access should be
|
|
190
|
+
* disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
|
|
191
|
+
* on the consumer project is not provided, in which case the flag should be set to `true`.
|
|
192
|
+
* Valid only when `RuntimeType` is set to CLOUD. The value must be set before the creation
|
|
193
|
+
* of any Apigee runtime instance and can be updated only when there are no runtime instances.
|
|
194
|
+
*/
|
|
195
|
+
readonly disableVpcPeering: pulumi.Output<boolean | undefined>;
|
|
143
196
|
/**
|
|
144
197
|
* The display name of the Apigee organization.
|
|
145
198
|
*/
|
|
@@ -227,6 +280,14 @@ export interface OrganizationState {
|
|
|
227
280
|
* Description of the Apigee organization.
|
|
228
281
|
*/
|
|
229
282
|
description?: pulumi.Input<string>;
|
|
283
|
+
/**
|
|
284
|
+
* Flag that specifies whether the VPC Peering through Private Google Access should be
|
|
285
|
+
* disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
|
|
286
|
+
* on the consumer project is not provided, in which case the flag should be set to `true`.
|
|
287
|
+
* Valid only when `RuntimeType` is set to CLOUD. The value must be set before the creation
|
|
288
|
+
* of any Apigee runtime instance and can be updated only when there are no runtime instances.
|
|
289
|
+
*/
|
|
290
|
+
disableVpcPeering?: pulumi.Input<boolean>;
|
|
230
291
|
/**
|
|
231
292
|
* The display name of the Apigee organization.
|
|
232
293
|
*/
|
|
@@ -297,6 +358,14 @@ export interface OrganizationArgs {
|
|
|
297
358
|
* Description of the Apigee organization.
|
|
298
359
|
*/
|
|
299
360
|
description?: pulumi.Input<string>;
|
|
361
|
+
/**
|
|
362
|
+
* Flag that specifies whether the VPC Peering through Private Google Access should be
|
|
363
|
+
* disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
|
|
364
|
+
* on the consumer project is not provided, in which case the flag should be set to `true`.
|
|
365
|
+
* Valid only when `RuntimeType` is set to CLOUD. The value must be set before the creation
|
|
366
|
+
* of any Apigee runtime instance and can be updated only when there are no runtime instances.
|
|
367
|
+
*/
|
|
368
|
+
disableVpcPeering?: pulumi.Input<boolean>;
|
|
300
369
|
/**
|
|
301
370
|
* The display name of the Apigee organization.
|
|
302
371
|
*/
|
package/apigee/organization.js
CHANGED
|
@@ -42,6 +42,20 @@ const utilities = require("../utilities");
|
|
|
42
42
|
* dependsOn: [apigeeVpcConnection],
|
|
43
43
|
* });
|
|
44
44
|
* ```
|
|
45
|
+
* ### Apigee Organization Cloud Basic Disable Vpc Peering
|
|
46
|
+
*
|
|
47
|
+
* ```typescript
|
|
48
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
49
|
+
* import * as gcp from "@pulumi/gcp";
|
|
50
|
+
*
|
|
51
|
+
* const current = gcp.organizations.getClientConfig({});
|
|
52
|
+
* const org = new gcp.apigee.Organization("org", {
|
|
53
|
+
* description: "Terraform-provisioned basic Apigee Org without VPC Peering.",
|
|
54
|
+
* analyticsRegion: "us-central1",
|
|
55
|
+
* projectId: current.then(current => current.project),
|
|
56
|
+
* disableVpcPeering: true,
|
|
57
|
+
* });
|
|
58
|
+
* ```
|
|
45
59
|
* ### Apigee Organization Cloud Full
|
|
46
60
|
*
|
|
47
61
|
* ```typescript
|
|
@@ -88,6 +102,37 @@ const utilities = require("../utilities");
|
|
|
88
102
|
* ],
|
|
89
103
|
* });
|
|
90
104
|
* ```
|
|
105
|
+
* ### Apigee Organization Cloud Full Disable Vpc Peering
|
|
106
|
+
*
|
|
107
|
+
* ```typescript
|
|
108
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
109
|
+
* import * as gcp from "@pulumi/gcp";
|
|
110
|
+
*
|
|
111
|
+
* const current = gcp.organizations.getClientConfig({});
|
|
112
|
+
* const apigeeKeyring = new gcp.kms.KeyRing("apigeeKeyring", {location: "us-central1"});
|
|
113
|
+
* const apigeeKey = new gcp.kms.CryptoKey("apigeeKey", {keyRing: apigeeKeyring.id});
|
|
114
|
+
* const apigeeSa = new gcp.projects.ServiceIdentity("apigeeSa", {
|
|
115
|
+
* project: google_project.project.project_id,
|
|
116
|
+
* service: google_project_service.apigee.service,
|
|
117
|
+
* }, {
|
|
118
|
+
* provider: google_beta,
|
|
119
|
+
* });
|
|
120
|
+
* const apigeeSaKeyuser = new gcp.kms.CryptoKeyIAMBinding("apigeeSaKeyuser", {
|
|
121
|
+
* cryptoKeyId: apigeeKey.id,
|
|
122
|
+
* role: "roles/cloudkms.cryptoKeyEncrypterDecrypter",
|
|
123
|
+
* members: [pulumi.interpolate`serviceAccount:${apigeeSa.email}`],
|
|
124
|
+
* });
|
|
125
|
+
* const org = new gcp.apigee.Organization("org", {
|
|
126
|
+
* analyticsRegion: "us-central1",
|
|
127
|
+
* displayName: "apigee-org",
|
|
128
|
+
* description: "Terraform-provisioned Apigee Org without VPC Peering.",
|
|
129
|
+
* projectId: current.then(current => current.project),
|
|
130
|
+
* disableVpcPeering: true,
|
|
131
|
+
* runtimeDatabaseEncryptionKeyName: apigeeKey.id,
|
|
132
|
+
* }, {
|
|
133
|
+
* dependsOn: [apigeeSaKeyuser],
|
|
134
|
+
* });
|
|
135
|
+
* ```
|
|
91
136
|
*
|
|
92
137
|
* ## Import
|
|
93
138
|
*
|
|
@@ -135,6 +180,7 @@ class Organization extends pulumi.CustomResource {
|
|
|
135
180
|
resourceInputs["billingType"] = state ? state.billingType : undefined;
|
|
136
181
|
resourceInputs["caCertificate"] = state ? state.caCertificate : undefined;
|
|
137
182
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
183
|
+
resourceInputs["disableVpcPeering"] = state ? state.disableVpcPeering : undefined;
|
|
138
184
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
139
185
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
140
186
|
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
@@ -153,6 +199,7 @@ class Organization extends pulumi.CustomResource {
|
|
|
153
199
|
resourceInputs["authorizedNetwork"] = args ? args.authorizedNetwork : undefined;
|
|
154
200
|
resourceInputs["billingType"] = args ? args.billingType : undefined;
|
|
155
201
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
202
|
+
resourceInputs["disableVpcPeering"] = args ? args.disableVpcPeering : undefined;
|
|
156
203
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
157
204
|
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
158
205
|
resourceInputs["properties"] = args ? args.properties : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organization.js","sourceRoot":"","sources":["../../apigee/organization.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"organization.js","sourceRoot":"","sources":["../../apigee/organization.ts"],"names":[],"mappings":"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"}
|
package/bigtable/table.d.ts
CHANGED
|
@@ -33,6 +33,7 @@ import * as outputs from "../types/output";
|
|
|
33
33
|
* family: "family-second",
|
|
34
34
|
* },
|
|
35
35
|
* ],
|
|
36
|
+
* changeStreamRetention: "24h0m0s",
|
|
36
37
|
* });
|
|
37
38
|
* ```
|
|
38
39
|
*
|
|
@@ -70,14 +71,18 @@ export declare class Table extends pulumi.CustomResource {
|
|
|
70
71
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
71
72
|
*/
|
|
72
73
|
static isInstance(obj: any): obj is Table;
|
|
74
|
+
/**
|
|
75
|
+
* Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
|
76
|
+
*
|
|
77
|
+
* -----
|
|
78
|
+
*/
|
|
79
|
+
readonly changeStreamRetention: pulumi.Output<string>;
|
|
73
80
|
/**
|
|
74
81
|
* A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
|
|
75
82
|
*/
|
|
76
83
|
readonly columnFamilies: pulumi.Output<outputs.bigtable.TableColumnFamily[] | undefined>;
|
|
77
84
|
/**
|
|
78
85
|
* A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
|
|
79
|
-
*
|
|
80
|
-
* -----
|
|
81
86
|
*/
|
|
82
87
|
readonly deletionProtection: pulumi.Output<string>;
|
|
83
88
|
/**
|
|
@@ -112,14 +117,18 @@ export declare class Table extends pulumi.CustomResource {
|
|
|
112
117
|
* Input properties used for looking up and filtering Table resources.
|
|
113
118
|
*/
|
|
114
119
|
export interface TableState {
|
|
120
|
+
/**
|
|
121
|
+
* Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
|
122
|
+
*
|
|
123
|
+
* -----
|
|
124
|
+
*/
|
|
125
|
+
changeStreamRetention?: pulumi.Input<string>;
|
|
115
126
|
/**
|
|
116
127
|
* A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
|
|
117
128
|
*/
|
|
118
129
|
columnFamilies?: pulumi.Input<pulumi.Input<inputs.bigtable.TableColumnFamily>[]>;
|
|
119
130
|
/**
|
|
120
131
|
* A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
|
|
121
|
-
*
|
|
122
|
-
* -----
|
|
123
132
|
*/
|
|
124
133
|
deletionProtection?: pulumi.Input<string>;
|
|
125
134
|
/**
|
|
@@ -146,14 +155,18 @@ export interface TableState {
|
|
|
146
155
|
* The set of arguments for constructing a Table resource.
|
|
147
156
|
*/
|
|
148
157
|
export interface TableArgs {
|
|
158
|
+
/**
|
|
159
|
+
* Duration to retain change stream data for the table. Set to 0 to disable. Must be between 1 and 7 days.
|
|
160
|
+
*
|
|
161
|
+
* -----
|
|
162
|
+
*/
|
|
163
|
+
changeStreamRetention?: pulumi.Input<string>;
|
|
149
164
|
/**
|
|
150
165
|
* A group of columns within a table which share a common configuration. This can be specified multiple times. Structure is documented below.
|
|
151
166
|
*/
|
|
152
167
|
columnFamilies?: pulumi.Input<pulumi.Input<inputs.bigtable.TableColumnFamily>[]>;
|
|
153
168
|
/**
|
|
154
169
|
* A field to make the table protected against data loss i.e. when set to PROTECTED, deleting the table, the column families in the table, and the instance containing the table would be prohibited. If not provided, deletion protection will be set to UNPROTECTED.
|
|
155
|
-
*
|
|
156
|
-
* -----
|
|
157
170
|
*/
|
|
158
171
|
deletionProtection?: pulumi.Input<string>;
|
|
159
172
|
/**
|
package/bigtable/table.js
CHANGED
|
@@ -37,6 +37,7 @@ const utilities = require("../utilities");
|
|
|
37
37
|
* family: "family-second",
|
|
38
38
|
* },
|
|
39
39
|
* ],
|
|
40
|
+
* changeStreamRetention: "24h0m0s",
|
|
40
41
|
* });
|
|
41
42
|
* ```
|
|
42
43
|
*
|
|
@@ -86,6 +87,7 @@ class Table extends pulumi.CustomResource {
|
|
|
86
87
|
opts = opts || {};
|
|
87
88
|
if (opts.id) {
|
|
88
89
|
const state = argsOrState;
|
|
90
|
+
resourceInputs["changeStreamRetention"] = state ? state.changeStreamRetention : undefined;
|
|
89
91
|
resourceInputs["columnFamilies"] = state ? state.columnFamilies : undefined;
|
|
90
92
|
resourceInputs["deletionProtection"] = state ? state.deletionProtection : undefined;
|
|
91
93
|
resourceInputs["instanceName"] = state ? state.instanceName : undefined;
|
|
@@ -98,6 +100,7 @@ class Table extends pulumi.CustomResource {
|
|
|
98
100
|
if ((!args || args.instanceName === undefined) && !opts.urn) {
|
|
99
101
|
throw new Error("Missing required property 'instanceName'");
|
|
100
102
|
}
|
|
103
|
+
resourceInputs["changeStreamRetention"] = args ? args.changeStreamRetention : undefined;
|
|
101
104
|
resourceInputs["columnFamilies"] = args ? args.columnFamilies : undefined;
|
|
102
105
|
resourceInputs["deletionProtection"] = args ? args.deletionProtection : undefined;
|
|
103
106
|
resourceInputs["instanceName"] = args ? args.instanceName : undefined;
|
package/bigtable/table.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.js","sourceRoot":"","sources":["../../bigtable/table.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"table.js","sourceRoot":"","sources":["../../bigtable/table.ts"],"names":[],"mappings":"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"}
|
|
@@ -15,7 +15,6 @@ import * as outputs from "../types/output";
|
|
|
15
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
16
16
|
* import * as gcp from "@pulumi/gcp";
|
|
17
17
|
*
|
|
18
|
-
* // [START functions_v2_basic_gcs]
|
|
19
18
|
* const source_bucket = new gcp.storage.Bucket("source-bucket", {
|
|
20
19
|
* location: "US",
|
|
21
20
|
* uniformBucketLevelAccess: true,
|
|
@@ -114,7 +113,6 @@ import * as outputs from "../types/output";
|
|
|
114
113
|
* import * as pulumi from "@pulumi/pulumi";
|
|
115
114
|
* import * as gcp from "@pulumi/gcp";
|
|
116
115
|
*
|
|
117
|
-
* // [START functions_v2_basic_auditlogs]
|
|
118
116
|
* // This example follows the examples shown in this Google Cloud Community blog post
|
|
119
117
|
* // https://medium.com/google-cloud/applying-a-path-pattern-when-filtering-in-eventarc-f06b937b4c34
|
|
120
118
|
* // and the docs:
|
|
@@ -19,7 +19,6 @@ const utilities = require("../utilities");
|
|
|
19
19
|
* import * as pulumi from "@pulumi/pulumi";
|
|
20
20
|
* import * as gcp from "@pulumi/gcp";
|
|
21
21
|
*
|
|
22
|
-
* // [START functions_v2_basic_gcs]
|
|
23
22
|
* const source_bucket = new gcp.storage.Bucket("source-bucket", {
|
|
24
23
|
* location: "US",
|
|
25
24
|
* uniformBucketLevelAccess: true,
|
|
@@ -118,7 +117,6 @@ const utilities = require("../utilities");
|
|
|
118
117
|
* import * as pulumi from "@pulumi/pulumi";
|
|
119
118
|
* import * as gcp from "@pulumi/gcp";
|
|
120
119
|
*
|
|
121
|
-
* // [START functions_v2_basic_auditlogs]
|
|
122
120
|
* // This example follows the examples shown in this Google Cloud Community blog post
|
|
123
121
|
* // https://medium.com/google-cloud/applying-a-path-pattern-when-filtering-in-eventarc-f06b937b4c34
|
|
124
122
|
* // and the docs:
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"function.js","sourceRoot":"","sources":["../../cloudfunctionsv2/function.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"function.js","sourceRoot":"","sources":["../../cloudfunctionsv2/function.ts"],"names":[],"mappings":"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"}
|
package/compute/disk.d.ts
CHANGED
|
@@ -152,6 +152,11 @@ export declare class Disk extends pulumi.CustomResource {
|
|
|
152
152
|
* Structure is documented below.
|
|
153
153
|
*/
|
|
154
154
|
readonly diskEncryptionKey: pulumi.Output<outputs.compute.DiskDiskEncryptionKey | undefined>;
|
|
155
|
+
/**
|
|
156
|
+
* Whether this disk is using confidential compute mode. Note: Only supported on hyperdisk skus, disk_encryption_key is
|
|
157
|
+
* required when setting to true
|
|
158
|
+
*/
|
|
159
|
+
readonly enableConfidentialCompute: pulumi.Output<boolean>;
|
|
155
160
|
/**
|
|
156
161
|
* A list of features to enable on the guest operating system.
|
|
157
162
|
* Applicable only for bootable disks.
|
|
@@ -376,6 +381,11 @@ export interface DiskState {
|
|
|
376
381
|
* Structure is documented below.
|
|
377
382
|
*/
|
|
378
383
|
diskEncryptionKey?: pulumi.Input<inputs.compute.DiskDiskEncryptionKey>;
|
|
384
|
+
/**
|
|
385
|
+
* Whether this disk is using confidential compute mode. Note: Only supported on hyperdisk skus, disk_encryption_key is
|
|
386
|
+
* required when setting to true
|
|
387
|
+
*/
|
|
388
|
+
enableConfidentialCompute?: pulumi.Input<boolean>;
|
|
379
389
|
/**
|
|
380
390
|
* A list of features to enable on the guest operating system.
|
|
381
391
|
* Applicable only for bootable disks.
|
|
@@ -588,6 +598,11 @@ export interface DiskArgs {
|
|
|
588
598
|
* Structure is documented below.
|
|
589
599
|
*/
|
|
590
600
|
diskEncryptionKey?: pulumi.Input<inputs.compute.DiskDiskEncryptionKey>;
|
|
601
|
+
/**
|
|
602
|
+
* Whether this disk is using confidential compute mode. Note: Only supported on hyperdisk skus, disk_encryption_key is
|
|
603
|
+
* required when setting to true
|
|
604
|
+
*/
|
|
605
|
+
enableConfidentialCompute?: pulumi.Input<boolean>;
|
|
591
606
|
/**
|
|
592
607
|
* A list of features to enable on the guest operating system.
|
|
593
608
|
* Applicable only for bootable disks.
|
package/compute/disk.js
CHANGED
|
@@ -145,6 +145,7 @@ class Disk extends pulumi.CustomResource {
|
|
|
145
145
|
resourceInputs["creationTimestamp"] = state ? state.creationTimestamp : undefined;
|
|
146
146
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
147
147
|
resourceInputs["diskEncryptionKey"] = state ? state.diskEncryptionKey : undefined;
|
|
148
|
+
resourceInputs["enableConfidentialCompute"] = state ? state.enableConfidentialCompute : undefined;
|
|
148
149
|
resourceInputs["guestOsFeatures"] = state ? state.guestOsFeatures : undefined;
|
|
149
150
|
resourceInputs["image"] = state ? state.image : undefined;
|
|
150
151
|
resourceInputs["interface"] = state ? state.interface : undefined;
|
|
@@ -178,6 +179,7 @@ class Disk extends pulumi.CustomResource {
|
|
|
178
179
|
resourceInputs["asyncPrimaryDisk"] = args ? args.asyncPrimaryDisk : undefined;
|
|
179
180
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
180
181
|
resourceInputs["diskEncryptionKey"] = args ? args.diskEncryptionKey : undefined;
|
|
182
|
+
resourceInputs["enableConfidentialCompute"] = args ? args.enableConfidentialCompute : undefined;
|
|
181
183
|
resourceInputs["guestOsFeatures"] = args ? args.guestOsFeatures : undefined;
|
|
182
184
|
resourceInputs["image"] = args ? args.image : undefined;
|
|
183
185
|
resourceInputs["interface"] = args ? args.interface : undefined;
|
package/compute/disk.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"disk.js","sourceRoot":"","sources":["../../compute/disk.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2GG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;
|
|
1
|
+
{"version":3,"file":"disk.js","sourceRoot":"","sources":["../../compute/disk.ts"],"names":[],"mappings":"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"}
|
package/compute/getDisk.d.ts
CHANGED
|
@@ -57,6 +57,7 @@ export interface GetDiskResult {
|
|
|
57
57
|
*/
|
|
58
58
|
readonly description: string;
|
|
59
59
|
readonly diskEncryptionKeys: outputs.compute.GetDiskDiskEncryptionKey[];
|
|
60
|
+
readonly enableConfidentialCompute: boolean;
|
|
60
61
|
readonly guestOsFeatures: outputs.compute.GetDiskGuestOsFeature[];
|
|
61
62
|
/**
|
|
62
63
|
* The provider-assigned unique ID for this managed resource.
|
package/compute/getDisk.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDisk.js","sourceRoot":"","sources":["../../compute/getDisk.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAElE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0BAQC;
|
|
1
|
+
{"version":3,"file":"getDisk.js","sourceRoot":"","sources":["../../compute/getDisk.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAElE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0BAQC;AAkID;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,sCAEC"}
|