@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
|
@@ -50,7 +50,7 @@ export declare class WorkerPool extends pulumi.CustomResource {
|
|
|
50
50
|
*/
|
|
51
51
|
readonly name: pulumi.Output<string>;
|
|
52
52
|
/**
|
|
53
|
-
* Network configuration for the `WorkerPool`.
|
|
53
|
+
* Network configuration for the `WorkerPool`. Structure is documented below.
|
|
54
54
|
*/
|
|
55
55
|
readonly networkConfig: pulumi.Output<outputs.cloudbuild.WorkerPoolNetworkConfig | undefined>;
|
|
56
56
|
/**
|
|
@@ -66,7 +66,7 @@ export declare class WorkerPool extends pulumi.CustomResource {
|
|
|
66
66
|
*/
|
|
67
67
|
readonly updateTime: pulumi.Output<string>;
|
|
68
68
|
/**
|
|
69
|
-
* Configuration to be used for a creating workers in the `WorkerPool`.
|
|
69
|
+
* Configuration to be used for a creating workers in the `WorkerPool`. Structure is documented below.
|
|
70
70
|
*/
|
|
71
71
|
readonly workerConfig: pulumi.Output<outputs.cloudbuild.WorkerPoolWorkerConfig>;
|
|
72
72
|
/**
|
|
@@ -99,7 +99,7 @@ export interface WorkerPoolState {
|
|
|
99
99
|
*/
|
|
100
100
|
name?: pulumi.Input<string>;
|
|
101
101
|
/**
|
|
102
|
-
* Network configuration for the `WorkerPool`.
|
|
102
|
+
* Network configuration for the `WorkerPool`. Structure is documented below.
|
|
103
103
|
*/
|
|
104
104
|
networkConfig?: pulumi.Input<inputs.cloudbuild.WorkerPoolNetworkConfig>;
|
|
105
105
|
/**
|
|
@@ -115,7 +115,7 @@ export interface WorkerPoolState {
|
|
|
115
115
|
*/
|
|
116
116
|
updateTime?: pulumi.Input<string>;
|
|
117
117
|
/**
|
|
118
|
-
* Configuration to be used for a creating workers in the `WorkerPool`.
|
|
118
|
+
* Configuration to be used for a creating workers in the `WorkerPool`. Structure is documented below.
|
|
119
119
|
*/
|
|
120
120
|
workerConfig?: pulumi.Input<inputs.cloudbuild.WorkerPoolWorkerConfig>;
|
|
121
121
|
}
|
|
@@ -132,7 +132,7 @@ export interface WorkerPoolArgs {
|
|
|
132
132
|
*/
|
|
133
133
|
name?: pulumi.Input<string>;
|
|
134
134
|
/**
|
|
135
|
-
* Network configuration for the `WorkerPool`.
|
|
135
|
+
* Network configuration for the `WorkerPool`. Structure is documented below.
|
|
136
136
|
*/
|
|
137
137
|
networkConfig?: pulumi.Input<inputs.cloudbuild.WorkerPoolNetworkConfig>;
|
|
138
138
|
/**
|
|
@@ -140,7 +140,7 @@ export interface WorkerPoolArgs {
|
|
|
140
140
|
*/
|
|
141
141
|
project?: pulumi.Input<string>;
|
|
142
142
|
/**
|
|
143
|
-
* Configuration to be used for a creating workers in the `WorkerPool`.
|
|
143
|
+
* Configuration to be used for a creating workers in the `WorkerPool`. Structure is documented below.
|
|
144
144
|
*/
|
|
145
145
|
workerConfig?: pulumi.Input<inputs.cloudbuild.WorkerPoolWorkerConfig>;
|
|
146
146
|
}
|
|
@@ -95,22 +95,6 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
95
95
|
* region: "us-central1",
|
|
96
96
|
* });
|
|
97
97
|
* ```
|
|
98
|
-
*
|
|
99
|
-
* ## Import
|
|
100
|
-
*
|
|
101
|
-
* Environment can be imported using any of these accepted formats
|
|
102
|
-
*
|
|
103
|
-
* ```sh
|
|
104
|
-
* $ pulumi import gcp:composer/environment:Environment default projects/{{project}}/locations/{{region}}/environments/{{name}}
|
|
105
|
-
* ```
|
|
106
|
-
*
|
|
107
|
-
* ```sh
|
|
108
|
-
* $ pulumi import gcp:composer/environment:Environment default {{project}}/{{region}}/{{name}}
|
|
109
|
-
* ```
|
|
110
|
-
*
|
|
111
|
-
* ```sh
|
|
112
|
-
* $ pulumi import gcp:composer/environment:Environment default {{name}}
|
|
113
|
-
* ```
|
|
114
98
|
*/
|
|
115
99
|
export declare class Environment extends pulumi.CustomResource {
|
|
116
100
|
/**
|
package/composer/environment.js
CHANGED
|
@@ -100,22 +100,6 @@ const utilities = require("../utilities");
|
|
|
100
100
|
* region: "us-central1",
|
|
101
101
|
* });
|
|
102
102
|
* ```
|
|
103
|
-
*
|
|
104
|
-
* ## Import
|
|
105
|
-
*
|
|
106
|
-
* Environment can be imported using any of these accepted formats
|
|
107
|
-
*
|
|
108
|
-
* ```sh
|
|
109
|
-
* $ pulumi import gcp:composer/environment:Environment default projects/{{project}}/locations/{{region}}/environments/{{name}}
|
|
110
|
-
* ```
|
|
111
|
-
*
|
|
112
|
-
* ```sh
|
|
113
|
-
* $ pulumi import gcp:composer/environment:Environment default {{project}}/{{region}}/{{name}}
|
|
114
|
-
* ```
|
|
115
|
-
*
|
|
116
|
-
* ```sh
|
|
117
|
-
* $ pulumi import gcp:composer/environment:Environment default {{name}}
|
|
118
|
-
* ```
|
|
119
103
|
*/
|
|
120
104
|
class Environment extends pulumi.CustomResource {
|
|
121
105
|
constructor(name, argsOrState, opts) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../composer/environment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../../composer/environment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+FG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAkElD,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SACvD;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9C,MAAM,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SACrD;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IACxD,CAAC;IAvFD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;;AA1BL,kCAyFC;AA3EG,gBAAgB;AACO,wBAAY,GAAG,sCAAsC,CAAC"}
|
package/compute/address.d.ts
CHANGED
|
@@ -210,6 +210,9 @@ export declare class Address extends pulumi.CustomResource {
|
|
|
210
210
|
* * IPSEC_INTERCONNECT for addresses created from a private IP range
|
|
211
211
|
* that are reserved for a VLAN attachment in an IPsec-encrypted Cloud
|
|
212
212
|
* Interconnect configuration. These addresses are regional resources.
|
|
213
|
+
* * PRIVATE_SERVICE_CONNECT for a private network address that is used
|
|
214
|
+
* to configure Private Service Connect. Only global internal addresses
|
|
215
|
+
* can use this purpose.
|
|
213
216
|
* This should only be set when using an Internal address.
|
|
214
217
|
*/
|
|
215
218
|
readonly purpose: pulumi.Output<string>;
|
|
@@ -317,6 +320,9 @@ export interface AddressState {
|
|
|
317
320
|
* * IPSEC_INTERCONNECT for addresses created from a private IP range
|
|
318
321
|
* that are reserved for a VLAN attachment in an IPsec-encrypted Cloud
|
|
319
322
|
* Interconnect configuration. These addresses are regional resources.
|
|
323
|
+
* * PRIVATE_SERVICE_CONNECT for a private network address that is used
|
|
324
|
+
* to configure Private Service Connect. Only global internal addresses
|
|
325
|
+
* can use this purpose.
|
|
320
326
|
* This should only be set when using an Internal address.
|
|
321
327
|
*/
|
|
322
328
|
purpose?: pulumi.Input<string>;
|
|
@@ -408,6 +414,9 @@ export interface AddressArgs {
|
|
|
408
414
|
* * IPSEC_INTERCONNECT for addresses created from a private IP range
|
|
409
415
|
* that are reserved for a VLAN attachment in an IPsec-encrypted Cloud
|
|
410
416
|
* Interconnect configuration. These addresses are regional resources.
|
|
417
|
+
* * PRIVATE_SERVICE_CONNECT for a private network address that is used
|
|
418
|
+
* to configure Private Service Connect. Only global internal addresses
|
|
419
|
+
* can use this purpose.
|
|
411
420
|
* This should only be set when using an Internal address.
|
|
412
421
|
*/
|
|
413
422
|
purpose?: pulumi.Input<string>;
|
package/compute/address.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"address.js","sourceRoot":"","sources":["../../compute/address.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2HG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"address.js","sourceRoot":"","sources":["../../compute/address.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2HG;AACH,MAAa,OAAQ,SAAQ,MAAM,CAAC,cAAc;IAoI9C,YAAY,IAAY,EAAE,WAAwC,EAAE,IAAmC;QACnG,IAAI,MAAM,GAAkB,EAAE,CAAC;QAC/B,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAuC,CAAC;YACtD,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,MAAM,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAChD,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,MAAM,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,MAAM,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SACrD;aAAM;YACH,MAAM,IAAI,GAAG,WAAsC,CAAC;YACpD,MAAM,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9C,MAAM,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,MAAM,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,MAAM,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YACpD,MAAM,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAClD,MAAM,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,MAAM,CAAC,mBAAmB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,MAAM,CAAC,kBAAkB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,MAAM,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACvC,MAAM,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACvC;QACD,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE;YACf,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,EAAE,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE,EAAC,CAAC,CAAC;SACxE;QACD,KAAK,CAAC,OAAO,CAAC,YAAY,EAAE,IAAI,EAAE,MAAM,EAAE,IAAI,CAAC,CAAC;IACpD,CAAC;IA/KD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAoB,EAAE,IAAmC;QAClH,OAAO,IAAI,OAAO,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC9D,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,OAAO,CAAC,YAAY,CAAC;IACxD,CAAC;;AA1BL,0BAiLC;AAnKG,gBAAgB;AACO,oBAAY,GAAG,6BAA6B,CAAC"}
|
|
@@ -346,9 +346,11 @@ export declare class BackendService extends pulumi.CustomResource {
|
|
|
346
346
|
*/
|
|
347
347
|
readonly securityPolicy: pulumi.Output<string | undefined>;
|
|
348
348
|
/**
|
|
349
|
-
* The security settings that apply to this backend service. This field is applicable to either
|
|
350
|
-
* with the
|
|
351
|
-
* backend service with the
|
|
349
|
+
* The security settings that apply to this backend service. This field is applicable to either
|
|
350
|
+
* a regional backend service with the serviceProtocol set to HTTP, HTTPS, or HTTP2, and
|
|
351
|
+
* loadBalancingScheme set to INTERNAL_MANAGED; or a global backend service with the
|
|
352
|
+
* loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
|
353
|
+
* Structure is documented below.
|
|
352
354
|
*/
|
|
353
355
|
readonly securitySettings: pulumi.Output<outputs.compute.BackendServiceSecuritySettings | undefined>;
|
|
354
356
|
/**
|
|
@@ -535,9 +537,11 @@ export interface BackendServiceState {
|
|
|
535
537
|
*/
|
|
536
538
|
securityPolicy?: pulumi.Input<string>;
|
|
537
539
|
/**
|
|
538
|
-
* The security settings that apply to this backend service. This field is applicable to either
|
|
539
|
-
* with the
|
|
540
|
-
* backend service with the
|
|
540
|
+
* The security settings that apply to this backend service. This field is applicable to either
|
|
541
|
+
* a regional backend service with the serviceProtocol set to HTTP, HTTPS, or HTTP2, and
|
|
542
|
+
* loadBalancingScheme set to INTERNAL_MANAGED; or a global backend service with the
|
|
543
|
+
* loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
|
544
|
+
* Structure is documented below.
|
|
541
545
|
*/
|
|
542
546
|
securitySettings?: pulumi.Input<inputs.compute.BackendServiceSecuritySettings>;
|
|
543
547
|
/**
|
|
@@ -708,9 +712,11 @@ export interface BackendServiceArgs {
|
|
|
708
712
|
*/
|
|
709
713
|
securityPolicy?: pulumi.Input<string>;
|
|
710
714
|
/**
|
|
711
|
-
* The security settings that apply to this backend service. This field is applicable to either
|
|
712
|
-
* with the
|
|
713
|
-
* backend service with the
|
|
715
|
+
* The security settings that apply to this backend service. This field is applicable to either
|
|
716
|
+
* a regional backend service with the serviceProtocol set to HTTP, HTTPS, or HTTP2, and
|
|
717
|
+
* loadBalancingScheme set to INTERNAL_MANAGED; or a global backend service with the
|
|
718
|
+
* loadBalancingScheme set to INTERNAL_SELF_MANAGED.
|
|
719
|
+
* Structure is documented below.
|
|
714
720
|
*/
|
|
715
721
|
securitySettings?: pulumi.Input<inputs.compute.BackendServiceSecuritySettings>;
|
|
716
722
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backendService.js","sourceRoot":"","sources":["../../compute/backendService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6KG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"backendService.js","sourceRoot":"","sources":["../../compute/backendService.ts"],"names":[],"mappings":"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"}
|
|
@@ -94,7 +94,7 @@ export declare class FirewallPolicyRule extends pulumi.CustomResource {
|
|
|
94
94
|
*/
|
|
95
95
|
readonly kind: pulumi.Output<string>;
|
|
96
96
|
/**
|
|
97
|
-
* A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
|
97
|
+
* A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced. Structure is documented below.
|
|
98
98
|
*/
|
|
99
99
|
readonly match: pulumi.Output<outputs.compute.FirewallPolicyRuleMatch>;
|
|
100
100
|
/**
|
|
@@ -155,7 +155,7 @@ export interface FirewallPolicyRuleState {
|
|
|
155
155
|
*/
|
|
156
156
|
kind?: pulumi.Input<string>;
|
|
157
157
|
/**
|
|
158
|
-
* A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
|
158
|
+
* A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced. Structure is documented below.
|
|
159
159
|
*/
|
|
160
160
|
match?: pulumi.Input<inputs.compute.FirewallPolicyRuleMatch>;
|
|
161
161
|
/**
|
|
@@ -204,7 +204,7 @@ export interface FirewallPolicyRuleArgs {
|
|
|
204
204
|
*/
|
|
205
205
|
firewallPolicy: pulumi.Input<string>;
|
|
206
206
|
/**
|
|
207
|
-
* A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
|
|
207
|
+
* A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced. Structure is documented below.
|
|
208
208
|
*/
|
|
209
209
|
match: pulumi.Input<inputs.compute.FirewallPolicyRuleMatch>;
|
|
210
210
|
/**
|
package/compute/getInstance.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ export interface GetInstanceResult {
|
|
|
133
133
|
readonly reservationAffinities: outputs.compute.GetInstanceReservationAffinity[];
|
|
134
134
|
readonly resourcePolicies: string[];
|
|
135
135
|
/**
|
|
136
|
-
* The scheduling strategy being used by the instance.
|
|
136
|
+
* The scheduling strategy being used by the instance. Structure is documented below
|
|
137
137
|
*/
|
|
138
138
|
readonly schedulings: outputs.compute.GetInstanceScheduling[];
|
|
139
139
|
/**
|
|
@@ -59,7 +59,7 @@ export interface GetInstanceTemplateResult {
|
|
|
59
59
|
*/
|
|
60
60
|
readonly canIpForward: boolean;
|
|
61
61
|
/**
|
|
62
|
-
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM.
|
|
62
|
+
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
|
63
63
|
*/
|
|
64
64
|
readonly confidentialInstanceConfigs: outputs.compute.GetInstanceTemplateConfidentialInstanceConfig[];
|
|
65
65
|
/**
|
|
@@ -10,6 +10,126 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
10
10
|
* https://cloud.google.com/compute/docs/load-balancing/http/
|
|
11
11
|
*
|
|
12
12
|
* ## Example Usage
|
|
13
|
+
* ### External Tcp Proxy Lb Mig Backend Custom Header
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as gcp from "@pulumi/gcp";
|
|
18
|
+
*
|
|
19
|
+
* // External TCP proxy load balancer with managed instance group backend
|
|
20
|
+
* // VPC
|
|
21
|
+
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {autoCreateSubnetworks: false}, {
|
|
22
|
+
* provider: google,
|
|
23
|
+
* });
|
|
24
|
+
* // backend subnet
|
|
25
|
+
* const defaultSubnetwork = new gcp.compute.Subnetwork("defaultSubnetwork", {
|
|
26
|
+
* ipCidrRange: "10.0.1.0/24",
|
|
27
|
+
* region: "us-central1",
|
|
28
|
+
* network: defaultNetwork.id,
|
|
29
|
+
* }, {
|
|
30
|
+
* provider: google,
|
|
31
|
+
* });
|
|
32
|
+
* // reserved IP address
|
|
33
|
+
* const defaultGlobalAddress = new gcp.compute.GlobalAddress("defaultGlobalAddress", {});
|
|
34
|
+
* const defaultHealthCheck = new gcp.compute.HealthCheck("defaultHealthCheck", {
|
|
35
|
+
* timeoutSec: 1,
|
|
36
|
+
* checkIntervalSec: 1,
|
|
37
|
+
* tcpHealthCheck: {
|
|
38
|
+
* port: "80",
|
|
39
|
+
* },
|
|
40
|
+
* });
|
|
41
|
+
* // instance template
|
|
42
|
+
* const defaultInstanceTemplate = new gcp.compute.InstanceTemplate("defaultInstanceTemplate", {
|
|
43
|
+
* machineType: "e2-small",
|
|
44
|
+
* tags: ["allow-health-check"],
|
|
45
|
+
* networkInterfaces: [{
|
|
46
|
+
* network: defaultNetwork.id,
|
|
47
|
+
* subnetwork: defaultSubnetwork.id,
|
|
48
|
+
* accessConfigs: [{}],
|
|
49
|
+
* }],
|
|
50
|
+
* disks: [{
|
|
51
|
+
* sourceImage: "debian-cloud/debian-10",
|
|
52
|
+
* autoDelete: true,
|
|
53
|
+
* boot: true,
|
|
54
|
+
* }],
|
|
55
|
+
* metadata: {
|
|
56
|
+
* "startup-script": `#! /bin/bash
|
|
57
|
+
* set -euo pipefail
|
|
58
|
+
* export DEBIAN_FRONTEND=noninteractive
|
|
59
|
+
* apt-get update
|
|
60
|
+
* apt-get install -y nginx-light jq
|
|
61
|
+
* NAME=$(curl -H "Metadata-Flavor: Google" "http://metadata.google.internal/computeMetadata/v1/instance/hostname")
|
|
62
|
+
* IP=$(curl -H "Metadata-Flavor: Google" "http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/0/ip")
|
|
63
|
+
* METADATA=$(curl -f -H "Metadata-Flavor: Google" "http://metadata.google.internal/computeMetadata/v1/instance/attributes/?recursive=True" | jq 'del(.["startup-script"])')
|
|
64
|
+
* cat <<EOF > /var/www/html/index.html
|
|
65
|
+
* <pre>
|
|
66
|
+
* Name: $NAME
|
|
67
|
+
* IP: $IP
|
|
68
|
+
* Metadata: $METADATA
|
|
69
|
+
* </pre>
|
|
70
|
+
* EOF
|
|
71
|
+
* `,
|
|
72
|
+
* },
|
|
73
|
+
* }, {
|
|
74
|
+
* provider: google,
|
|
75
|
+
* });
|
|
76
|
+
* // MIG
|
|
77
|
+
* const defaultInstanceGroupManager = new gcp.compute.InstanceGroupManager("defaultInstanceGroupManager", {
|
|
78
|
+
* zone: "us-central1-c",
|
|
79
|
+
* namedPorts: [{
|
|
80
|
+
* name: "tcp",
|
|
81
|
+
* port: 110,
|
|
82
|
+
* }],
|
|
83
|
+
* versions: [{
|
|
84
|
+
* instanceTemplate: defaultInstanceTemplate.id,
|
|
85
|
+
* name: "primary",
|
|
86
|
+
* }],
|
|
87
|
+
* baseInstanceName: "vm",
|
|
88
|
+
* targetSize: 2,
|
|
89
|
+
* }, {
|
|
90
|
+
* provider: google,
|
|
91
|
+
* });
|
|
92
|
+
* // backend service
|
|
93
|
+
* const defaultBackendService = new gcp.compute.BackendService("defaultBackendService", {
|
|
94
|
+
* protocol: "TCP",
|
|
95
|
+
* portName: "tcp",
|
|
96
|
+
* loadBalancingScheme: "EXTERNAL",
|
|
97
|
+
* timeoutSec: 10,
|
|
98
|
+
* healthChecks: [defaultHealthCheck.id],
|
|
99
|
+
* backends: [{
|
|
100
|
+
* group: defaultInstanceGroupManager.instanceGroup,
|
|
101
|
+
* balancingMode: "UTILIZATION",
|
|
102
|
+
* maxUtilization: 1,
|
|
103
|
+
* capacityScaler: 1,
|
|
104
|
+
* }],
|
|
105
|
+
* });
|
|
106
|
+
* const defaultTargetTCPProxy = new gcp.compute.TargetTCPProxy("defaultTargetTCPProxy", {backendService: defaultBackendService.id});
|
|
107
|
+
* // forwarding rule
|
|
108
|
+
* const defaultGlobalForwardingRule = new gcp.compute.GlobalForwardingRule("defaultGlobalForwardingRule", {
|
|
109
|
+
* ipProtocol: "TCP",
|
|
110
|
+
* loadBalancingScheme: "EXTERNAL",
|
|
111
|
+
* portRange: "110",
|
|
112
|
+
* target: defaultTargetTCPProxy.id,
|
|
113
|
+
* ipAddress: defaultGlobalAddress.id,
|
|
114
|
+
* }, {
|
|
115
|
+
* provider: google,
|
|
116
|
+
* });
|
|
117
|
+
* // allow access from health check ranges
|
|
118
|
+
* const defaultFirewall = new gcp.compute.Firewall("defaultFirewall", {
|
|
119
|
+
* direction: "INGRESS",
|
|
120
|
+
* network: defaultNetwork.id,
|
|
121
|
+
* sourceRanges: [
|
|
122
|
+
* "130.211.0.0/22",
|
|
123
|
+
* "35.191.0.0/16",
|
|
124
|
+
* ],
|
|
125
|
+
* allows: [{
|
|
126
|
+
* protocol: "tcp",
|
|
127
|
+
* }],
|
|
128
|
+
* targetTags: ["allow-health-check"],
|
|
129
|
+
* }, {
|
|
130
|
+
* provider: google,
|
|
131
|
+
* });
|
|
132
|
+
* ```
|
|
13
133
|
* ### External Http Lb Mig Backend Custom Header
|
|
14
134
|
*
|
|
15
135
|
* ```typescript
|
|
@@ -15,6 +15,126 @@ const utilities = require("../utilities");
|
|
|
15
15
|
* https://cloud.google.com/compute/docs/load-balancing/http/
|
|
16
16
|
*
|
|
17
17
|
* ## Example Usage
|
|
18
|
+
* ### External Tcp Proxy Lb Mig Backend Custom Header
|
|
19
|
+
*
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
22
|
+
* import * as gcp from "@pulumi/gcp";
|
|
23
|
+
*
|
|
24
|
+
* // External TCP proxy load balancer with managed instance group backend
|
|
25
|
+
* // VPC
|
|
26
|
+
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {autoCreateSubnetworks: false}, {
|
|
27
|
+
* provider: google,
|
|
28
|
+
* });
|
|
29
|
+
* // backend subnet
|
|
30
|
+
* const defaultSubnetwork = new gcp.compute.Subnetwork("defaultSubnetwork", {
|
|
31
|
+
* ipCidrRange: "10.0.1.0/24",
|
|
32
|
+
* region: "us-central1",
|
|
33
|
+
* network: defaultNetwork.id,
|
|
34
|
+
* }, {
|
|
35
|
+
* provider: google,
|
|
36
|
+
* });
|
|
37
|
+
* // reserved IP address
|
|
38
|
+
* const defaultGlobalAddress = new gcp.compute.GlobalAddress("defaultGlobalAddress", {});
|
|
39
|
+
* const defaultHealthCheck = new gcp.compute.HealthCheck("defaultHealthCheck", {
|
|
40
|
+
* timeoutSec: 1,
|
|
41
|
+
* checkIntervalSec: 1,
|
|
42
|
+
* tcpHealthCheck: {
|
|
43
|
+
* port: "80",
|
|
44
|
+
* },
|
|
45
|
+
* });
|
|
46
|
+
* // instance template
|
|
47
|
+
* const defaultInstanceTemplate = new gcp.compute.InstanceTemplate("defaultInstanceTemplate", {
|
|
48
|
+
* machineType: "e2-small",
|
|
49
|
+
* tags: ["allow-health-check"],
|
|
50
|
+
* networkInterfaces: [{
|
|
51
|
+
* network: defaultNetwork.id,
|
|
52
|
+
* subnetwork: defaultSubnetwork.id,
|
|
53
|
+
* accessConfigs: [{}],
|
|
54
|
+
* }],
|
|
55
|
+
* disks: [{
|
|
56
|
+
* sourceImage: "debian-cloud/debian-10",
|
|
57
|
+
* autoDelete: true,
|
|
58
|
+
* boot: true,
|
|
59
|
+
* }],
|
|
60
|
+
* metadata: {
|
|
61
|
+
* "startup-script": `#! /bin/bash
|
|
62
|
+
* set -euo pipefail
|
|
63
|
+
* export DEBIAN_FRONTEND=noninteractive
|
|
64
|
+
* apt-get update
|
|
65
|
+
* apt-get install -y nginx-light jq
|
|
66
|
+
* NAME=$(curl -H "Metadata-Flavor: Google" "http://metadata.google.internal/computeMetadata/v1/instance/hostname")
|
|
67
|
+
* IP=$(curl -H "Metadata-Flavor: Google" "http://metadata.google.internal/computeMetadata/v1/instance/network-interfaces/0/ip")
|
|
68
|
+
* METADATA=$(curl -f -H "Metadata-Flavor: Google" "http://metadata.google.internal/computeMetadata/v1/instance/attributes/?recursive=True" | jq 'del(.["startup-script"])')
|
|
69
|
+
* cat <<EOF > /var/www/html/index.html
|
|
70
|
+
* <pre>
|
|
71
|
+
* Name: $NAME
|
|
72
|
+
* IP: $IP
|
|
73
|
+
* Metadata: $METADATA
|
|
74
|
+
* </pre>
|
|
75
|
+
* EOF
|
|
76
|
+
* `,
|
|
77
|
+
* },
|
|
78
|
+
* }, {
|
|
79
|
+
* provider: google,
|
|
80
|
+
* });
|
|
81
|
+
* // MIG
|
|
82
|
+
* const defaultInstanceGroupManager = new gcp.compute.InstanceGroupManager("defaultInstanceGroupManager", {
|
|
83
|
+
* zone: "us-central1-c",
|
|
84
|
+
* namedPorts: [{
|
|
85
|
+
* name: "tcp",
|
|
86
|
+
* port: 110,
|
|
87
|
+
* }],
|
|
88
|
+
* versions: [{
|
|
89
|
+
* instanceTemplate: defaultInstanceTemplate.id,
|
|
90
|
+
* name: "primary",
|
|
91
|
+
* }],
|
|
92
|
+
* baseInstanceName: "vm",
|
|
93
|
+
* targetSize: 2,
|
|
94
|
+
* }, {
|
|
95
|
+
* provider: google,
|
|
96
|
+
* });
|
|
97
|
+
* // backend service
|
|
98
|
+
* const defaultBackendService = new gcp.compute.BackendService("defaultBackendService", {
|
|
99
|
+
* protocol: "TCP",
|
|
100
|
+
* portName: "tcp",
|
|
101
|
+
* loadBalancingScheme: "EXTERNAL",
|
|
102
|
+
* timeoutSec: 10,
|
|
103
|
+
* healthChecks: [defaultHealthCheck.id],
|
|
104
|
+
* backends: [{
|
|
105
|
+
* group: defaultInstanceGroupManager.instanceGroup,
|
|
106
|
+
* balancingMode: "UTILIZATION",
|
|
107
|
+
* maxUtilization: 1,
|
|
108
|
+
* capacityScaler: 1,
|
|
109
|
+
* }],
|
|
110
|
+
* });
|
|
111
|
+
* const defaultTargetTCPProxy = new gcp.compute.TargetTCPProxy("defaultTargetTCPProxy", {backendService: defaultBackendService.id});
|
|
112
|
+
* // forwarding rule
|
|
113
|
+
* const defaultGlobalForwardingRule = new gcp.compute.GlobalForwardingRule("defaultGlobalForwardingRule", {
|
|
114
|
+
* ipProtocol: "TCP",
|
|
115
|
+
* loadBalancingScheme: "EXTERNAL",
|
|
116
|
+
* portRange: "110",
|
|
117
|
+
* target: defaultTargetTCPProxy.id,
|
|
118
|
+
* ipAddress: defaultGlobalAddress.id,
|
|
119
|
+
* }, {
|
|
120
|
+
* provider: google,
|
|
121
|
+
* });
|
|
122
|
+
* // allow access from health check ranges
|
|
123
|
+
* const defaultFirewall = new gcp.compute.Firewall("defaultFirewall", {
|
|
124
|
+
* direction: "INGRESS",
|
|
125
|
+
* network: defaultNetwork.id,
|
|
126
|
+
* sourceRanges: [
|
|
127
|
+
* "130.211.0.0/22",
|
|
128
|
+
* "35.191.0.0/16",
|
|
129
|
+
* ],
|
|
130
|
+
* allows: [{
|
|
131
|
+
* protocol: "tcp",
|
|
132
|
+
* }],
|
|
133
|
+
* targetTags: ["allow-health-check"],
|
|
134
|
+
* }, {
|
|
135
|
+
* provider: google,
|
|
136
|
+
* });
|
|
137
|
+
* ```
|
|
18
138
|
* ### External Http Lb Mig Backend Custom Header
|
|
19
139
|
*
|
|
20
140
|
* ```typescript
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"globalForwardingRule.js","sourceRoot":"","sources":["../../compute/globalForwardingRule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"globalForwardingRule.js","sourceRoot":"","sources":["../../compute/globalForwardingRule.ts"],"names":[],"mappings":"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"}
|
package/compute/instance.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
81
81
|
*/
|
|
82
82
|
static isInstance(obj: any): obj is Instance;
|
|
83
83
|
/**
|
|
84
|
-
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM.
|
|
84
|
+
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM. Structure is documented below
|
|
85
85
|
*/
|
|
86
86
|
readonly advancedMachineFeatures: pulumi.Output<outputs.compute.InstanceAdvancedMachineFeatures | undefined>;
|
|
87
87
|
/**
|
|
@@ -105,7 +105,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
105
105
|
*/
|
|
106
106
|
readonly canIpForward: pulumi.Output<boolean | undefined>;
|
|
107
107
|
/**
|
|
108
|
-
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM.
|
|
108
|
+
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
|
109
109
|
*/
|
|
110
110
|
readonly confidentialInstanceConfig: pulumi.Output<outputs.compute.InstanceConfidentialInstanceConfig>;
|
|
111
111
|
/**
|
|
@@ -280,7 +280,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
280
280
|
*/
|
|
281
281
|
export interface InstanceState {
|
|
282
282
|
/**
|
|
283
|
-
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM.
|
|
283
|
+
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM. Structure is documented below
|
|
284
284
|
*/
|
|
285
285
|
advancedMachineFeatures?: pulumi.Input<inputs.compute.InstanceAdvancedMachineFeatures>;
|
|
286
286
|
/**
|
|
@@ -304,7 +304,7 @@ export interface InstanceState {
|
|
|
304
304
|
*/
|
|
305
305
|
canIpForward?: pulumi.Input<boolean>;
|
|
306
306
|
/**
|
|
307
|
-
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM.
|
|
307
|
+
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
|
308
308
|
*/
|
|
309
309
|
confidentialInstanceConfig?: pulumi.Input<inputs.compute.InstanceConfidentialInstanceConfig>;
|
|
310
310
|
/**
|
|
@@ -471,7 +471,7 @@ export interface InstanceState {
|
|
|
471
471
|
*/
|
|
472
472
|
export interface InstanceArgs {
|
|
473
473
|
/**
|
|
474
|
-
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM.
|
|
474
|
+
* Configure Nested Virtualisation and Simultaneous Hyper Threading on this VM. Structure is documented below
|
|
475
475
|
*/
|
|
476
476
|
advancedMachineFeatures?: pulumi.Input<inputs.compute.InstanceAdvancedMachineFeatures>;
|
|
477
477
|
/**
|
|
@@ -495,7 +495,7 @@ export interface InstanceArgs {
|
|
|
495
495
|
*/
|
|
496
496
|
canIpForward?: pulumi.Input<boolean>;
|
|
497
497
|
/**
|
|
498
|
-
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM.
|
|
498
|
+
* Enable [Confidential Mode](https://cloud.google.com/compute/confidential-vm/docs/about-cvm) on this VM. Structure is documented below
|
|
499
499
|
*/
|
|
500
500
|
confidentialInstanceConfig?: pulumi.Input<inputs.compute.InstanceConfidentialInstanceConfig>;
|
|
501
501
|
/**
|
|
@@ -142,7 +142,7 @@ export declare class InstanceGroup extends pulumi.CustomResource {
|
|
|
142
142
|
readonly name: pulumi.Output<string>;
|
|
143
143
|
/**
|
|
144
144
|
* The named port configuration. See the section below
|
|
145
|
-
* for details on configuration.
|
|
145
|
+
* for details on configuration. Structure is documented below.
|
|
146
146
|
*/
|
|
147
147
|
readonly namedPorts: pulumi.Output<outputs.compute.InstanceGroupNamedPort[] | undefined>;
|
|
148
148
|
/**
|
|
@@ -199,7 +199,7 @@ export interface InstanceGroupState {
|
|
|
199
199
|
name?: pulumi.Input<string>;
|
|
200
200
|
/**
|
|
201
201
|
* The named port configuration. See the section below
|
|
202
|
-
* for details on configuration.
|
|
202
|
+
* for details on configuration. Structure is documented below.
|
|
203
203
|
*/
|
|
204
204
|
namedPorts?: pulumi.Input<pulumi.Input<inputs.compute.InstanceGroupNamedPort>[]>;
|
|
205
205
|
/**
|
|
@@ -248,7 +248,7 @@ export interface InstanceGroupArgs {
|
|
|
248
248
|
name?: pulumi.Input<string>;
|
|
249
249
|
/**
|
|
250
250
|
* The named port configuration. See the section below
|
|
251
|
-
* for details on configuration.
|
|
251
|
+
* for details on configuration. Structure is documented below.
|
|
252
252
|
*/
|
|
253
253
|
namedPorts?: pulumi.Input<pulumi.Input<inputs.compute.InstanceGroupNamedPort>[]>;
|
|
254
254
|
/**
|