@pulumi/gcp 5.24.0 → 5.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cloudbuild/workerPool.d.ts +6 -6
- package/composer/environment.d.ts +0 -16
- package/composer/environment.js +0 -16
- package/composer/environment.js.map +1 -1
- package/compute/address.d.ts +9 -0
- package/compute/address.js.map +1 -1
- package/compute/backendService.d.ts +15 -9
- package/compute/backendService.js.map +1 -1
- package/compute/firewallPolicyRule.d.ts +3 -3
- package/compute/getInstance.d.ts +1 -1
- package/compute/getInstanceTemplate.d.ts +1 -1
- package/compute/globalForwardingRule.d.ts +120 -0
- package/compute/globalForwardingRule.js +120 -0
- package/compute/globalForwardingRule.js.map +1 -1
- package/compute/instance.d.ts +6 -6
- package/compute/instanceGroup.d.ts +3 -3
- package/compute/instanceGroupManager.d.ts +3 -3
- package/compute/instanceTemplate.d.ts +12 -12
- package/compute/regionBackendService.d.ts +30 -0
- package/compute/regionBackendService.js +30 -0
- package/compute/regionBackendService.js.map +1 -1
- package/compute/router.d.ts +9 -6
- package/compute/router.js.map +1 -1
- package/compute/securityPolicy.d.ts +5 -21
- package/compute/securityPolicy.js +0 -16
- package/compute/securityPolicy.js.map +1 -1
- package/container/cluster.d.ts +48 -68
- package/container/cluster.js +0 -18
- package/container/cluster.js.map +1 -1
- package/container/nodePool.d.ts +11 -11
- package/container/nodePool.js +2 -2
- package/dataflow/job.d.ts +1 -1
- package/dataflow/job.js +1 -1
- package/gkehub/featureMembership.d.ts +3 -3
- package/gkehub/membership.d.ts +1 -1
- package/gkehub/membership.js +1 -1
- package/healthcare/dicomStore.d.ts +9 -9
- package/kms/cryptoKeyIAMBinding.d.ts +3 -3
- package/kms/cryptoKeyIAMMember.d.ts +3 -3
- package/kms/keyRingIAMBinding.d.ts +3 -3
- package/kms/keyRingIAMMember.d.ts +3 -3
- package/notebooks/instance.d.ts +9 -3
- package/notebooks/instance.js.map +1 -1
- package/organizations/policy.d.ts +6 -3
- package/organizations/policy.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +1 -1
- package/pubsub/schema.d.ts +23 -0
- package/pubsub/schema.js +23 -0
- package/pubsub/schema.js.map +1 -1
- package/sql/user.d.ts +1 -1
- package/sql/user.js +1 -1
- package/storage/bucket.d.ts +9 -9
- package/storage/bucketObject.d.ts +3 -3
- package/types/input.d.ts +86 -39
- package/types/output.d.ts +93 -42
- package/vpcaccess/connector.d.ts +9 -3
- package/vpcaccess/connector.js.map +1 -1
|
@@ -153,7 +153,7 @@ export declare class InstanceGroupManager extends pulumi.CustomResource {
|
|
|
153
153
|
*/
|
|
154
154
|
readonly selfLink: pulumi.Output<string>;
|
|
155
155
|
/**
|
|
156
|
-
* Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
|
156
|
+
* ) Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
|
157
157
|
*/
|
|
158
158
|
readonly statefulDisks: pulumi.Output<outputs.compute.InstanceGroupManagerStatefulDisk[] | undefined>;
|
|
159
159
|
/**
|
|
@@ -258,7 +258,7 @@ export interface InstanceGroupManagerState {
|
|
|
258
258
|
*/
|
|
259
259
|
selfLink?: pulumi.Input<string>;
|
|
260
260
|
/**
|
|
261
|
-
* Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
|
261
|
+
* ) Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
|
262
262
|
*/
|
|
263
263
|
statefulDisks?: pulumi.Input<pulumi.Input<inputs.compute.InstanceGroupManagerStatefulDisk>[]>;
|
|
264
264
|
/**
|
|
@@ -342,7 +342,7 @@ export interface InstanceGroupManagerArgs {
|
|
|
342
342
|
*/
|
|
343
343
|
project?: pulumi.Input<string>;
|
|
344
344
|
/**
|
|
345
|
-
* Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
|
345
|
+
* ) Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the [official documentation](https://cloud.google.com/compute/docs/instance-groups/configuring-stateful-disks-in-migs).
|
|
346
346
|
*/
|
|
347
347
|
statefulDisks?: pulumi.Input<pulumi.Input<inputs.compute.InstanceGroupManagerStatefulDisk>[]>;
|
|
348
348
|
/**
|
|
@@ -199,7 +199,7 @@ export declare class InstanceTemplate extends pulumi.CustomResource {
|
|
|
199
199
|
*/
|
|
200
200
|
static isInstance(obj: any): obj is InstanceTemplate;
|
|
201
201
|
/**
|
|
202
|
-
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM.
|
|
202
|
+
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM. Structure is documented below
|
|
203
203
|
*/
|
|
204
204
|
readonly advancedMachineFeatures: pulumi.Output<outputs.compute.InstanceTemplateAdvancedMachineFeatures>;
|
|
205
205
|
/**
|
|
@@ -208,7 +208,7 @@ export declare class InstanceTemplate extends pulumi.CustomResource {
|
|
|
208
208
|
*/
|
|
209
209
|
readonly canIpForward: pulumi.Output<boolean | undefined>;
|
|
210
210
|
/**
|
|
211
|
-
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM.
|
|
211
|
+
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
|
212
212
|
*/
|
|
213
213
|
readonly confidentialInstanceConfig: pulumi.Output<outputs.compute.InstanceTemplateConfidentialInstanceConfig>;
|
|
214
214
|
/**
|
|
@@ -222,8 +222,8 @@ export declare class InstanceTemplate extends pulumi.CustomResource {
|
|
|
222
222
|
*/
|
|
223
223
|
readonly disks: pulumi.Output<outputs.compute.InstanceTemplateDisk[]>;
|
|
224
224
|
/**
|
|
225
|
-
* Enable [Virtual Displays](https://cloud.google.com/compute/docs/instances/enable-instance-virtual-display#verify_display_driver) on this instance.
|
|
226
|
-
* **Note**: `allowStoppingForUpdate` must be set to true in order to update this field.
|
|
225
|
+
* ) Enable [Virtual Displays](https://cloud.google.com/compute/docs/instances/enable-instance-virtual-display#verify_display_driver) on this instance.
|
|
226
|
+
* **Note**: `allowStoppingForUpdate` must be set to true in order to update this field. Note: This attribute is currently in beta and will be removed from the google provider. Please use the google-beta provider to continue using this attribute.
|
|
227
227
|
*/
|
|
228
228
|
readonly enableDisplay: pulumi.Output<boolean | undefined>;
|
|
229
229
|
/**
|
|
@@ -353,7 +353,7 @@ export declare class InstanceTemplate extends pulumi.CustomResource {
|
|
|
353
353
|
*/
|
|
354
354
|
export interface InstanceTemplateState {
|
|
355
355
|
/**
|
|
356
|
-
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM.
|
|
356
|
+
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM. Structure is documented below
|
|
357
357
|
*/
|
|
358
358
|
advancedMachineFeatures?: pulumi.Input<inputs.compute.InstanceTemplateAdvancedMachineFeatures>;
|
|
359
359
|
/**
|
|
@@ -362,7 +362,7 @@ export interface InstanceTemplateState {
|
|
|
362
362
|
*/
|
|
363
363
|
canIpForward?: pulumi.Input<boolean>;
|
|
364
364
|
/**
|
|
365
|
-
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM.
|
|
365
|
+
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
|
366
366
|
*/
|
|
367
367
|
confidentialInstanceConfig?: pulumi.Input<inputs.compute.InstanceTemplateConfidentialInstanceConfig>;
|
|
368
368
|
/**
|
|
@@ -376,8 +376,8 @@ export interface InstanceTemplateState {
|
|
|
376
376
|
*/
|
|
377
377
|
disks?: pulumi.Input<pulumi.Input<inputs.compute.InstanceTemplateDisk>[]>;
|
|
378
378
|
/**
|
|
379
|
-
* Enable [Virtual Displays](https://cloud.google.com/compute/docs/instances/enable-instance-virtual-display#verify_display_driver) on this instance.
|
|
380
|
-
* **Note**: `allowStoppingForUpdate` must be set to true in order to update this field.
|
|
379
|
+
* ) Enable [Virtual Displays](https://cloud.google.com/compute/docs/instances/enable-instance-virtual-display#verify_display_driver) on this instance.
|
|
380
|
+
* **Note**: `allowStoppingForUpdate` must be set to true in order to update this field. Note: This attribute is currently in beta and will be removed from the google provider. Please use the google-beta provider to continue using this attribute.
|
|
381
381
|
*/
|
|
382
382
|
enableDisplay?: pulumi.Input<boolean>;
|
|
383
383
|
/**
|
|
@@ -499,7 +499,7 @@ export interface InstanceTemplateState {
|
|
|
499
499
|
*/
|
|
500
500
|
export interface InstanceTemplateArgs {
|
|
501
501
|
/**
|
|
502
|
-
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM.
|
|
502
|
+
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM. Structure is documented below
|
|
503
503
|
*/
|
|
504
504
|
advancedMachineFeatures?: pulumi.Input<inputs.compute.InstanceTemplateAdvancedMachineFeatures>;
|
|
505
505
|
/**
|
|
@@ -508,7 +508,7 @@ export interface InstanceTemplateArgs {
|
|
|
508
508
|
*/
|
|
509
509
|
canIpForward?: pulumi.Input<boolean>;
|
|
510
510
|
/**
|
|
511
|
-
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM.
|
|
511
|
+
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
|
512
512
|
*/
|
|
513
513
|
confidentialInstanceConfig?: pulumi.Input<inputs.compute.InstanceTemplateConfidentialInstanceConfig>;
|
|
514
514
|
/**
|
|
@@ -522,8 +522,8 @@ export interface InstanceTemplateArgs {
|
|
|
522
522
|
*/
|
|
523
523
|
disks: pulumi.Input<pulumi.Input<inputs.compute.InstanceTemplateDisk>[]>;
|
|
524
524
|
/**
|
|
525
|
-
* Enable [Virtual Displays](https://cloud.google.com/compute/docs/instances/enable-instance-virtual-display#verify_display_driver) on this instance.
|
|
526
|
-
* **Note**: `allowStoppingForUpdate` must be set to true in order to update this field.
|
|
525
|
+
* ) Enable [Virtual Displays](https://cloud.google.com/compute/docs/instances/enable-instance-virtual-display#verify_display_driver) on this instance.
|
|
526
|
+
* **Note**: `allowStoppingForUpdate` must be set to true in order to update this field. Note: This attribute is currently in beta and will be removed from the google provider. Please use the google-beta provider to continue using this attribute.
|
|
527
527
|
*/
|
|
528
528
|
enableDisplay?: pulumi.Input<boolean>;
|
|
529
529
|
/**
|
|
@@ -202,6 +202,36 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
202
202
|
* healthChecks: [defaultRegionHealthCheck.id],
|
|
203
203
|
* });
|
|
204
204
|
* ```
|
|
205
|
+
* ### Region Backend Service Connection Tracking
|
|
206
|
+
*
|
|
207
|
+
* ```typescript
|
|
208
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
209
|
+
* import * as gcp from "@pulumi/gcp";
|
|
210
|
+
*
|
|
211
|
+
* const healthCheck = new gcp.compute.RegionHealthCheck("healthCheck", {
|
|
212
|
+
* region: "us-central1",
|
|
213
|
+
* tcpHealthCheck: {
|
|
214
|
+
* port: 22,
|
|
215
|
+
* },
|
|
216
|
+
* }, {
|
|
217
|
+
* provider: google_beta,
|
|
218
|
+
* });
|
|
219
|
+
* const _default = new gcp.compute.RegionBackendService("default", {
|
|
220
|
+
* region: "us-central1",
|
|
221
|
+
* healthChecks: [healthCheck.id],
|
|
222
|
+
* connectionDrainingTimeoutSec: 10,
|
|
223
|
+
* sessionAffinity: "CLIENT_IP",
|
|
224
|
+
* protocol: "TCP",
|
|
225
|
+
* loadBalancingScheme: "EXTERNAL",
|
|
226
|
+
* connectionTrackingPolicy: [{
|
|
227
|
+
* trackingMode: "PER_SESSION",
|
|
228
|
+
* connectionPersistenceOnUnhealthyBackends: "NEVER_PERSIST",
|
|
229
|
+
* idleTimeoutSec: 60,
|
|
230
|
+
* }],
|
|
231
|
+
* }, {
|
|
232
|
+
* provider: google_beta,
|
|
233
|
+
* });
|
|
234
|
+
* ```
|
|
205
235
|
*
|
|
206
236
|
* ## Import
|
|
207
237
|
*
|
|
@@ -207,6 +207,36 @@ const utilities = require("../utilities");
|
|
|
207
207
|
* healthChecks: [defaultRegionHealthCheck.id],
|
|
208
208
|
* });
|
|
209
209
|
* ```
|
|
210
|
+
* ### Region Backend Service Connection Tracking
|
|
211
|
+
*
|
|
212
|
+
* ```typescript
|
|
213
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
214
|
+
* import * as gcp from "@pulumi/gcp";
|
|
215
|
+
*
|
|
216
|
+
* const healthCheck = new gcp.compute.RegionHealthCheck("healthCheck", {
|
|
217
|
+
* region: "us-central1",
|
|
218
|
+
* tcpHealthCheck: {
|
|
219
|
+
* port: 22,
|
|
220
|
+
* },
|
|
221
|
+
* }, {
|
|
222
|
+
* provider: google_beta,
|
|
223
|
+
* });
|
|
224
|
+
* const _default = new gcp.compute.RegionBackendService("default", {
|
|
225
|
+
* region: "us-central1",
|
|
226
|
+
* healthChecks: [healthCheck.id],
|
|
227
|
+
* connectionDrainingTimeoutSec: 10,
|
|
228
|
+
* sessionAffinity: "CLIENT_IP",
|
|
229
|
+
* protocol: "TCP",
|
|
230
|
+
* loadBalancingScheme: "EXTERNAL",
|
|
231
|
+
* connectionTrackingPolicy: [{
|
|
232
|
+
* trackingMode: "PER_SESSION",
|
|
233
|
+
* connectionPersistenceOnUnhealthyBackends: "NEVER_PERSIST",
|
|
234
|
+
* idleTimeoutSec: 60,
|
|
235
|
+
* }],
|
|
236
|
+
* }, {
|
|
237
|
+
* provider: google_beta,
|
|
238
|
+
* });
|
|
239
|
+
* ```
|
|
210
240
|
*
|
|
211
241
|
* ## Import
|
|
212
242
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"regionBackendService.js","sourceRoot":"","sources":["../../compute/regionBackendService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"regionBackendService.js","sourceRoot":"","sources":["../../compute/regionBackendService.ts"],"names":[],"mappings":"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"}
|
package/compute/router.d.ts
CHANGED
|
@@ -100,8 +100,9 @@ export declare class Router extends pulumi.CustomResource {
|
|
|
100
100
|
*/
|
|
101
101
|
readonly description: pulumi.Output<string | undefined>;
|
|
102
102
|
/**
|
|
103
|
-
* Field to indicate if a router is dedicated to use with encrypted
|
|
104
|
-
* Interconnect
|
|
103
|
+
* Field to indicate if a router is dedicated to use with encrypted
|
|
104
|
+
* Interconnect Attachment (IPsec-encrypted Cloud Interconnect feature).
|
|
105
|
+
* Not currently available publicly.
|
|
105
106
|
*/
|
|
106
107
|
readonly encryptedInterconnectRouter: pulumi.Output<boolean | undefined>;
|
|
107
108
|
/**
|
|
@@ -157,8 +158,9 @@ export interface RouterState {
|
|
|
157
158
|
*/
|
|
158
159
|
description?: pulumi.Input<string>;
|
|
159
160
|
/**
|
|
160
|
-
* Field to indicate if a router is dedicated to use with encrypted
|
|
161
|
-
* Interconnect
|
|
161
|
+
* Field to indicate if a router is dedicated to use with encrypted
|
|
162
|
+
* Interconnect Attachment (IPsec-encrypted Cloud Interconnect feature).
|
|
163
|
+
* Not currently available publicly.
|
|
162
164
|
*/
|
|
163
165
|
encryptedInterconnectRouter?: pulumi.Input<boolean>;
|
|
164
166
|
/**
|
|
@@ -202,8 +204,9 @@ export interface RouterArgs {
|
|
|
202
204
|
*/
|
|
203
205
|
description?: pulumi.Input<string>;
|
|
204
206
|
/**
|
|
205
|
-
* Field to indicate if a router is dedicated to use with encrypted
|
|
206
|
-
* Interconnect
|
|
207
|
+
* Field to indicate if a router is dedicated to use with encrypted
|
|
208
|
+
* Interconnect Attachment (IPsec-encrypted Cloud Interconnect feature).
|
|
209
|
+
* Not currently available publicly.
|
|
207
210
|
*/
|
|
208
211
|
encryptedInterconnectRouter?: pulumi.Input<boolean>;
|
|
209
212
|
/**
|
package/compute/router.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"router.js","sourceRoot":"","sources":["../../compute/router.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAqEG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"router.js","sourceRoot":"","sources":["../../compute/router.ts"],"names":[],"mappings":"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"}
|
|
@@ -38,22 +38,6 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
38
38
|
* ],
|
|
39
39
|
* });
|
|
40
40
|
* ```
|
|
41
|
-
*
|
|
42
|
-
* ## Import
|
|
43
|
-
*
|
|
44
|
-
* Security policies can be imported using any of the following formats
|
|
45
|
-
*
|
|
46
|
-
* ```sh
|
|
47
|
-
* $ pulumi import gcp:compute/securityPolicy:SecurityPolicy policy projects/{{project}}/global/securityPolicies/{{name}}
|
|
48
|
-
* ```
|
|
49
|
-
*
|
|
50
|
-
* ```sh
|
|
51
|
-
* $ pulumi import gcp:compute/securityPolicy:SecurityPolicy policy {{project}}/{{name}}
|
|
52
|
-
* ```
|
|
53
|
-
*
|
|
54
|
-
* ```sh
|
|
55
|
-
* $ pulumi import gcp:compute/securityPolicy:SecurityPolicy policy {{name}}
|
|
56
|
-
* ```
|
|
57
41
|
*/
|
|
58
42
|
export declare class SecurityPolicy extends pulumi.CustomResource {
|
|
59
43
|
/**
|
|
@@ -72,7 +56,7 @@ export declare class SecurityPolicy extends pulumi.CustomResource {
|
|
|
72
56
|
*/
|
|
73
57
|
static isInstance(obj: any): obj is SecurityPolicy;
|
|
74
58
|
/**
|
|
75
|
-
*
|
|
59
|
+
* Configuration for [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview?hl=en). Structure is documented below.
|
|
76
60
|
*/
|
|
77
61
|
readonly adaptiveProtectionConfig: pulumi.Output<outputs.compute.SecurityPolicyAdaptiveProtectionConfig | undefined>;
|
|
78
62
|
/**
|
|
@@ -99,7 +83,7 @@ export declare class SecurityPolicy extends pulumi.CustomResource {
|
|
|
99
83
|
*/
|
|
100
84
|
readonly rules: pulumi.Output<outputs.compute.SecurityPolicyRule[]>;
|
|
101
85
|
/**
|
|
102
|
-
* The URI of the created
|
|
86
|
+
* The URI of the created resourc
|
|
103
87
|
*/
|
|
104
88
|
readonly selfLink: pulumi.Output<string>;
|
|
105
89
|
/**
|
|
@@ -116,7 +100,7 @@ export declare class SecurityPolicy extends pulumi.CustomResource {
|
|
|
116
100
|
*/
|
|
117
101
|
export interface SecurityPolicyState {
|
|
118
102
|
/**
|
|
119
|
-
*
|
|
103
|
+
* Configuration for [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview?hl=en). Structure is documented below.
|
|
120
104
|
*/
|
|
121
105
|
adaptiveProtectionConfig?: pulumi.Input<inputs.compute.SecurityPolicyAdaptiveProtectionConfig>;
|
|
122
106
|
/**
|
|
@@ -143,7 +127,7 @@ export interface SecurityPolicyState {
|
|
|
143
127
|
*/
|
|
144
128
|
rules?: pulumi.Input<pulumi.Input<inputs.compute.SecurityPolicyRule>[]>;
|
|
145
129
|
/**
|
|
146
|
-
* The URI of the created
|
|
130
|
+
* The URI of the created resourc
|
|
147
131
|
*/
|
|
148
132
|
selfLink?: pulumi.Input<string>;
|
|
149
133
|
}
|
|
@@ -152,7 +136,7 @@ export interface SecurityPolicyState {
|
|
|
152
136
|
*/
|
|
153
137
|
export interface SecurityPolicyArgs {
|
|
154
138
|
/**
|
|
155
|
-
*
|
|
139
|
+
* Configuration for [Google Cloud Armor Adaptive Protection](https://cloud.google.com/armor/docs/adaptive-protection-overview?hl=en). Structure is documented below.
|
|
156
140
|
*/
|
|
157
141
|
adaptiveProtectionConfig?: pulumi.Input<inputs.compute.SecurityPolicyAdaptiveProtectionConfig>;
|
|
158
142
|
/**
|
|
@@ -43,22 +43,6 @@ const utilities = require("../utilities");
|
|
|
43
43
|
* ],
|
|
44
44
|
* });
|
|
45
45
|
* ```
|
|
46
|
-
*
|
|
47
|
-
* ## Import
|
|
48
|
-
*
|
|
49
|
-
* Security policies can be imported using any of the following formats
|
|
50
|
-
*
|
|
51
|
-
* ```sh
|
|
52
|
-
* $ pulumi import gcp:compute/securityPolicy:SecurityPolicy policy projects/{{project}}/global/securityPolicies/{{name}}
|
|
53
|
-
* ```
|
|
54
|
-
*
|
|
55
|
-
* ```sh
|
|
56
|
-
* $ pulumi import gcp:compute/securityPolicy:SecurityPolicy policy {{project}}/{{name}}
|
|
57
|
-
* ```
|
|
58
|
-
*
|
|
59
|
-
* ```sh
|
|
60
|
-
* $ pulumi import gcp:compute/securityPolicy:SecurityPolicy policy {{name}}
|
|
61
|
-
* ```
|
|
62
46
|
*/
|
|
63
47
|
class SecurityPolicy extends pulumi.CustomResource {
|
|
64
48
|
constructor(name, argsOrState, opts) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"securityPolicy.js","sourceRoot":"","sources":["../../compute/securityPolicy.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"securityPolicy.js","sourceRoot":"","sources":["../../compute/securityPolicy.ts"],"names":[],"mappings":"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"}
|