@pulumi/gcp 6.13.0-alpha.1646129648 → 6.14.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/bigquery/appProfile.d.ts +15 -0
- package/bigquery/appProfile.js +2 -0
- package/bigquery/appProfile.js.map +1 -1
- package/bigquery/dataset.d.ts +57 -0
- package/bigquery/dataset.js +57 -0
- package/bigquery/dataset.js.map +1 -1
- package/bigquery/datasetAccess.d.ts +34 -0
- package/bigquery/datasetAccess.js +21 -0
- package/bigquery/datasetAccess.js.map +1 -1
- package/compute/globalForwardingRule.d.ts +90 -0
- package/compute/globalForwardingRule.js +90 -0
- package/compute/globalForwardingRule.js.map +1 -1
- package/compute/networkEndpoint.d.ts +2 -2
- package/compute/networkEndpoint.js +0 -3
- package/compute/networkEndpoint.js.map +1 -1
- package/compute/networkEndpointGroup.d.ts +40 -3
- package/compute/networkEndpointGroup.js +19 -0
- package/compute/networkEndpointGroup.js.map +1 -1
- package/container/cluster.d.ts +3 -3
- package/container/nodePool.d.ts +15 -0
- package/container/nodePool.js +2 -0
- package/container/nodePool.js.map +1 -1
- package/dataflow/job.d.ts +1 -6
- package/dataflow/job.js +1 -0
- package/dataflow/job.js.map +1 -1
- package/datafusion/instance.d.ts +33 -17
- package/datafusion/instance.js +6 -6
- package/datafusion/instance.js.map +1 -1
- package/dns/index.d.ts +2 -0
- package/dns/index.js +10 -0
- package/dns/index.js.map +1 -1
- package/dns/managedZone.d.ts +1 -1
- package/dns/managedZone.js +1 -1
- package/dns/responsePolicy.d.ts +136 -0
- package/dns/responsePolicy.js +103 -0
- package/dns/responsePolicy.js.map +1 -0
- package/dns/responsePolicyRule.d.ts +166 -0
- package/dns/responsePolicyRule.js +126 -0
- package/dns/responsePolicyRule.js.map +1 -0
- package/eventarc/trigger.d.ts +3 -3
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/serviceaccount/key.d.ts +15 -6
- package/serviceaccount/key.js.map +1 -1
- package/types/input.d.ts +117 -9
- package/types/output.d.ts +124 -10
package/bigquery/appProfile.d.ts
CHANGED
|
@@ -104,6 +104,11 @@ export declare class AppProfile extends pulumi.CustomResource {
|
|
|
104
104
|
* The name of the instance to create the app profile within.
|
|
105
105
|
*/
|
|
106
106
|
readonly instance: pulumi.Output<string | undefined>;
|
|
107
|
+
/**
|
|
108
|
+
* The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
|
|
109
|
+
* clusters are eligible.
|
|
110
|
+
*/
|
|
111
|
+
readonly multiClusterRoutingClusterIds: pulumi.Output<string[] | undefined>;
|
|
107
112
|
/**
|
|
108
113
|
* If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
|
|
109
114
|
* in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
|
|
@@ -154,6 +159,11 @@ export interface AppProfileState {
|
|
|
154
159
|
* The name of the instance to create the app profile within.
|
|
155
160
|
*/
|
|
156
161
|
instance?: pulumi.Input<string>;
|
|
162
|
+
/**
|
|
163
|
+
* The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
|
|
164
|
+
* clusters are eligible.
|
|
165
|
+
*/
|
|
166
|
+
multiClusterRoutingClusterIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
157
167
|
/**
|
|
158
168
|
* If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
|
|
159
169
|
* in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
|
|
@@ -196,6 +206,11 @@ export interface AppProfileArgs {
|
|
|
196
206
|
* The name of the instance to create the app profile within.
|
|
197
207
|
*/
|
|
198
208
|
instance?: pulumi.Input<string>;
|
|
209
|
+
/**
|
|
210
|
+
* The set of clusters to route to. The order is ignored; clusters will be tried in order of distance. If left empty, all
|
|
211
|
+
* clusters are eligible.
|
|
212
|
+
*/
|
|
213
|
+
multiClusterRoutingClusterIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
199
214
|
/**
|
|
200
215
|
* If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available
|
|
201
216
|
* in the event of transient errors or delays. Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes
|
package/bigquery/appProfile.js
CHANGED
|
@@ -87,6 +87,7 @@ class AppProfile extends pulumi.CustomResource {
|
|
|
87
87
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
88
88
|
resourceInputs["ignoreWarnings"] = state ? state.ignoreWarnings : undefined;
|
|
89
89
|
resourceInputs["instance"] = state ? state.instance : undefined;
|
|
90
|
+
resourceInputs["multiClusterRoutingClusterIds"] = state ? state.multiClusterRoutingClusterIds : undefined;
|
|
90
91
|
resourceInputs["multiClusterRoutingUseAny"] = state ? state.multiClusterRoutingUseAny : undefined;
|
|
91
92
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
92
93
|
resourceInputs["project"] = state ? state.project : undefined;
|
|
@@ -101,6 +102,7 @@ class AppProfile extends pulumi.CustomResource {
|
|
|
101
102
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
102
103
|
resourceInputs["ignoreWarnings"] = args ? args.ignoreWarnings : undefined;
|
|
103
104
|
resourceInputs["instance"] = args ? args.instance : undefined;
|
|
105
|
+
resourceInputs["multiClusterRoutingClusterIds"] = args ? args.multiClusterRoutingClusterIds : undefined;
|
|
104
106
|
resourceInputs["multiClusterRoutingUseAny"] = args ? args.multiClusterRoutingUseAny : undefined;
|
|
105
107
|
resourceInputs["project"] = args ? args.project : undefined;
|
|
106
108
|
resourceInputs["singleClusterRouting"] = args ? args.singleClusterRouting : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"appProfile.js","sourceRoot":"","sources":["../../bigquery/appProfile.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuEG;AACH,MAAa,UAAW,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"appProfile.js","sourceRoot":"","sources":["../../bigquery/appProfile.ts"],"names":[],"mappings":"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"}
|
package/bigquery/dataset.d.ts
CHANGED
|
@@ -49,6 +49,63 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
49
49
|
* },
|
|
50
50
|
* });
|
|
51
51
|
* ```
|
|
52
|
+
* ### Bigquery Dataset Authorized Dataset
|
|
53
|
+
*
|
|
54
|
+
* ```typescript
|
|
55
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
56
|
+
* import * as gcp from "@pulumi/gcp";
|
|
57
|
+
*
|
|
58
|
+
* const bqowner = new gcp.serviceaccount.Account("bqowner", {accountId: "bqowner"});
|
|
59
|
+
* const _public = new gcp.bigquery.Dataset("public", {
|
|
60
|
+
* datasetId: "public",
|
|
61
|
+
* friendlyName: "test",
|
|
62
|
+
* description: "This dataset is public",
|
|
63
|
+
* location: "EU",
|
|
64
|
+
* defaultTableExpirationMs: 3600000,
|
|
65
|
+
* labels: {
|
|
66
|
+
* env: "default",
|
|
67
|
+
* },
|
|
68
|
+
* accesses: [
|
|
69
|
+
* {
|
|
70
|
+
* role: "OWNER",
|
|
71
|
+
* userByEmail: bqowner.email,
|
|
72
|
+
* },
|
|
73
|
+
* {
|
|
74
|
+
* role: "READER",
|
|
75
|
+
* domain: "hashicorp.com",
|
|
76
|
+
* },
|
|
77
|
+
* ],
|
|
78
|
+
* });
|
|
79
|
+
* const dataset = new gcp.bigquery.Dataset("dataset", {
|
|
80
|
+
* datasetId: "private",
|
|
81
|
+
* friendlyName: "test",
|
|
82
|
+
* description: "This dataset is private",
|
|
83
|
+
* location: "EU",
|
|
84
|
+
* defaultTableExpirationMs: 3600000,
|
|
85
|
+
* labels: {
|
|
86
|
+
* env: "default",
|
|
87
|
+
* },
|
|
88
|
+
* accesses: [
|
|
89
|
+
* {
|
|
90
|
+
* role: "OWNER",
|
|
91
|
+
* userByEmail: bqowner.email,
|
|
92
|
+
* },
|
|
93
|
+
* {
|
|
94
|
+
* role: "READER",
|
|
95
|
+
* domain: "hashicorp.com",
|
|
96
|
+
* },
|
|
97
|
+
* {
|
|
98
|
+
* dataset: {
|
|
99
|
+
* dataset: {
|
|
100
|
+
* projectId: _public.project,
|
|
101
|
+
* datasetId: _public.datasetId,
|
|
102
|
+
* },
|
|
103
|
+
* targetTypes: ["VIEWS"],
|
|
104
|
+
* },
|
|
105
|
+
* },
|
|
106
|
+
* ],
|
|
107
|
+
* });
|
|
108
|
+
* ```
|
|
52
109
|
*
|
|
53
110
|
* ## Import
|
|
54
111
|
*
|
package/bigquery/dataset.js
CHANGED
|
@@ -54,6 +54,63 @@ const utilities = require("../utilities");
|
|
|
54
54
|
* },
|
|
55
55
|
* });
|
|
56
56
|
* ```
|
|
57
|
+
* ### Bigquery Dataset Authorized Dataset
|
|
58
|
+
*
|
|
59
|
+
* ```typescript
|
|
60
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
61
|
+
* import * as gcp from "@pulumi/gcp";
|
|
62
|
+
*
|
|
63
|
+
* const bqowner = new gcp.serviceaccount.Account("bqowner", {accountId: "bqowner"});
|
|
64
|
+
* const _public = new gcp.bigquery.Dataset("public", {
|
|
65
|
+
* datasetId: "public",
|
|
66
|
+
* friendlyName: "test",
|
|
67
|
+
* description: "This dataset is public",
|
|
68
|
+
* location: "EU",
|
|
69
|
+
* defaultTableExpirationMs: 3600000,
|
|
70
|
+
* labels: {
|
|
71
|
+
* env: "default",
|
|
72
|
+
* },
|
|
73
|
+
* accesses: [
|
|
74
|
+
* {
|
|
75
|
+
* role: "OWNER",
|
|
76
|
+
* userByEmail: bqowner.email,
|
|
77
|
+
* },
|
|
78
|
+
* {
|
|
79
|
+
* role: "READER",
|
|
80
|
+
* domain: "hashicorp.com",
|
|
81
|
+
* },
|
|
82
|
+
* ],
|
|
83
|
+
* });
|
|
84
|
+
* const dataset = new gcp.bigquery.Dataset("dataset", {
|
|
85
|
+
* datasetId: "private",
|
|
86
|
+
* friendlyName: "test",
|
|
87
|
+
* description: "This dataset is private",
|
|
88
|
+
* location: "EU",
|
|
89
|
+
* defaultTableExpirationMs: 3600000,
|
|
90
|
+
* labels: {
|
|
91
|
+
* env: "default",
|
|
92
|
+
* },
|
|
93
|
+
* accesses: [
|
|
94
|
+
* {
|
|
95
|
+
* role: "OWNER",
|
|
96
|
+
* userByEmail: bqowner.email,
|
|
97
|
+
* },
|
|
98
|
+
* {
|
|
99
|
+
* role: "READER",
|
|
100
|
+
* domain: "hashicorp.com",
|
|
101
|
+
* },
|
|
102
|
+
* {
|
|
103
|
+
* dataset: {
|
|
104
|
+
* dataset: {
|
|
105
|
+
* projectId: _public.project,
|
|
106
|
+
* datasetId: _public.datasetId,
|
|
107
|
+
* },
|
|
108
|
+
* targetTypes: ["VIEWS"],
|
|
109
|
+
* },
|
|
110
|
+
* },
|
|
111
|
+
* ],
|
|
112
|
+
* });
|
|
113
|
+
* ```
|
|
57
114
|
*
|
|
58
115
|
* ## Import
|
|
59
116
|
*
|
package/bigquery/dataset.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dataset.js","sourceRoot":"","sources":["../../bigquery/dataset.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"dataset.js","sourceRoot":"","sources":["../../bigquery/dataset.ts"],"names":[],"mappings":"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"}
|
|
@@ -42,6 +42,25 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
42
42
|
* },
|
|
43
43
|
* });
|
|
44
44
|
* ```
|
|
45
|
+
* ### Bigquery Dataset Access Authorized Dataset
|
|
46
|
+
*
|
|
47
|
+
* ```typescript
|
|
48
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
49
|
+
* import * as gcp from "@pulumi/gcp";
|
|
50
|
+
*
|
|
51
|
+
* const _private = new gcp.bigquery.Dataset("private", {datasetId: "private"});
|
|
52
|
+
* const _public = new gcp.bigquery.Dataset("public", {datasetId: "public"});
|
|
53
|
+
* const access = new gcp.bigquery.DatasetAccess("access", {
|
|
54
|
+
* datasetId: _private.datasetId,
|
|
55
|
+
* authorizedDataset: {
|
|
56
|
+
* dataset: {
|
|
57
|
+
* projectId: _public.project,
|
|
58
|
+
* datasetId: _public.datasetId,
|
|
59
|
+
* },
|
|
60
|
+
* targetTypes: ["VIEWS"],
|
|
61
|
+
* },
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
45
64
|
*
|
|
46
65
|
* ## Import
|
|
47
66
|
*
|
|
@@ -68,6 +87,11 @@ export declare class DatasetAccess extends pulumi.CustomResource {
|
|
|
68
87
|
* stored in state as a different member type
|
|
69
88
|
*/
|
|
70
89
|
readonly apiUpdatedMember: pulumi.Output<boolean>;
|
|
90
|
+
/**
|
|
91
|
+
* The dataset this entry applies to
|
|
92
|
+
* Structure is documented below.
|
|
93
|
+
*/
|
|
94
|
+
readonly authorizedDataset: pulumi.Output<outputs.bigquery.DatasetAccessAuthorizedDataset | undefined>;
|
|
71
95
|
/**
|
|
72
96
|
* The ID of the dataset containing this table.
|
|
73
97
|
*/
|
|
@@ -136,6 +160,11 @@ export interface DatasetAccessState {
|
|
|
136
160
|
* stored in state as a different member type
|
|
137
161
|
*/
|
|
138
162
|
apiUpdatedMember?: pulumi.Input<boolean>;
|
|
163
|
+
/**
|
|
164
|
+
* The dataset this entry applies to
|
|
165
|
+
* Structure is documented below.
|
|
166
|
+
*/
|
|
167
|
+
authorizedDataset?: pulumi.Input<inputs.bigquery.DatasetAccessAuthorizedDataset>;
|
|
139
168
|
/**
|
|
140
169
|
* The ID of the dataset containing this table.
|
|
141
170
|
*/
|
|
@@ -191,6 +220,11 @@ export interface DatasetAccessState {
|
|
|
191
220
|
* The set of arguments for constructing a DatasetAccess resource.
|
|
192
221
|
*/
|
|
193
222
|
export interface DatasetAccessArgs {
|
|
223
|
+
/**
|
|
224
|
+
* The dataset this entry applies to
|
|
225
|
+
* Structure is documented below.
|
|
226
|
+
*/
|
|
227
|
+
authorizedDataset?: pulumi.Input<inputs.bigquery.DatasetAccessAuthorizedDataset>;
|
|
194
228
|
/**
|
|
195
229
|
* The ID of the dataset containing this table.
|
|
196
230
|
*/
|
|
@@ -47,6 +47,25 @@ const utilities = require("../utilities");
|
|
|
47
47
|
* },
|
|
48
48
|
* });
|
|
49
49
|
* ```
|
|
50
|
+
* ### Bigquery Dataset Access Authorized Dataset
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as gcp from "@pulumi/gcp";
|
|
55
|
+
*
|
|
56
|
+
* const _private = new gcp.bigquery.Dataset("private", {datasetId: "private"});
|
|
57
|
+
* const _public = new gcp.bigquery.Dataset("public", {datasetId: "public"});
|
|
58
|
+
* const access = new gcp.bigquery.DatasetAccess("access", {
|
|
59
|
+
* datasetId: _private.datasetId,
|
|
60
|
+
* authorizedDataset: {
|
|
61
|
+
* dataset: {
|
|
62
|
+
* projectId: _public.project,
|
|
63
|
+
* datasetId: _public.datasetId,
|
|
64
|
+
* },
|
|
65
|
+
* targetTypes: ["VIEWS"],
|
|
66
|
+
* },
|
|
67
|
+
* });
|
|
68
|
+
* ```
|
|
50
69
|
*
|
|
51
70
|
* ## Import
|
|
52
71
|
*
|
|
@@ -59,6 +78,7 @@ class DatasetAccess extends pulumi.CustomResource {
|
|
|
59
78
|
if (opts.id) {
|
|
60
79
|
const state = argsOrState;
|
|
61
80
|
resourceInputs["apiUpdatedMember"] = state ? state.apiUpdatedMember : undefined;
|
|
81
|
+
resourceInputs["authorizedDataset"] = state ? state.authorizedDataset : undefined;
|
|
62
82
|
resourceInputs["datasetId"] = state ? state.datasetId : undefined;
|
|
63
83
|
resourceInputs["domain"] = state ? state.domain : undefined;
|
|
64
84
|
resourceInputs["groupByEmail"] = state ? state.groupByEmail : undefined;
|
|
@@ -74,6 +94,7 @@ class DatasetAccess extends pulumi.CustomResource {
|
|
|
74
94
|
if ((!args || args.datasetId === undefined) && !opts.urn) {
|
|
75
95
|
throw new Error("Missing required property 'datasetId'");
|
|
76
96
|
}
|
|
97
|
+
resourceInputs["authorizedDataset"] = args ? args.authorizedDataset : undefined;
|
|
77
98
|
resourceInputs["datasetId"] = args ? args.datasetId : undefined;
|
|
78
99
|
resourceInputs["domain"] = args ? args.domain : undefined;
|
|
79
100
|
resourceInputs["groupByEmail"] = args ? args.groupByEmail : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"datasetAccess.js","sourceRoot":"","sources":["../../bigquery/datasetAccess.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"datasetAccess.js","sourceRoot":"","sources":["../../bigquery/datasetAccess.ts"],"names":[],"mappings":"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"}
|
|
@@ -452,6 +452,96 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
452
452
|
* loadBalancingScheme: "EXTERNAL_MANAGED",
|
|
453
453
|
* });
|
|
454
454
|
* ```
|
|
455
|
+
* ### Global Forwarding Rule Hybrid
|
|
456
|
+
*
|
|
457
|
+
* ```typescript
|
|
458
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
459
|
+
* import * as gcp from "@pulumi/gcp";
|
|
460
|
+
*
|
|
461
|
+
* // Roughly mirrors https://cloud.google.com/load-balancing/docs/https/setting-up-ext-https-hybrid
|
|
462
|
+
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {});
|
|
463
|
+
* // Zonal NEG with GCE_VM_IP_PORT
|
|
464
|
+
* const defaultNetworkEndpointGroup = new gcp.compute.NetworkEndpointGroup("defaultNetworkEndpointGroup", {
|
|
465
|
+
* network: defaultNetwork.id,
|
|
466
|
+
* defaultPort: "90",
|
|
467
|
+
* zone: "us-central1-a",
|
|
468
|
+
* networkEndpointType: "GCE_VM_IP_PORT",
|
|
469
|
+
* });
|
|
470
|
+
* // Hybrid connectivity NEG
|
|
471
|
+
* const hybridNetworkEndpointGroup = new gcp.compute.NetworkEndpointGroup("hybridNetworkEndpointGroup", {
|
|
472
|
+
* network: defaultNetwork.id,
|
|
473
|
+
* defaultPort: "90",
|
|
474
|
+
* zone: "us-central1-a",
|
|
475
|
+
* networkEndpointType: "NON_GCP_PRIVATE_IP_PORT",
|
|
476
|
+
* });
|
|
477
|
+
* const hybrid_endpoint = new gcp.compute.NetworkEndpoint("hybrid-endpoint", {
|
|
478
|
+
* networkEndpointGroup: hybridNetworkEndpointGroup.name,
|
|
479
|
+
* port: hybridNetworkEndpointGroup.defaultPort,
|
|
480
|
+
* ipAddress: "127.0.0.1",
|
|
481
|
+
* });
|
|
482
|
+
* const defaultHealthCheck = new gcp.compute.HealthCheck("defaultHealthCheck", {
|
|
483
|
+
* timeoutSec: 1,
|
|
484
|
+
* checkIntervalSec: 1,
|
|
485
|
+
* tcpHealthCheck: {
|
|
486
|
+
* port: "80",
|
|
487
|
+
* },
|
|
488
|
+
* });
|
|
489
|
+
* // Backend service for Zonal NEG
|
|
490
|
+
* const defaultBackendService = new gcp.compute.BackendService("defaultBackendService", {
|
|
491
|
+
* portName: "http",
|
|
492
|
+
* protocol: "HTTP",
|
|
493
|
+
* timeoutSec: 10,
|
|
494
|
+
* backends: [{
|
|
495
|
+
* group: defaultNetworkEndpointGroup.id,
|
|
496
|
+
* balancingMode: "RATE",
|
|
497
|
+
* maxRatePerEndpoint: 10,
|
|
498
|
+
* }],
|
|
499
|
+
* healthChecks: [defaultHealthCheck.id],
|
|
500
|
+
* });
|
|
501
|
+
* // Backgend service for Hybrid NEG
|
|
502
|
+
* const hybridBackendService = new gcp.compute.BackendService("hybridBackendService", {
|
|
503
|
+
* portName: "http",
|
|
504
|
+
* protocol: "HTTP",
|
|
505
|
+
* timeoutSec: 10,
|
|
506
|
+
* backends: [{
|
|
507
|
+
* group: hybridNetworkEndpointGroup.id,
|
|
508
|
+
* balancingMode: "RATE",
|
|
509
|
+
* maxRatePerEndpoint: 10,
|
|
510
|
+
* }],
|
|
511
|
+
* healthChecks: [defaultHealthCheck.id],
|
|
512
|
+
* });
|
|
513
|
+
* const defaultURLMap = new gcp.compute.URLMap("defaultURLMap", {
|
|
514
|
+
* description: "a description",
|
|
515
|
+
* defaultService: defaultBackendService.id,
|
|
516
|
+
* hostRules: [{
|
|
517
|
+
* hosts: ["mysite.com"],
|
|
518
|
+
* pathMatcher: "allpaths",
|
|
519
|
+
* }],
|
|
520
|
+
* pathMatchers: [{
|
|
521
|
+
* name: "allpaths",
|
|
522
|
+
* defaultService: defaultBackendService.id,
|
|
523
|
+
* pathRules: [
|
|
524
|
+
* {
|
|
525
|
+
* paths: ["/*"],
|
|
526
|
+
* service: defaultBackendService.id,
|
|
527
|
+
* },
|
|
528
|
+
* {
|
|
529
|
+
* paths: ["/hybrid"],
|
|
530
|
+
* service: hybridBackendService.id,
|
|
531
|
+
* },
|
|
532
|
+
* ],
|
|
533
|
+
* }],
|
|
534
|
+
* });
|
|
535
|
+
* const defaultTargetHttpProxy = new gcp.compute.TargetHttpProxy("defaultTargetHttpProxy", {
|
|
536
|
+
* description: "a description",
|
|
537
|
+
* urlMap: defaultURLMap.id,
|
|
538
|
+
* });
|
|
539
|
+
* const defaultGlobalForwardingRule = new gcp.compute.GlobalForwardingRule("defaultGlobalForwardingRule", {
|
|
540
|
+
* target: defaultTargetHttpProxy.id,
|
|
541
|
+
* portRange: "80",
|
|
542
|
+
* });
|
|
543
|
+
* ```
|
|
544
|
+
* ### Private Service Connect Google Apis
|
|
455
545
|
* ### Private Service Connect Google Apis
|
|
456
546
|
*
|
|
457
547
|
* ```typescript
|
|
@@ -457,6 +457,96 @@ const utilities = require("../utilities");
|
|
|
457
457
|
* loadBalancingScheme: "EXTERNAL_MANAGED",
|
|
458
458
|
* });
|
|
459
459
|
* ```
|
|
460
|
+
* ### Global Forwarding Rule Hybrid
|
|
461
|
+
*
|
|
462
|
+
* ```typescript
|
|
463
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
464
|
+
* import * as gcp from "@pulumi/gcp";
|
|
465
|
+
*
|
|
466
|
+
* // Roughly mirrors https://cloud.google.com/load-balancing/docs/https/setting-up-ext-https-hybrid
|
|
467
|
+
* const defaultNetwork = new gcp.compute.Network("defaultNetwork", {});
|
|
468
|
+
* // Zonal NEG with GCE_VM_IP_PORT
|
|
469
|
+
* const defaultNetworkEndpointGroup = new gcp.compute.NetworkEndpointGroup("defaultNetworkEndpointGroup", {
|
|
470
|
+
* network: defaultNetwork.id,
|
|
471
|
+
* defaultPort: "90",
|
|
472
|
+
* zone: "us-central1-a",
|
|
473
|
+
* networkEndpointType: "GCE_VM_IP_PORT",
|
|
474
|
+
* });
|
|
475
|
+
* // Hybrid connectivity NEG
|
|
476
|
+
* const hybridNetworkEndpointGroup = new gcp.compute.NetworkEndpointGroup("hybridNetworkEndpointGroup", {
|
|
477
|
+
* network: defaultNetwork.id,
|
|
478
|
+
* defaultPort: "90",
|
|
479
|
+
* zone: "us-central1-a",
|
|
480
|
+
* networkEndpointType: "NON_GCP_PRIVATE_IP_PORT",
|
|
481
|
+
* });
|
|
482
|
+
* const hybrid_endpoint = new gcp.compute.NetworkEndpoint("hybrid-endpoint", {
|
|
483
|
+
* networkEndpointGroup: hybridNetworkEndpointGroup.name,
|
|
484
|
+
* port: hybridNetworkEndpointGroup.defaultPort,
|
|
485
|
+
* ipAddress: "127.0.0.1",
|
|
486
|
+
* });
|
|
487
|
+
* const defaultHealthCheck = new gcp.compute.HealthCheck("defaultHealthCheck", {
|
|
488
|
+
* timeoutSec: 1,
|
|
489
|
+
* checkIntervalSec: 1,
|
|
490
|
+
* tcpHealthCheck: {
|
|
491
|
+
* port: "80",
|
|
492
|
+
* },
|
|
493
|
+
* });
|
|
494
|
+
* // Backend service for Zonal NEG
|
|
495
|
+
* const defaultBackendService = new gcp.compute.BackendService("defaultBackendService", {
|
|
496
|
+
* portName: "http",
|
|
497
|
+
* protocol: "HTTP",
|
|
498
|
+
* timeoutSec: 10,
|
|
499
|
+
* backends: [{
|
|
500
|
+
* group: defaultNetworkEndpointGroup.id,
|
|
501
|
+
* balancingMode: "RATE",
|
|
502
|
+
* maxRatePerEndpoint: 10,
|
|
503
|
+
* }],
|
|
504
|
+
* healthChecks: [defaultHealthCheck.id],
|
|
505
|
+
* });
|
|
506
|
+
* // Backgend service for Hybrid NEG
|
|
507
|
+
* const hybridBackendService = new gcp.compute.BackendService("hybridBackendService", {
|
|
508
|
+
* portName: "http",
|
|
509
|
+
* protocol: "HTTP",
|
|
510
|
+
* timeoutSec: 10,
|
|
511
|
+
* backends: [{
|
|
512
|
+
* group: hybridNetworkEndpointGroup.id,
|
|
513
|
+
* balancingMode: "RATE",
|
|
514
|
+
* maxRatePerEndpoint: 10,
|
|
515
|
+
* }],
|
|
516
|
+
* healthChecks: [defaultHealthCheck.id],
|
|
517
|
+
* });
|
|
518
|
+
* const defaultURLMap = new gcp.compute.URLMap("defaultURLMap", {
|
|
519
|
+
* description: "a description",
|
|
520
|
+
* defaultService: defaultBackendService.id,
|
|
521
|
+
* hostRules: [{
|
|
522
|
+
* hosts: ["mysite.com"],
|
|
523
|
+
* pathMatcher: "allpaths",
|
|
524
|
+
* }],
|
|
525
|
+
* pathMatchers: [{
|
|
526
|
+
* name: "allpaths",
|
|
527
|
+
* defaultService: defaultBackendService.id,
|
|
528
|
+
* pathRules: [
|
|
529
|
+
* {
|
|
530
|
+
* paths: ["/*"],
|
|
531
|
+
* service: defaultBackendService.id,
|
|
532
|
+
* },
|
|
533
|
+
* {
|
|
534
|
+
* paths: ["/hybrid"],
|
|
535
|
+
* service: hybridBackendService.id,
|
|
536
|
+
* },
|
|
537
|
+
* ],
|
|
538
|
+
* }],
|
|
539
|
+
* });
|
|
540
|
+
* const defaultTargetHttpProxy = new gcp.compute.TargetHttpProxy("defaultTargetHttpProxy", {
|
|
541
|
+
* description: "a description",
|
|
542
|
+
* urlMap: defaultURLMap.id,
|
|
543
|
+
* });
|
|
544
|
+
* const defaultGlobalForwardingRule = new gcp.compute.GlobalForwardingRule("defaultGlobalForwardingRule", {
|
|
545
|
+
* target: defaultTargetHttpProxy.id,
|
|
546
|
+
* portRange: "80",
|
|
547
|
+
* });
|
|
548
|
+
* ```
|
|
549
|
+
* ### Private Service Connect Google Apis
|
|
460
550
|
* ### Private Service Connect Google Apis
|
|
461
551
|
*
|
|
462
552
|
* ```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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"}
|
|
@@ -96,7 +96,7 @@ export declare class NetworkEndpoint extends pulumi.CustomResource {
|
|
|
96
96
|
* This is required for network endpoints of type GCE_VM_IP_PORT.
|
|
97
97
|
* The instance must be in the same zone of network endpoint group.
|
|
98
98
|
*/
|
|
99
|
-
readonly instance: pulumi.Output<string>;
|
|
99
|
+
readonly instance: pulumi.Output<string | undefined>;
|
|
100
100
|
/**
|
|
101
101
|
* IPv4 address of network endpoint. The IP address must belong
|
|
102
102
|
* to a VM in GCE (either the primary IP or as part of an aliased IP
|
|
@@ -172,7 +172,7 @@ export interface NetworkEndpointArgs {
|
|
|
172
172
|
* This is required for network endpoints of type GCE_VM_IP_PORT.
|
|
173
173
|
* The instance must be in the same zone of network endpoint group.
|
|
174
174
|
*/
|
|
175
|
-
instance
|
|
175
|
+
instance?: pulumi.Input<string>;
|
|
176
176
|
/**
|
|
177
177
|
* IPv4 address of network endpoint. The IP address must belong
|
|
178
178
|
* to a VM in GCE (either the primary IP or as part of an aliased IP
|
|
@@ -96,9 +96,6 @@ class NetworkEndpoint extends pulumi.CustomResource {
|
|
|
96
96
|
}
|
|
97
97
|
else {
|
|
98
98
|
const args = argsOrState;
|
|
99
|
-
if ((!args || args.instance === undefined) && !opts.urn) {
|
|
100
|
-
throw new Error("Missing required property 'instance'");
|
|
101
|
-
}
|
|
102
99
|
if ((!args || args.ipAddress === undefined) && !opts.urn) {
|
|
103
100
|
throw new Error("Missing required property 'ipAddress'");
|
|
104
101
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"networkEndpoint.js","sourceRoot":"","sources":["../../compute/networkEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2EG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IAkEtD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,
|
|
1
|
+
{"version":3,"file":"networkEndpoint.js","sourceRoot":"","sources":["../../compute/networkEndpoint.ts"],"names":[],"mappings":"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"}
|