@pulumi/confluentcloud 2.13.0-alpha.1737778640 → 2.13.0-alpha.1737984569
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/accessPoint.d.ts +24 -0
- package/accessPoint.js +14 -0
- package/accessPoint.js.map +1 -1
- package/apiKey.d.ts +9 -84
- package/apiKey.js +9 -84
- package/apiKey.js.map +1 -1
- package/dnsForwarder.d.ts +5 -0
- package/dnsForwarder.js +4 -0
- package/dnsForwarder.js.map +1 -1
- package/getAccessPoint.d.ts +12 -0
- package/getAccessPoint.js +2 -0
- package/getAccessPoint.js.map +1 -1
- package/getGateway.d.ts +8 -0
- package/getGateway.js.map +1 -1
- package/package.json +2 -2
- package/peering.d.ts +45 -0
- package/peering.js +45 -0
- package/peering.js.map +1 -1
- package/types/input.d.ts +67 -4
- package/types/output.d.ts +74 -9
package/accessPoint.d.ts
CHANGED
|
@@ -38,6 +38,18 @@ import * as outputs from "./types/output";
|
|
|
38
38
|
* privateLinkSubresourceName: "sqlServer",
|
|
39
39
|
* },
|
|
40
40
|
* });
|
|
41
|
+
* const gcp = new confluentcloud.AccessPoint("gcp", {
|
|
42
|
+
* displayName: "access_point",
|
|
43
|
+
* environment: {
|
|
44
|
+
* id: development.id,
|
|
45
|
+
* },
|
|
46
|
+
* gateway: {
|
|
47
|
+
* id: main.gateway[0].id,
|
|
48
|
+
* },
|
|
49
|
+
* gcpEgressPrivateServiceConnectEndpoint: {
|
|
50
|
+
* privateServiceConnectEndpointTarget: "projects/example-project/regions/us-central1/serviceAttachments/my-service-attachment",
|
|
51
|
+
* },
|
|
52
|
+
* });
|
|
41
53
|
* ```
|
|
42
54
|
*
|
|
43
55
|
* ## Import
|
|
@@ -91,6 +103,10 @@ export declare class AccessPoint extends pulumi.CustomResource {
|
|
|
91
103
|
*/
|
|
92
104
|
readonly environment: pulumi.Output<outputs.AccessPointEnvironment>;
|
|
93
105
|
readonly gateway: pulumi.Output<outputs.AccessPointGateway>;
|
|
106
|
+
/**
|
|
107
|
+
* (Optional Configuration Block) supports the following:
|
|
108
|
+
*/
|
|
109
|
+
readonly gcpEgressPrivateServiceConnectEndpoint: pulumi.Output<outputs.AccessPointGcpEgressPrivateServiceConnectEndpoint | undefined>;
|
|
94
110
|
/**
|
|
95
111
|
* Create a AccessPoint resource with the given unique name, arguments, and options.
|
|
96
112
|
*
|
|
@@ -125,6 +141,10 @@ export interface AccessPointState {
|
|
|
125
141
|
*/
|
|
126
142
|
environment?: pulumi.Input<inputs.AccessPointEnvironment>;
|
|
127
143
|
gateway?: pulumi.Input<inputs.AccessPointGateway>;
|
|
144
|
+
/**
|
|
145
|
+
* (Optional Configuration Block) supports the following:
|
|
146
|
+
*/
|
|
147
|
+
gcpEgressPrivateServiceConnectEndpoint?: pulumi.Input<inputs.AccessPointGcpEgressPrivateServiceConnectEndpoint>;
|
|
128
148
|
}
|
|
129
149
|
/**
|
|
130
150
|
* The set of arguments for constructing a AccessPoint resource.
|
|
@@ -151,4 +171,8 @@ export interface AccessPointArgs {
|
|
|
151
171
|
*/
|
|
152
172
|
environment: pulumi.Input<inputs.AccessPointEnvironment>;
|
|
153
173
|
gateway: pulumi.Input<inputs.AccessPointGateway>;
|
|
174
|
+
/**
|
|
175
|
+
* (Optional Configuration Block) supports the following:
|
|
176
|
+
*/
|
|
177
|
+
gcpEgressPrivateServiceConnectEndpoint?: pulumi.Input<inputs.AccessPointGcpEgressPrivateServiceConnectEndpoint>;
|
|
154
178
|
}
|
package/accessPoint.js
CHANGED
|
@@ -42,6 +42,18 @@ const utilities = require("./utilities");
|
|
|
42
42
|
* privateLinkSubresourceName: "sqlServer",
|
|
43
43
|
* },
|
|
44
44
|
* });
|
|
45
|
+
* const gcp = new confluentcloud.AccessPoint("gcp", {
|
|
46
|
+
* displayName: "access_point",
|
|
47
|
+
* environment: {
|
|
48
|
+
* id: development.id,
|
|
49
|
+
* },
|
|
50
|
+
* gateway: {
|
|
51
|
+
* id: main.gateway[0].id,
|
|
52
|
+
* },
|
|
53
|
+
* gcpEgressPrivateServiceConnectEndpoint: {
|
|
54
|
+
* privateServiceConnectEndpointTarget: "projects/example-project/regions/us-central1/serviceAttachments/my-service-attachment",
|
|
55
|
+
* },
|
|
56
|
+
* });
|
|
45
57
|
* ```
|
|
46
58
|
*
|
|
47
59
|
* ## Import
|
|
@@ -92,6 +104,7 @@ class AccessPoint extends pulumi.CustomResource {
|
|
|
92
104
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
93
105
|
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
94
106
|
resourceInputs["gateway"] = state ? state.gateway : undefined;
|
|
107
|
+
resourceInputs["gcpEgressPrivateServiceConnectEndpoint"] = state ? state.gcpEgressPrivateServiceConnectEndpoint : undefined;
|
|
95
108
|
}
|
|
96
109
|
else {
|
|
97
110
|
const args = argsOrState;
|
|
@@ -107,6 +120,7 @@ class AccessPoint extends pulumi.CustomResource {
|
|
|
107
120
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
108
121
|
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
109
122
|
resourceInputs["gateway"] = args ? args.gateway : undefined;
|
|
123
|
+
resourceInputs["gcpEgressPrivateServiceConnectEndpoint"] = args ? args.gcpEgressPrivateServiceConnectEndpoint : undefined;
|
|
110
124
|
}
|
|
111
125
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
112
126
|
super(AccessPoint.__pulumiType, name, resourceInputs, opts);
|
package/accessPoint.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"accessPoint.js","sourceRoot":"","sources":["../accessPoint.ts"],"names":[],"mappings":"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"}
|
package/apiKey.d.ts
CHANGED
|
@@ -4,98 +4,23 @@ import * as outputs from "./types/output";
|
|
|
4
4
|
/**
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
7
|
-
* ### Example
|
|
7
|
+
* ### Example Tableflow API Key
|
|
8
8
|
* ```typescript
|
|
9
9
|
* import * as pulumi from "@pulumi/pulumi";
|
|
10
10
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
11
11
|
*
|
|
12
|
-
* const
|
|
13
|
-
* displayName: "
|
|
14
|
-
* description: "
|
|
15
|
-
* owner: {
|
|
16
|
-
* id: app_manager.id,
|
|
17
|
-
* apiVersion: app_manager.apiVersion,
|
|
18
|
-
* kind: app_manager.kind,
|
|
19
|
-
* },
|
|
20
|
-
* managedResource: {
|
|
21
|
-
* id: basic.id,
|
|
22
|
-
* apiVersion: basic.apiVersion,
|
|
23
|
-
* kind: basic.kind,
|
|
24
|
-
* environment: {
|
|
25
|
-
* id: staging.id,
|
|
26
|
-
* },
|
|
27
|
-
* },
|
|
28
|
-
* });
|
|
29
|
-
* ```
|
|
30
|
-
*
|
|
31
|
-
* ### Example ksqlDB API Key
|
|
32
|
-
* ```typescript
|
|
33
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
34
|
-
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
35
|
-
*
|
|
36
|
-
* const ksqldb_api_key = new confluentcloud.ApiKey("ksqldb-api-key", {
|
|
37
|
-
* displayName: "ksqldb-api-key",
|
|
38
|
-
* description: "KsqlDB API Key that is owned by 'app-manager' service account",
|
|
39
|
-
* owner: {
|
|
40
|
-
* id: app_manager.id,
|
|
41
|
-
* apiVersion: app_manager.apiVersion,
|
|
42
|
-
* kind: app_manager.kind,
|
|
43
|
-
* },
|
|
44
|
-
* managedResource: {
|
|
45
|
-
* id: main.id,
|
|
46
|
-
* apiVersion: main.apiVersion,
|
|
47
|
-
* kind: main.kind,
|
|
48
|
-
* environment: {
|
|
49
|
-
* id: staging.id,
|
|
50
|
-
* },
|
|
51
|
-
* },
|
|
52
|
-
* });
|
|
53
|
-
* ```
|
|
54
|
-
*
|
|
55
|
-
* ### Example Schema Registry API Key
|
|
56
|
-
* ```typescript
|
|
57
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
-
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
59
|
-
*
|
|
60
|
-
* const env_manager_schema_registry_api_key = new confluentcloud.ApiKey("env-manager-schema-registry-api-key", {
|
|
61
|
-
* displayName: "env-manager-schema-registry-api-key",
|
|
62
|
-
* description: "Schema Registry API Key that is owned by 'env-manager' service account",
|
|
63
|
-
* owner: {
|
|
64
|
-
* id: env_manager.id,
|
|
65
|
-
* apiVersion: env_manager.apiVersion,
|
|
66
|
-
* kind: env_manager.kind,
|
|
67
|
-
* },
|
|
68
|
-
* managedResource: {
|
|
69
|
-
* id: essentials.id,
|
|
70
|
-
* apiVersion: essentials.apiVersion,
|
|
71
|
-
* kind: essentials.kind,
|
|
72
|
-
* environment: {
|
|
73
|
-
* id: staging.id,
|
|
74
|
-
* },
|
|
75
|
-
* },
|
|
76
|
-
* });
|
|
77
|
-
* ```
|
|
78
|
-
*
|
|
79
|
-
* ### Example Flink API Key
|
|
80
|
-
* ```typescript
|
|
81
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
82
|
-
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
83
|
-
*
|
|
84
|
-
* const env_manager_flink_api_key = new confluentcloud.ApiKey("env-manager-flink-api-key", {
|
|
85
|
-
* displayName: "env-manager-flink-api-key",
|
|
86
|
-
* description: "Flink API Key that is owned by 'env-manager' service account",
|
|
12
|
+
* const env_manager_tableflow_api_key = new confluentcloud.ApiKey("env-manager-tableflow-api-key", {
|
|
13
|
+
* displayName: "env-manager-tableflow-api-key",
|
|
14
|
+
* description: "Tableflow API Key that is owned by 'env-manager' service account",
|
|
87
15
|
* owner: {
|
|
88
16
|
* id: env_manager.id,
|
|
89
17
|
* apiVersion: env_manager.apiVersion,
|
|
90
18
|
* kind: env_manager.kind,
|
|
91
19
|
* },
|
|
92
20
|
* managedResource: {
|
|
93
|
-
* id:
|
|
94
|
-
* apiVersion:
|
|
95
|
-
* kind:
|
|
96
|
-
* environment: {
|
|
97
|
-
* id: staging.id,
|
|
98
|
-
* },
|
|
21
|
+
* id: "tableflow",
|
|
22
|
+
* apiVersion: "tableflow/v1",
|
|
23
|
+
* kind: "Tableflow",
|
|
99
24
|
* },
|
|
100
25
|
* });
|
|
101
26
|
* ```
|
|
@@ -157,7 +82,7 @@ import * as outputs from "./types/output";
|
|
|
157
82
|
* $ pulumi import confluentcloud:index/apiKey:ApiKey example_kafka_api_key "env-abc123/UTT6WDRXX7FHD2GV"
|
|
158
83
|
* ```
|
|
159
84
|
*
|
|
160
|
-
* You can import a Cloud API Key by using Cloud API Key ID, for example:
|
|
85
|
+
* You can import a Cloud or Tableflow API Key by using Cloud or Tableflow API Key ID, for example:
|
|
161
86
|
*
|
|
162
87
|
* $ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
|
|
163
88
|
*
|
|
@@ -165,7 +90,7 @@ import * as outputs from "./types/output";
|
|
|
165
90
|
*
|
|
166
91
|
* $ export API_KEY_SECRET="<api_key_secret>"
|
|
167
92
|
*
|
|
168
|
-
* Option #2: Cloud API Key
|
|
93
|
+
* Option #2: Cloud or Tableflow API Key
|
|
169
94
|
*
|
|
170
95
|
* ```sh
|
|
171
96
|
* $ pulumi import confluentcloud:index/apiKey:ApiKey example_cloud_api_key "4UEXOMMWIBE5KZQG"
|
package/apiKey.js
CHANGED
|
@@ -8,98 +8,23 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
-
* ### Example
|
|
11
|
+
* ### Example Tableflow API Key
|
|
12
12
|
* ```typescript
|
|
13
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
14
14
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
15
15
|
*
|
|
16
|
-
* const
|
|
17
|
-
* displayName: "
|
|
18
|
-
* description: "
|
|
19
|
-
* owner: {
|
|
20
|
-
* id: app_manager.id,
|
|
21
|
-
* apiVersion: app_manager.apiVersion,
|
|
22
|
-
* kind: app_manager.kind,
|
|
23
|
-
* },
|
|
24
|
-
* managedResource: {
|
|
25
|
-
* id: basic.id,
|
|
26
|
-
* apiVersion: basic.apiVersion,
|
|
27
|
-
* kind: basic.kind,
|
|
28
|
-
* environment: {
|
|
29
|
-
* id: staging.id,
|
|
30
|
-
* },
|
|
31
|
-
* },
|
|
32
|
-
* });
|
|
33
|
-
* ```
|
|
34
|
-
*
|
|
35
|
-
* ### Example ksqlDB API Key
|
|
36
|
-
* ```typescript
|
|
37
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
-
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
39
|
-
*
|
|
40
|
-
* const ksqldb_api_key = new confluentcloud.ApiKey("ksqldb-api-key", {
|
|
41
|
-
* displayName: "ksqldb-api-key",
|
|
42
|
-
* description: "KsqlDB API Key that is owned by 'app-manager' service account",
|
|
43
|
-
* owner: {
|
|
44
|
-
* id: app_manager.id,
|
|
45
|
-
* apiVersion: app_manager.apiVersion,
|
|
46
|
-
* kind: app_manager.kind,
|
|
47
|
-
* },
|
|
48
|
-
* managedResource: {
|
|
49
|
-
* id: main.id,
|
|
50
|
-
* apiVersion: main.apiVersion,
|
|
51
|
-
* kind: main.kind,
|
|
52
|
-
* environment: {
|
|
53
|
-
* id: staging.id,
|
|
54
|
-
* },
|
|
55
|
-
* },
|
|
56
|
-
* });
|
|
57
|
-
* ```
|
|
58
|
-
*
|
|
59
|
-
* ### Example Schema Registry API Key
|
|
60
|
-
* ```typescript
|
|
61
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
62
|
-
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
63
|
-
*
|
|
64
|
-
* const env_manager_schema_registry_api_key = new confluentcloud.ApiKey("env-manager-schema-registry-api-key", {
|
|
65
|
-
* displayName: "env-manager-schema-registry-api-key",
|
|
66
|
-
* description: "Schema Registry API Key that is owned by 'env-manager' service account",
|
|
67
|
-
* owner: {
|
|
68
|
-
* id: env_manager.id,
|
|
69
|
-
* apiVersion: env_manager.apiVersion,
|
|
70
|
-
* kind: env_manager.kind,
|
|
71
|
-
* },
|
|
72
|
-
* managedResource: {
|
|
73
|
-
* id: essentials.id,
|
|
74
|
-
* apiVersion: essentials.apiVersion,
|
|
75
|
-
* kind: essentials.kind,
|
|
76
|
-
* environment: {
|
|
77
|
-
* id: staging.id,
|
|
78
|
-
* },
|
|
79
|
-
* },
|
|
80
|
-
* });
|
|
81
|
-
* ```
|
|
82
|
-
*
|
|
83
|
-
* ### Example Flink API Key
|
|
84
|
-
* ```typescript
|
|
85
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
86
|
-
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
87
|
-
*
|
|
88
|
-
* const env_manager_flink_api_key = new confluentcloud.ApiKey("env-manager-flink-api-key", {
|
|
89
|
-
* displayName: "env-manager-flink-api-key",
|
|
90
|
-
* description: "Flink API Key that is owned by 'env-manager' service account",
|
|
16
|
+
* const env_manager_tableflow_api_key = new confluentcloud.ApiKey("env-manager-tableflow-api-key", {
|
|
17
|
+
* displayName: "env-manager-tableflow-api-key",
|
|
18
|
+
* description: "Tableflow API Key that is owned by 'env-manager' service account",
|
|
91
19
|
* owner: {
|
|
92
20
|
* id: env_manager.id,
|
|
93
21
|
* apiVersion: env_manager.apiVersion,
|
|
94
22
|
* kind: env_manager.kind,
|
|
95
23
|
* },
|
|
96
24
|
* managedResource: {
|
|
97
|
-
* id:
|
|
98
|
-
* apiVersion:
|
|
99
|
-
* kind:
|
|
100
|
-
* environment: {
|
|
101
|
-
* id: staging.id,
|
|
102
|
-
* },
|
|
25
|
+
* id: "tableflow",
|
|
26
|
+
* apiVersion: "tableflow/v1",
|
|
27
|
+
* kind: "Tableflow",
|
|
103
28
|
* },
|
|
104
29
|
* });
|
|
105
30
|
* ```
|
|
@@ -161,7 +86,7 @@ const utilities = require("./utilities");
|
|
|
161
86
|
* $ pulumi import confluentcloud:index/apiKey:ApiKey example_kafka_api_key "env-abc123/UTT6WDRXX7FHD2GV"
|
|
162
87
|
* ```
|
|
163
88
|
*
|
|
164
|
-
* You can import a Cloud API Key by using Cloud API Key ID, for example:
|
|
89
|
+
* You can import a Cloud or Tableflow API Key by using Cloud or Tableflow API Key ID, for example:
|
|
165
90
|
*
|
|
166
91
|
* $ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
|
|
167
92
|
*
|
|
@@ -169,7 +94,7 @@ const utilities = require("./utilities");
|
|
|
169
94
|
*
|
|
170
95
|
* $ export API_KEY_SECRET="<api_key_secret>"
|
|
171
96
|
*
|
|
172
|
-
* Option #2: Cloud API Key
|
|
97
|
+
* Option #2: Cloud or Tableflow API Key
|
|
173
98
|
*
|
|
174
99
|
* ```sh
|
|
175
100
|
* $ pulumi import confluentcloud:index/apiKey:ApiKey example_cloud_api_key "4UEXOMMWIBE5KZQG"
|
package/apiKey.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"apiKey.js","sourceRoot":"","sources":["../apiKey.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"apiKey.js","sourceRoot":"","sources":["../apiKey.ts"],"names":[],"mappings":"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"}
|
package/dnsForwarder.d.ts
CHANGED
|
@@ -8,6 +8,8 @@ import * as outputs from "./types/output";
|
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
+
* ### Option #1: Create using ForwardViaIp method
|
|
12
|
+
*
|
|
11
13
|
* ```typescript
|
|
12
14
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
15
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
@@ -76,6 +78,7 @@ export declare class DnsForwarder extends pulumi.CustomResource {
|
|
|
76
78
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
77
79
|
*/
|
|
78
80
|
readonly environment: pulumi.Output<outputs.DnsForwarderEnvironment>;
|
|
81
|
+
readonly forwardViaGcpDnsZones: pulumi.Output<outputs.DnsForwarderForwardViaGcpDnsZones | undefined>;
|
|
79
82
|
readonly forwardViaIp: pulumi.Output<outputs.DnsForwarderForwardViaIp | undefined>;
|
|
80
83
|
readonly gateway: pulumi.Output<outputs.DnsForwarderGateway>;
|
|
81
84
|
/**
|
|
@@ -103,6 +106,7 @@ export interface DnsForwarderState {
|
|
|
103
106
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
104
107
|
*/
|
|
105
108
|
environment?: pulumi.Input<inputs.DnsForwarderEnvironment>;
|
|
109
|
+
forwardViaGcpDnsZones?: pulumi.Input<inputs.DnsForwarderForwardViaGcpDnsZones>;
|
|
106
110
|
forwardViaIp?: pulumi.Input<inputs.DnsForwarderForwardViaIp>;
|
|
107
111
|
gateway?: pulumi.Input<inputs.DnsForwarderGateway>;
|
|
108
112
|
}
|
|
@@ -122,6 +126,7 @@ export interface DnsForwarderArgs {
|
|
|
122
126
|
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
123
127
|
*/
|
|
124
128
|
environment: pulumi.Input<inputs.DnsForwarderEnvironment>;
|
|
129
|
+
forwardViaGcpDnsZones?: pulumi.Input<inputs.DnsForwarderForwardViaGcpDnsZones>;
|
|
125
130
|
forwardViaIp?: pulumi.Input<inputs.DnsForwarderForwardViaIp>;
|
|
126
131
|
gateway: pulumi.Input<inputs.DnsForwarderGateway>;
|
|
127
132
|
}
|
package/dnsForwarder.js
CHANGED
|
@@ -12,6 +12,8 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
15
|
+
* ### Option #1: Create using ForwardViaIp method
|
|
16
|
+
*
|
|
15
17
|
* ```typescript
|
|
16
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
19
|
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
@@ -83,6 +85,7 @@ class DnsForwarder extends pulumi.CustomResource {
|
|
|
83
85
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
84
86
|
resourceInputs["domains"] = state ? state.domains : undefined;
|
|
85
87
|
resourceInputs["environment"] = state ? state.environment : undefined;
|
|
88
|
+
resourceInputs["forwardViaGcpDnsZones"] = state ? state.forwardViaGcpDnsZones : undefined;
|
|
86
89
|
resourceInputs["forwardViaIp"] = state ? state.forwardViaIp : undefined;
|
|
87
90
|
resourceInputs["gateway"] = state ? state.gateway : undefined;
|
|
88
91
|
}
|
|
@@ -100,6 +103,7 @@ class DnsForwarder extends pulumi.CustomResource {
|
|
|
100
103
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
101
104
|
resourceInputs["domains"] = args ? args.domains : undefined;
|
|
102
105
|
resourceInputs["environment"] = args ? args.environment : undefined;
|
|
106
|
+
resourceInputs["forwardViaGcpDnsZones"] = args ? args.forwardViaGcpDnsZones : undefined;
|
|
103
107
|
resourceInputs["forwardViaIp"] = args ? args.forwardViaIp : undefined;
|
|
104
108
|
resourceInputs["gateway"] = args ? args.gateway : undefined;
|
|
105
109
|
}
|
package/dnsForwarder.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dnsForwarder.js","sourceRoot":"","sources":["../dnsForwarder.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"dnsForwarder.js","sourceRoot":"","sources":["../dnsForwarder.ts"],"names":[],"mappings":"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"}
|
package/getAccessPoint.d.ts
CHANGED
|
@@ -27,6 +27,10 @@ export declare function getAccessPoint(args: GetAccessPointArgs, opts?: pulumi.I
|
|
|
27
27
|
*/
|
|
28
28
|
export interface GetAccessPointArgs {
|
|
29
29
|
environment: inputs.GetAccessPointEnvironment;
|
|
30
|
+
/**
|
|
31
|
+
* (Optional Configuration Block) supports the following:
|
|
32
|
+
*/
|
|
33
|
+
gcpEgressPrivateServiceConnectEndpoints?: inputs.GetAccessPointGcpEgressPrivateServiceConnectEndpoint[];
|
|
30
34
|
/**
|
|
31
35
|
* The ID of the Access Point, for example, `ap-abc123`.
|
|
32
36
|
*/
|
|
@@ -57,6 +61,10 @@ export interface GetAccessPointResult {
|
|
|
57
61
|
* (Required Configuration Block) supports the following:
|
|
58
62
|
*/
|
|
59
63
|
readonly gateways: outputs.GetAccessPointGateway[];
|
|
64
|
+
/**
|
|
65
|
+
* (Optional Configuration Block) supports the following:
|
|
66
|
+
*/
|
|
67
|
+
readonly gcpEgressPrivateServiceConnectEndpoints?: outputs.GetAccessPointGcpEgressPrivateServiceConnectEndpoint[];
|
|
60
68
|
/**
|
|
61
69
|
* (Required String) The ID of the gateway to which the Access Point belongs, for example, `gw-abc123`.
|
|
62
70
|
*/
|
|
@@ -88,6 +96,10 @@ export declare function getAccessPointOutput(args: GetAccessPointOutputArgs, opt
|
|
|
88
96
|
*/
|
|
89
97
|
export interface GetAccessPointOutputArgs {
|
|
90
98
|
environment: pulumi.Input<inputs.GetAccessPointEnvironmentArgs>;
|
|
99
|
+
/**
|
|
100
|
+
* (Optional Configuration Block) supports the following:
|
|
101
|
+
*/
|
|
102
|
+
gcpEgressPrivateServiceConnectEndpoints?: pulumi.Input<pulumi.Input<inputs.GetAccessPointGcpEgressPrivateServiceConnectEndpointArgs>[]>;
|
|
91
103
|
/**
|
|
92
104
|
* The ID of the Access Point, for example, `ap-abc123`.
|
|
93
105
|
*/
|
package/getAccessPoint.js
CHANGED
|
@@ -29,6 +29,7 @@ function getAccessPoint(args, opts) {
|
|
|
29
29
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
30
|
return pulumi.runtime.invoke("confluentcloud:index/getAccessPoint:getAccessPoint", {
|
|
31
31
|
"environment": args.environment,
|
|
32
|
+
"gcpEgressPrivateServiceConnectEndpoints": args.gcpEgressPrivateServiceConnectEndpoints,
|
|
32
33
|
"id": args.id,
|
|
33
34
|
}, opts);
|
|
34
35
|
}
|
|
@@ -57,6 +58,7 @@ function getAccessPointOutput(args, opts) {
|
|
|
57
58
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
58
59
|
return pulumi.runtime.invokeOutput("confluentcloud:index/getAccessPoint:getAccessPoint", {
|
|
59
60
|
"environment": args.environment,
|
|
61
|
+
"gcpEgressPrivateServiceConnectEndpoints": args.gcpEgressPrivateServiceConnectEndpoints,
|
|
60
62
|
"id": args.id,
|
|
61
63
|
}, opts);
|
|
62
64
|
}
|
package/getAccessPoint.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAccessPoint.js","sourceRoot":"","sources":["../getAccessPoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getAccessPoint.js","sourceRoot":"","sources":["../getAccessPoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yCAAyC,EAAE,IAAI,CAAC,uCAAuC;QACvF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wCAOC;AAmDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yCAAyC,EAAE,IAAI,CAAC,uCAAuC;QACvF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC"}
|
package/getGateway.d.ts
CHANGED
|
@@ -61,6 +61,14 @@ export interface GetGatewayResult {
|
|
|
61
61
|
*/
|
|
62
62
|
readonly displayName: string;
|
|
63
63
|
readonly environment: outputs.GetGatewayEnvironment;
|
|
64
|
+
/**
|
|
65
|
+
* (Optional Configuration Block) supports the following:
|
|
66
|
+
*/
|
|
67
|
+
readonly gcpEgressPrivateServiceConnectGateways: outputs.GetGatewayGcpEgressPrivateServiceConnectGateway[];
|
|
68
|
+
/**
|
|
69
|
+
* (Optional Configuration Block) supports the following:
|
|
70
|
+
*/
|
|
71
|
+
readonly gcpPeeringGateways: outputs.GetGatewayGcpPeeringGateway[];
|
|
64
72
|
readonly id: string;
|
|
65
73
|
}
|
|
66
74
|
/**
|
package/getGateway.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGateway.js","sourceRoot":"","sources":["../getGateway.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;
|
|
1
|
+
{"version":3,"file":"getGateway.js","sourceRoot":"","sources":["../getGateway.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAoDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4CAMC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/confluentcloud",
|
|
3
|
-
"version": "2.13.0-alpha.
|
|
3
|
+
"version": "2.13.0-alpha.1737984569",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Confluent cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "confluentcloud",
|
|
27
|
-
"version": "2.13.0-alpha.
|
|
27
|
+
"version": "2.13.0-alpha.1737984569"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/peering.d.ts
CHANGED
|
@@ -71,6 +71,51 @@ import * as outputs from "./types/output";
|
|
|
71
71
|
* });
|
|
72
72
|
* ```
|
|
73
73
|
*
|
|
74
|
+
* ### Example Peering on GCP
|
|
75
|
+
*
|
|
76
|
+
* ```typescript
|
|
77
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
78
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
79
|
+
*
|
|
80
|
+
* const development = new confluentcloud.Environment("development", {displayName: "Development"});
|
|
81
|
+
* const gcp_peering = new confluentcloud.Network("gcp-peering", {
|
|
82
|
+
* displayName: "GCP Peering Network",
|
|
83
|
+
* cloud: "GCP",
|
|
84
|
+
* region: "us-west4",
|
|
85
|
+
* cidr: "10.10.0.0/16",
|
|
86
|
+
* connectionTypes: ["PEERING"],
|
|
87
|
+
* environment: {
|
|
88
|
+
* id: development.id,
|
|
89
|
+
* },
|
|
90
|
+
* });
|
|
91
|
+
* const gcp = new confluentcloud.Peering("gcp", {
|
|
92
|
+
* displayName: "GCP Peering",
|
|
93
|
+
* gcp: {
|
|
94
|
+
* project: "temp-gear-123456",
|
|
95
|
+
* vpcNetwork: "customer-test-vpc-network",
|
|
96
|
+
* },
|
|
97
|
+
* environment: {
|
|
98
|
+
* id: development.id,
|
|
99
|
+
* },
|
|
100
|
+
* network: {
|
|
101
|
+
* id: gcp_peering.id,
|
|
102
|
+
* },
|
|
103
|
+
* });
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
106
|
+
* ## Getting Started
|
|
107
|
+
*
|
|
108
|
+
* The following end-to-end examples might help to get started with `confluentcloud.Peering` resource:
|
|
109
|
+
* * `dedicated-vnet-peering-azure-kafka-acls`: _Dedicated_ Kafka cluster on Azure that is accessible via VPC Peering connections with authorization using ACLs
|
|
110
|
+
* * `dedicated-vnet-peering-azure-kafka-rbac`: _Dedicated_ Kafka cluster on Azure that is accessible via VPC Peering connections with authorization using RBAC
|
|
111
|
+
* * `dedicated-vpc-peering-aws-kafka-acls`: _Dedicated_ Kafka cluster on AWS that is accessible via VPC Peering connections with authorization using ACLs
|
|
112
|
+
* * `dedicated-vpc-peering-aws-kafka-rbac`: _Dedicated_ Kafka cluster on AWS that is accessible via VPC Peering connections with authorization using RBAC
|
|
113
|
+
* * `dedicated-vpc-peering-gcp-kafka-acls`: _Dedicated_ Kafka cluster on GCP that is accessible via VPC Peering connections with authorization using ACLs
|
|
114
|
+
* * `dedicated-vpc-peering-gcp-kafka-rbac`: _Dedicated_ Kafka cluster on GCP that is accessible via VPC Peering connections with authorization using RBAC
|
|
115
|
+
* * `dedicated-transit-gateway-attachment-aws-kafka-acls`: _Dedicated_ Kafka cluster on AWS that is accessible via Transit Gateway Endpoint with authorization using ACLs
|
|
116
|
+
* * `dedicated-transit-gateway-attachment-aws-kafka-rbac`: _Dedicated_ Kafka cluster on AWS that is accessible via Transit Gateway Endpoint with authorization using RBAC
|
|
117
|
+
* * `enterprise-privatelinkattachment-aws-kafka-acls`: _Enterprise_ Kafka cluster on AWS that is accessible via PrivateLink connections with authorization using ACLs
|
|
118
|
+
*
|
|
74
119
|
* ## Import
|
|
75
120
|
*
|
|
76
121
|
* You can import a Peering by using Environment ID and Peering ID, in the format `<Environment ID>/<Peering ID>`. The following example shows how to import a Peering:
|
package/peering.js
CHANGED
|
@@ -75,6 +75,51 @@ const utilities = require("./utilities");
|
|
|
75
75
|
* });
|
|
76
76
|
* ```
|
|
77
77
|
*
|
|
78
|
+
* ### Example Peering on GCP
|
|
79
|
+
*
|
|
80
|
+
* ```typescript
|
|
81
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
82
|
+
* import * as confluentcloud from "@pulumi/confluentcloud";
|
|
83
|
+
*
|
|
84
|
+
* const development = new confluentcloud.Environment("development", {displayName: "Development"});
|
|
85
|
+
* const gcp_peering = new confluentcloud.Network("gcp-peering", {
|
|
86
|
+
* displayName: "GCP Peering Network",
|
|
87
|
+
* cloud: "GCP",
|
|
88
|
+
* region: "us-west4",
|
|
89
|
+
* cidr: "10.10.0.0/16",
|
|
90
|
+
* connectionTypes: ["PEERING"],
|
|
91
|
+
* environment: {
|
|
92
|
+
* id: development.id,
|
|
93
|
+
* },
|
|
94
|
+
* });
|
|
95
|
+
* const gcp = new confluentcloud.Peering("gcp", {
|
|
96
|
+
* displayName: "GCP Peering",
|
|
97
|
+
* gcp: {
|
|
98
|
+
* project: "temp-gear-123456",
|
|
99
|
+
* vpcNetwork: "customer-test-vpc-network",
|
|
100
|
+
* },
|
|
101
|
+
* environment: {
|
|
102
|
+
* id: development.id,
|
|
103
|
+
* },
|
|
104
|
+
* network: {
|
|
105
|
+
* id: gcp_peering.id,
|
|
106
|
+
* },
|
|
107
|
+
* });
|
|
108
|
+
* ```
|
|
109
|
+
*
|
|
110
|
+
* ## Getting Started
|
|
111
|
+
*
|
|
112
|
+
* The following end-to-end examples might help to get started with `confluentcloud.Peering` resource:
|
|
113
|
+
* * `dedicated-vnet-peering-azure-kafka-acls`: _Dedicated_ Kafka cluster on Azure that is accessible via VPC Peering connections with authorization using ACLs
|
|
114
|
+
* * `dedicated-vnet-peering-azure-kafka-rbac`: _Dedicated_ Kafka cluster on Azure that is accessible via VPC Peering connections with authorization using RBAC
|
|
115
|
+
* * `dedicated-vpc-peering-aws-kafka-acls`: _Dedicated_ Kafka cluster on AWS that is accessible via VPC Peering connections with authorization using ACLs
|
|
116
|
+
* * `dedicated-vpc-peering-aws-kafka-rbac`: _Dedicated_ Kafka cluster on AWS that is accessible via VPC Peering connections with authorization using RBAC
|
|
117
|
+
* * `dedicated-vpc-peering-gcp-kafka-acls`: _Dedicated_ Kafka cluster on GCP that is accessible via VPC Peering connections with authorization using ACLs
|
|
118
|
+
* * `dedicated-vpc-peering-gcp-kafka-rbac`: _Dedicated_ Kafka cluster on GCP that is accessible via VPC Peering connections with authorization using RBAC
|
|
119
|
+
* * `dedicated-transit-gateway-attachment-aws-kafka-acls`: _Dedicated_ Kafka cluster on AWS that is accessible via Transit Gateway Endpoint with authorization using ACLs
|
|
120
|
+
* * `dedicated-transit-gateway-attachment-aws-kafka-rbac`: _Dedicated_ Kafka cluster on AWS that is accessible via Transit Gateway Endpoint with authorization using RBAC
|
|
121
|
+
* * `enterprise-privatelinkattachment-aws-kafka-acls`: _Enterprise_ Kafka cluster on AWS that is accessible via PrivateLink connections with authorization using ACLs
|
|
122
|
+
*
|
|
78
123
|
* ## Import
|
|
79
124
|
*
|
|
80
125
|
* You can import a Peering by using Environment ID and Peering ID, in the format `<Environment ID>/<Peering ID>`. The following example shows how to import a Peering:
|
package/peering.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"peering.js","sourceRoot":"","sources":["../peering.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"peering.js","sourceRoot":"","sources":["../peering.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -66,15 +66,30 @@ export interface AccessPointGateway {
|
|
|
66
66
|
*/
|
|
67
67
|
id: pulumi.Input<string>;
|
|
68
68
|
}
|
|
69
|
+
export interface AccessPointGcpEgressPrivateServiceConnectEndpoint {
|
|
70
|
+
/**
|
|
71
|
+
* (Required String) Connection ID of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
72
|
+
*/
|
|
73
|
+
privateServiceConnectEndpointConnectionId?: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* (Required String) IP address of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
76
|
+
*/
|
|
77
|
+
privateServiceConnectEndpointIpAddress?: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* (Required String) Name of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
80
|
+
*/
|
|
81
|
+
privateServiceConnectEndpointName?: pulumi.Input<string>;
|
|
82
|
+
/**
|
|
83
|
+
* URI of the service attachment for the published service that the Private Service Connect Endpoint connects to, or "ALL_GOOGLE_APIS" or "all-google-apis" for global Google APIs.
|
|
84
|
+
*/
|
|
85
|
+
privateServiceConnectEndpointTarget: pulumi.Input<string>;
|
|
86
|
+
}
|
|
69
87
|
export interface ApiKeyManagedResource {
|
|
70
88
|
/**
|
|
71
89
|
* The API group and version of the managed resource that the API Key associated with, for example, `cmk/v2`.
|
|
72
90
|
*/
|
|
73
91
|
apiVersion: pulumi.Input<string>;
|
|
74
|
-
|
|
75
|
-
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
76
|
-
*/
|
|
77
|
-
environment: pulumi.Input<inputs.ApiKeyManagedResourceEnvironment>;
|
|
92
|
+
environment?: pulumi.Input<inputs.ApiKeyManagedResourceEnvironment>;
|
|
78
93
|
/**
|
|
79
94
|
* The ID of the managed resource that the API Key associated with, for example, `lkc-abc123`.
|
|
80
95
|
*/
|
|
@@ -356,6 +371,18 @@ export interface DnsForwarderEnvironment {
|
|
|
356
371
|
*/
|
|
357
372
|
id: pulumi.Input<string>;
|
|
358
373
|
}
|
|
374
|
+
export interface DnsForwarderForwardViaGcpDnsZones {
|
|
375
|
+
/**
|
|
376
|
+
* List of Maps which contains the domain to zone and project mapping.
|
|
377
|
+
*
|
|
378
|
+
* > **Note:** The `forwardViaGcpZones` and `forwardViaIp` blocks are mutually exclusive, and one of them must be provided.
|
|
379
|
+
*
|
|
380
|
+
* > **Note:** The zone and project must be specified in the correct order, separated by a comma, to ensure accurate `domainMappings`.
|
|
381
|
+
*/
|
|
382
|
+
domainMappings?: pulumi.Input<{
|
|
383
|
+
[key: string]: pulumi.Input<string>;
|
|
384
|
+
}>;
|
|
385
|
+
}
|
|
359
386
|
export interface DnsForwarderForwardViaIp {
|
|
360
387
|
/**
|
|
361
388
|
* List of IP addresses of the DNS server.
|
|
@@ -500,6 +527,42 @@ export interface GetAccessPointEnvironmentArgs {
|
|
|
500
527
|
*/
|
|
501
528
|
id: pulumi.Input<string>;
|
|
502
529
|
}
|
|
530
|
+
export interface GetAccessPointGcpEgressPrivateServiceConnectEndpoint {
|
|
531
|
+
/**
|
|
532
|
+
* (Required String) Connection ID of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
533
|
+
*/
|
|
534
|
+
privateServiceConnectEndpointConnectionId?: string;
|
|
535
|
+
/**
|
|
536
|
+
* (Required String) IP address of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
537
|
+
*/
|
|
538
|
+
privateServiceConnectEndpointIpAddress?: string;
|
|
539
|
+
/**
|
|
540
|
+
* (Required String) Name of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
541
|
+
*/
|
|
542
|
+
privateServiceConnectEndpointName?: string;
|
|
543
|
+
/**
|
|
544
|
+
* (Required String) URI of the service attachment for the published service that the Private Service Connect Endpoint connects to, or "ALL_GOOGLE_APIS" or "all-google-apis" for global Google APIs.
|
|
545
|
+
*/
|
|
546
|
+
privateServiceConnectEndpointTarget?: string;
|
|
547
|
+
}
|
|
548
|
+
export interface GetAccessPointGcpEgressPrivateServiceConnectEndpointArgs {
|
|
549
|
+
/**
|
|
550
|
+
* (Required String) Connection ID of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
551
|
+
*/
|
|
552
|
+
privateServiceConnectEndpointConnectionId?: pulumi.Input<string>;
|
|
553
|
+
/**
|
|
554
|
+
* (Required String) IP address of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
555
|
+
*/
|
|
556
|
+
privateServiceConnectEndpointIpAddress?: pulumi.Input<string>;
|
|
557
|
+
/**
|
|
558
|
+
* (Required String) Name of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
559
|
+
*/
|
|
560
|
+
privateServiceConnectEndpointName?: pulumi.Input<string>;
|
|
561
|
+
/**
|
|
562
|
+
* (Required String) URI of the service attachment for the published service that the Private Service Connect Endpoint connects to, or "ALL_GOOGLE_APIS" or "all-google-apis" for global Google APIs.
|
|
563
|
+
*/
|
|
564
|
+
privateServiceConnectEndpointTarget?: pulumi.Input<string>;
|
|
565
|
+
}
|
|
503
566
|
export interface GetBusinessMetadataBindingCredentials {
|
|
504
567
|
/**
|
|
505
568
|
* The Schema Registry API Key.
|
package/types/output.d.ts
CHANGED
|
@@ -65,15 +65,30 @@ export interface AccessPointGateway {
|
|
|
65
65
|
*/
|
|
66
66
|
id: string;
|
|
67
67
|
}
|
|
68
|
+
export interface AccessPointGcpEgressPrivateServiceConnectEndpoint {
|
|
69
|
+
/**
|
|
70
|
+
* (Required String) Connection ID of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
71
|
+
*/
|
|
72
|
+
privateServiceConnectEndpointConnectionId: string;
|
|
73
|
+
/**
|
|
74
|
+
* (Required String) IP address of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
75
|
+
*/
|
|
76
|
+
privateServiceConnectEndpointIpAddress: string;
|
|
77
|
+
/**
|
|
78
|
+
* (Required String) Name of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
79
|
+
*/
|
|
80
|
+
privateServiceConnectEndpointName: string;
|
|
81
|
+
/**
|
|
82
|
+
* URI of the service attachment for the published service that the Private Service Connect Endpoint connects to, or "ALL_GOOGLE_APIS" or "all-google-apis" for global Google APIs.
|
|
83
|
+
*/
|
|
84
|
+
privateServiceConnectEndpointTarget: string;
|
|
85
|
+
}
|
|
68
86
|
export interface ApiKeyManagedResource {
|
|
69
87
|
/**
|
|
70
88
|
* The API group and version of the managed resource that the API Key associated with, for example, `cmk/v2`.
|
|
71
89
|
*/
|
|
72
90
|
apiVersion: string;
|
|
73
|
-
|
|
74
|
-
* Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
|
|
75
|
-
*/
|
|
76
|
-
environment: outputs.ApiKeyManagedResourceEnvironment;
|
|
91
|
+
environment?: outputs.ApiKeyManagedResourceEnvironment;
|
|
77
92
|
/**
|
|
78
93
|
* The ID of the managed resource that the API Key associated with, for example, `lkc-abc123`.
|
|
79
94
|
*/
|
|
@@ -355,6 +370,18 @@ export interface DnsForwarderEnvironment {
|
|
|
355
370
|
*/
|
|
356
371
|
id: string;
|
|
357
372
|
}
|
|
373
|
+
export interface DnsForwarderForwardViaGcpDnsZones {
|
|
374
|
+
/**
|
|
375
|
+
* List of Maps which contains the domain to zone and project mapping.
|
|
376
|
+
*
|
|
377
|
+
* > **Note:** The `forwardViaGcpZones` and `forwardViaIp` blocks are mutually exclusive, and one of them must be provided.
|
|
378
|
+
*
|
|
379
|
+
* > **Note:** The zone and project must be specified in the correct order, separated by a comma, to ensure accurate `domainMappings`.
|
|
380
|
+
*/
|
|
381
|
+
domainMappings: {
|
|
382
|
+
[key: string]: string;
|
|
383
|
+
};
|
|
384
|
+
}
|
|
358
385
|
export interface DnsForwarderForwardViaIp {
|
|
359
386
|
/**
|
|
360
387
|
* List of IP addresses of the DNS server.
|
|
@@ -553,6 +580,24 @@ export interface GetAccessPointGateway {
|
|
|
553
580
|
*/
|
|
554
581
|
id: string;
|
|
555
582
|
}
|
|
583
|
+
export interface GetAccessPointGcpEgressPrivateServiceConnectEndpoint {
|
|
584
|
+
/**
|
|
585
|
+
* (Required String) Connection ID of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
586
|
+
*/
|
|
587
|
+
privateServiceConnectEndpointConnectionId: string;
|
|
588
|
+
/**
|
|
589
|
+
* (Required String) IP address of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
590
|
+
*/
|
|
591
|
+
privateServiceConnectEndpointIpAddress: string;
|
|
592
|
+
/**
|
|
593
|
+
* (Required String) Name of the Private Service Connect Endpoint that is connected to the endpoint target.
|
|
594
|
+
*/
|
|
595
|
+
privateServiceConnectEndpointName: string;
|
|
596
|
+
/**
|
|
597
|
+
* (Required String) URI of the service attachment for the published service that the Private Service Connect Endpoint connects to, or "ALL_GOOGLE_APIS" or "all-google-apis" for global Google APIs.
|
|
598
|
+
*/
|
|
599
|
+
privateServiceConnectEndpointTarget: string;
|
|
600
|
+
}
|
|
556
601
|
export interface GetBusinessMetadataAttributeDefinition {
|
|
557
602
|
/**
|
|
558
603
|
* (Optional String) The default value of this attribute.
|
|
@@ -713,13 +758,13 @@ export interface GetGatewayAwsEgressPrivateLinkGateway {
|
|
|
713
758
|
*/
|
|
714
759
|
principalArn: string;
|
|
715
760
|
/**
|
|
716
|
-
* (Required String)
|
|
761
|
+
* (Required String) GCP region of the Peering Gateway.
|
|
717
762
|
*/
|
|
718
763
|
region: string;
|
|
719
764
|
}
|
|
720
765
|
export interface GetGatewayAwsPeeringGateway {
|
|
721
766
|
/**
|
|
722
|
-
* (Required String)
|
|
767
|
+
* (Required String) GCP region of the Peering Gateway.
|
|
723
768
|
*/
|
|
724
769
|
region: string;
|
|
725
770
|
}
|
|
@@ -729,7 +774,7 @@ export interface GetGatewayAwsPrivateNetworkInterfaceGateway {
|
|
|
729
774
|
*/
|
|
730
775
|
account: string;
|
|
731
776
|
/**
|
|
732
|
-
* (Required String)
|
|
777
|
+
* (Required String) GCP region of the Peering Gateway.
|
|
733
778
|
*/
|
|
734
779
|
region: string;
|
|
735
780
|
/**
|
|
@@ -739,7 +784,7 @@ export interface GetGatewayAwsPrivateNetworkInterfaceGateway {
|
|
|
739
784
|
}
|
|
740
785
|
export interface GetGatewayAzureEgressPrivateLinkGateway {
|
|
741
786
|
/**
|
|
742
|
-
* (Required String)
|
|
787
|
+
* (Required String) GCP region of the Peering Gateway.
|
|
743
788
|
*/
|
|
744
789
|
region: string;
|
|
745
790
|
/**
|
|
@@ -749,7 +794,7 @@ export interface GetGatewayAzureEgressPrivateLinkGateway {
|
|
|
749
794
|
}
|
|
750
795
|
export interface GetGatewayAzurePeeringGateway {
|
|
751
796
|
/**
|
|
752
|
-
* (Required String)
|
|
797
|
+
* (Required String) GCP region of the Peering Gateway.
|
|
753
798
|
*/
|
|
754
799
|
region: string;
|
|
755
800
|
}
|
|
@@ -759,6 +804,26 @@ export interface GetGatewayEnvironment {
|
|
|
759
804
|
*/
|
|
760
805
|
id: string;
|
|
761
806
|
}
|
|
807
|
+
export interface GetGatewayGcpEgressPrivateServiceConnectGateway {
|
|
808
|
+
/**
|
|
809
|
+
* (Required String) The GCP project used by the GCP Private Service Connect Gateway.
|
|
810
|
+
*/
|
|
811
|
+
project: string;
|
|
812
|
+
/**
|
|
813
|
+
* (Required String) GCP region of the Peering Gateway.
|
|
814
|
+
*/
|
|
815
|
+
region: string;
|
|
816
|
+
}
|
|
817
|
+
export interface GetGatewayGcpPeeringGateway {
|
|
818
|
+
/**
|
|
819
|
+
* (Required String) The IAM principal used by the GCP Peering Gateway.
|
|
820
|
+
*/
|
|
821
|
+
iamPrincipal: string;
|
|
822
|
+
/**
|
|
823
|
+
* (Required String) GCP region of the Peering Gateway.
|
|
824
|
+
*/
|
|
825
|
+
region: string;
|
|
826
|
+
}
|
|
762
827
|
export interface GetIdentityPoolIdentityProvider {
|
|
763
828
|
/**
|
|
764
829
|
* The ID of the Identity Provider associated with the Identity Pool, for example, `op-abc123`.
|