@pulumi/mongodbatlas 4.12.0-alpha.1784012018 → 4.12.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/advancedCluster.d.ts +40 -3
- package/advancedCluster.d.ts.map +1 -1
- package/advancedCluster.js +34 -0
- package/advancedCluster.js.map +1 -1
- package/getProject.d.ts +12 -0
- package/getProject.d.ts.map +1 -1
- package/getProject.js.map +1 -1
- package/getStreamConnectionFailover.d.ts +136 -0
- package/getStreamConnectionFailover.d.ts.map +1 -0
- package/getStreamConnectionFailover.js +93 -0
- package/getStreamConnectionFailover.js.map +1 -0
- package/getStreamConnectionFailovers.d.ts +104 -0
- package/getStreamConnectionFailovers.d.ts.map +1 -0
- package/getStreamConnectionFailovers.js +89 -0
- package/getStreamConnectionFailovers.js.map +1 -0
- package/getStreamProcessor.d.ts +4 -0
- package/getStreamProcessor.d.ts.map +1 -1
- package/getStreamProcessor.js.map +1 -1
- package/getStreamWorkspace.d.ts +1 -0
- package/getStreamWorkspace.d.ts.map +1 -1
- package/getStreamWorkspace.js.map +1 -1
- package/index.d.ts +9 -0
- package/index.d.ts.map +1 -1
- package/index.js +13 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/project.d.ts +37 -1
- package/project.d.ts.map +1 -1
- package/project.js +7 -1
- package/project.js.map +1 -1
- package/streamConnectionFailover.d.ts +306 -0
- package/streamConnectionFailover.d.ts.map +1 -0
- package/streamConnectionFailover.js +193 -0
- package/streamConnectionFailover.js.map +1 -0
- package/streamProcessor.d.ts +12 -0
- package/streamProcessor.d.ts.map +1 -1
- package/streamProcessor.js +2 -0
- package/streamProcessor.js.map +1 -1
- package/streamWorkspace.d.ts +41 -3
- package/streamWorkspace.d.ts.map +1 -1
- package/streamWorkspace.js +22 -0
- package/streamWorkspace.js.map +1 -1
- package/types/input.d.ts +120 -2
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +400 -4
- package/types/output.d.ts.map +1 -1
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* `mongodbatlas.StreamConnectionFailover` provides a Stream Failover Connection resource. It lets you create, update, delete, and import a failover (regional-alternate) connection for an existing stream connection.
|
|
6
|
+
*
|
|
7
|
+
* A failover connection shares its primary connection's `connectionName` and is created for one of the workspace's failover regions (configured via the `failoverRegions` argument of `mongodbatlas.StreamWorkspace`). It is uniquely identified by its computed `failoverConnectionId` and carries its own regional connection configuration in the `region` attribute. Only `Kafka` and `Cluster` connection types support failover.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ### S
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
16
|
+
*
|
|
17
|
+
* const example = new mongodbatlas.StreamWorkspace("example", {
|
|
18
|
+
* projectId: projectId,
|
|
19
|
+
* workspaceName: "workspace-with-failover",
|
|
20
|
+
* dataProcessRegion: {
|
|
21
|
+
* region: "VIRGINIA_USA",
|
|
22
|
+
* cloudProvider: "AWS",
|
|
23
|
+
* },
|
|
24
|
+
* failoverRegions: [{
|
|
25
|
+
* region: "DUBLIN_IRL",
|
|
26
|
+
* cloudProvider: "AWS",
|
|
27
|
+
* }],
|
|
28
|
+
* streamConfig: {
|
|
29
|
+
* tier: "SP10",
|
|
30
|
+
* },
|
|
31
|
+
* });
|
|
32
|
+
* // The primary (default-region) stream connection.
|
|
33
|
+
* const exampleStreamConnection = new mongodbatlas.StreamConnection("example", {
|
|
34
|
+
* projectId: projectId,
|
|
35
|
+
* workspaceName: example.workspaceName,
|
|
36
|
+
* connectionName: "KafkaConnection",
|
|
37
|
+
* type: "Kafka",
|
|
38
|
+
* bootstrapServers: bootstrapServers,
|
|
39
|
+
* authentication: {
|
|
40
|
+
* mechanism: "PLAIN",
|
|
41
|
+
* username: kafkaUsername,
|
|
42
|
+
* password: kafkaPassword,
|
|
43
|
+
* },
|
|
44
|
+
* security: {
|
|
45
|
+
* protocol: "SASL_SSL",
|
|
46
|
+
* },
|
|
47
|
+
* });
|
|
48
|
+
* // A failover connection shares the primary connection's name and is created for one of the
|
|
49
|
+
* // workspace's failover regions, with its own regional configuration.
|
|
50
|
+
* const exampleStreamConnectionFailover = new mongodbatlas.StreamConnectionFailover("example", {
|
|
51
|
+
* projectId: projectId,
|
|
52
|
+
* workspaceName: example.workspaceName,
|
|
53
|
+
* connectionName: exampleStreamConnection.connectionName,
|
|
54
|
+
* region: "DUBLIN_IRL",
|
|
55
|
+
* type: "Kafka",
|
|
56
|
+
* bootstrapServers: failoverBootstrapServers,
|
|
57
|
+
* authentication: {
|
|
58
|
+
* mechanism: "PLAIN",
|
|
59
|
+
* username: failoverKafkaUsername,
|
|
60
|
+
* password: failoverKafkaPassword,
|
|
61
|
+
* },
|
|
62
|
+
* security: {
|
|
63
|
+
* protocol: "SASL_SSL",
|
|
64
|
+
* },
|
|
65
|
+
* });
|
|
66
|
+
* ```
|
|
67
|
+
*
|
|
68
|
+
* ## Import
|
|
69
|
+
*
|
|
70
|
+
* Failover connection resource can be imported using the project ID, workspace name, connection name, and failover connection ID, separated by slashes, e.g.
|
|
71
|
+
*
|
|
72
|
+
* ```sh
|
|
73
|
+
* $ pulumi import mongodbatlas:index/streamConnectionFailover:StreamConnectionFailover test "6117ac2fe2a3d04ed27a9871/yourWorkspaceName/KafkaConnection/671f9c2fe2a3d04ed27a9880"
|
|
74
|
+
* ```
|
|
75
|
+
*
|
|
76
|
+
* For more information see: [MongoDB Atlas API - Streams Failover Connection](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/group/endpoint-streams) Documentation.
|
|
77
|
+
*/
|
|
78
|
+
export declare class StreamConnectionFailover extends pulumi.CustomResource {
|
|
79
|
+
/**
|
|
80
|
+
* Get an existing StreamConnectionFailover resource's state with the given name, ID, and optional extra
|
|
81
|
+
* properties used to qualify the lookup.
|
|
82
|
+
*
|
|
83
|
+
* @param name The _unique_ name of the resulting resource.
|
|
84
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
85
|
+
* @param state Any extra arguments used during the lookup.
|
|
86
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
87
|
+
*/
|
|
88
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: StreamConnectionFailoverState, opts?: pulumi.CustomResourceOptions): StreamConnectionFailover;
|
|
89
|
+
/**
|
|
90
|
+
* Returns true if the given object is an instance of StreamConnectionFailover. This is designed to work even
|
|
91
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
92
|
+
*/
|
|
93
|
+
static isInstance(obj: any): obj is StreamConnectionFailover;
|
|
94
|
+
/**
|
|
95
|
+
* Optional for type: Kafka. User credentials required to connect to a Kafka Cluster. Includes the authentication type, as well as the parameters for that authentication mode.
|
|
96
|
+
*/
|
|
97
|
+
readonly authentication: pulumi.Output<outputs.StreamConnectionFailoverAuthentication | undefined>;
|
|
98
|
+
/**
|
|
99
|
+
* Optional for type: Kafka. Comma separated list of server addresses.
|
|
100
|
+
*/
|
|
101
|
+
readonly bootstrapServers: pulumi.Output<string | undefined>;
|
|
102
|
+
/**
|
|
103
|
+
* Optional for type: Cluster. Name of the cluster configured for this connection.
|
|
104
|
+
*/
|
|
105
|
+
readonly clusterName: pulumi.Output<string | undefined>;
|
|
106
|
+
/**
|
|
107
|
+
* Optional for type: Cluster. Unique 24-hexadecimal digit string that identifies the project that contains the configured cluster. Required if the ID does not match the project containing the streams workspace. You must first enable the organization setting.
|
|
108
|
+
*/
|
|
109
|
+
readonly clusterProjectId: pulumi.Output<string | undefined>;
|
|
110
|
+
/**
|
|
111
|
+
* Optional for type: Kafka. A map of Kafka key-value pairs for optional configuration. This is a flat object, and keys can have '.' characters.
|
|
112
|
+
*/
|
|
113
|
+
readonly config: pulumi.Output<{
|
|
114
|
+
[key: string]: string;
|
|
115
|
+
} | undefined>;
|
|
116
|
+
/**
|
|
117
|
+
* Label that identifies the stream connection name.
|
|
118
|
+
*/
|
|
119
|
+
readonly connectionName: pulumi.Output<string>;
|
|
120
|
+
/**
|
|
121
|
+
* Optional for type: Cluster. The name of a Built in or Custom DB Role to connect to an Atlas Cluster.
|
|
122
|
+
*/
|
|
123
|
+
readonly dbRoleToExecute: pulumi.Output<outputs.StreamConnectionFailoverDbRoleToExecute | undefined>;
|
|
124
|
+
/**
|
|
125
|
+
* Indicates whether to delete the resource being created if a timeout is reached when waiting for completion. When set to `true` and timeout occurs, it triggers the deletion and returns immediately without waiting for deletion to complete. When set to `false`, the timeout will not trigger resource deletion. If you suspect a transient error when the value is `true`, wait before retrying to allow resource deletion to finish. Default is `true`.
|
|
126
|
+
*/
|
|
127
|
+
readonly deleteOnCreateTimeout: pulumi.Output<boolean>;
|
|
128
|
+
/**
|
|
129
|
+
* Unique identifier of the connection.
|
|
130
|
+
*/
|
|
131
|
+
readonly failoverConnectionId: pulumi.Output<string>;
|
|
132
|
+
/**
|
|
133
|
+
* Optional for type: Kafka. Networking configuration for Streams connections.
|
|
134
|
+
*/
|
|
135
|
+
readonly networking: pulumi.Output<outputs.StreamConnectionFailoverNetworking>;
|
|
136
|
+
/**
|
|
137
|
+
* Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
|
|
138
|
+
*/
|
|
139
|
+
readonly projectId: pulumi.Output<string>;
|
|
140
|
+
/**
|
|
141
|
+
* The connection's region.
|
|
142
|
+
*/
|
|
143
|
+
readonly region: pulumi.Output<string>;
|
|
144
|
+
/**
|
|
145
|
+
* Optional for type: Kafka. Properties for the secure transport connection to Kafka. For SSL, this can include the trusted certificate to use.
|
|
146
|
+
*/
|
|
147
|
+
readonly security: pulumi.Output<outputs.StreamConnectionFailoverSecurity | undefined>;
|
|
148
|
+
/**
|
|
149
|
+
* The state of the connection.
|
|
150
|
+
*/
|
|
151
|
+
readonly state: pulumi.Output<string>;
|
|
152
|
+
readonly timeouts: pulumi.Output<outputs.StreamConnectionFailoverTimeouts | undefined>;
|
|
153
|
+
/**
|
|
154
|
+
* Type of the connection.
|
|
155
|
+
*/
|
|
156
|
+
readonly type: pulumi.Output<string>;
|
|
157
|
+
/**
|
|
158
|
+
* Label that identifies the stream workspace.
|
|
159
|
+
*/
|
|
160
|
+
readonly workspaceName: pulumi.Output<string>;
|
|
161
|
+
/**
|
|
162
|
+
* Create a StreamConnectionFailover resource with the given unique name, arguments, and options.
|
|
163
|
+
*
|
|
164
|
+
* @param name The _unique_ name of the resource.
|
|
165
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
166
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
167
|
+
*/
|
|
168
|
+
constructor(name: string, args: StreamConnectionFailoverArgs, opts?: pulumi.CustomResourceOptions);
|
|
169
|
+
}
|
|
170
|
+
/**
|
|
171
|
+
* Input properties used for looking up and filtering StreamConnectionFailover resources.
|
|
172
|
+
*/
|
|
173
|
+
export interface StreamConnectionFailoverState {
|
|
174
|
+
/**
|
|
175
|
+
* Optional for type: Kafka. User credentials required to connect to a Kafka Cluster. Includes the authentication type, as well as the parameters for that authentication mode.
|
|
176
|
+
*/
|
|
177
|
+
authentication?: pulumi.Input<inputs.StreamConnectionFailoverAuthentication | undefined>;
|
|
178
|
+
/**
|
|
179
|
+
* Optional for type: Kafka. Comma separated list of server addresses.
|
|
180
|
+
*/
|
|
181
|
+
bootstrapServers?: pulumi.Input<string | undefined>;
|
|
182
|
+
/**
|
|
183
|
+
* Optional for type: Cluster. Name of the cluster configured for this connection.
|
|
184
|
+
*/
|
|
185
|
+
clusterName?: pulumi.Input<string | undefined>;
|
|
186
|
+
/**
|
|
187
|
+
* Optional for type: Cluster. Unique 24-hexadecimal digit string that identifies the project that contains the configured cluster. Required if the ID does not match the project containing the streams workspace. You must first enable the organization setting.
|
|
188
|
+
*/
|
|
189
|
+
clusterProjectId?: pulumi.Input<string | undefined>;
|
|
190
|
+
/**
|
|
191
|
+
* Optional for type: Kafka. A map of Kafka key-value pairs for optional configuration. This is a flat object, and keys can have '.' characters.
|
|
192
|
+
*/
|
|
193
|
+
config?: pulumi.Input<{
|
|
194
|
+
[key: string]: pulumi.Input<string>;
|
|
195
|
+
} | undefined>;
|
|
196
|
+
/**
|
|
197
|
+
* Label that identifies the stream connection name.
|
|
198
|
+
*/
|
|
199
|
+
connectionName?: pulumi.Input<string | undefined>;
|
|
200
|
+
/**
|
|
201
|
+
* Optional for type: Cluster. The name of a Built in or Custom DB Role to connect to an Atlas Cluster.
|
|
202
|
+
*/
|
|
203
|
+
dbRoleToExecute?: pulumi.Input<inputs.StreamConnectionFailoverDbRoleToExecute | undefined>;
|
|
204
|
+
/**
|
|
205
|
+
* Indicates whether to delete the resource being created if a timeout is reached when waiting for completion. When set to `true` and timeout occurs, it triggers the deletion and returns immediately without waiting for deletion to complete. When set to `false`, the timeout will not trigger resource deletion. If you suspect a transient error when the value is `true`, wait before retrying to allow resource deletion to finish. Default is `true`.
|
|
206
|
+
*/
|
|
207
|
+
deleteOnCreateTimeout?: pulumi.Input<boolean | undefined>;
|
|
208
|
+
/**
|
|
209
|
+
* Unique identifier of the connection.
|
|
210
|
+
*/
|
|
211
|
+
failoverConnectionId?: pulumi.Input<string | undefined>;
|
|
212
|
+
/**
|
|
213
|
+
* Optional for type: Kafka. Networking configuration for Streams connections.
|
|
214
|
+
*/
|
|
215
|
+
networking?: pulumi.Input<inputs.StreamConnectionFailoverNetworking | undefined>;
|
|
216
|
+
/**
|
|
217
|
+
* Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
|
|
218
|
+
*/
|
|
219
|
+
projectId?: pulumi.Input<string | undefined>;
|
|
220
|
+
/**
|
|
221
|
+
* The connection's region.
|
|
222
|
+
*/
|
|
223
|
+
region?: pulumi.Input<string | undefined>;
|
|
224
|
+
/**
|
|
225
|
+
* Optional for type: Kafka. Properties for the secure transport connection to Kafka. For SSL, this can include the trusted certificate to use.
|
|
226
|
+
*/
|
|
227
|
+
security?: pulumi.Input<inputs.StreamConnectionFailoverSecurity | undefined>;
|
|
228
|
+
/**
|
|
229
|
+
* The state of the connection.
|
|
230
|
+
*/
|
|
231
|
+
state?: pulumi.Input<string | undefined>;
|
|
232
|
+
timeouts?: pulumi.Input<inputs.StreamConnectionFailoverTimeouts | undefined>;
|
|
233
|
+
/**
|
|
234
|
+
* Type of the connection.
|
|
235
|
+
*/
|
|
236
|
+
type?: pulumi.Input<string | undefined>;
|
|
237
|
+
/**
|
|
238
|
+
* Label that identifies the stream workspace.
|
|
239
|
+
*/
|
|
240
|
+
workspaceName?: pulumi.Input<string | undefined>;
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* The set of arguments for constructing a StreamConnectionFailover resource.
|
|
244
|
+
*/
|
|
245
|
+
export interface StreamConnectionFailoverArgs {
|
|
246
|
+
/**
|
|
247
|
+
* Optional for type: Kafka. User credentials required to connect to a Kafka Cluster. Includes the authentication type, as well as the parameters for that authentication mode.
|
|
248
|
+
*/
|
|
249
|
+
authentication?: pulumi.Input<inputs.StreamConnectionFailoverAuthentication | undefined>;
|
|
250
|
+
/**
|
|
251
|
+
* Optional for type: Kafka. Comma separated list of server addresses.
|
|
252
|
+
*/
|
|
253
|
+
bootstrapServers?: pulumi.Input<string | undefined>;
|
|
254
|
+
/**
|
|
255
|
+
* Optional for type: Cluster. Name of the cluster configured for this connection.
|
|
256
|
+
*/
|
|
257
|
+
clusterName?: pulumi.Input<string | undefined>;
|
|
258
|
+
/**
|
|
259
|
+
* Optional for type: Cluster. Unique 24-hexadecimal digit string that identifies the project that contains the configured cluster. Required if the ID does not match the project containing the streams workspace. You must first enable the organization setting.
|
|
260
|
+
*/
|
|
261
|
+
clusterProjectId?: pulumi.Input<string | undefined>;
|
|
262
|
+
/**
|
|
263
|
+
* Optional for type: Kafka. A map of Kafka key-value pairs for optional configuration. This is a flat object, and keys can have '.' characters.
|
|
264
|
+
*/
|
|
265
|
+
config?: pulumi.Input<{
|
|
266
|
+
[key: string]: pulumi.Input<string>;
|
|
267
|
+
} | undefined>;
|
|
268
|
+
/**
|
|
269
|
+
* Label that identifies the stream connection name.
|
|
270
|
+
*/
|
|
271
|
+
connectionName: pulumi.Input<string>;
|
|
272
|
+
/**
|
|
273
|
+
* Optional for type: Cluster. The name of a Built in or Custom DB Role to connect to an Atlas Cluster.
|
|
274
|
+
*/
|
|
275
|
+
dbRoleToExecute?: pulumi.Input<inputs.StreamConnectionFailoverDbRoleToExecute | undefined>;
|
|
276
|
+
/**
|
|
277
|
+
* Indicates whether to delete the resource being created if a timeout is reached when waiting for completion. When set to `true` and timeout occurs, it triggers the deletion and returns immediately without waiting for deletion to complete. When set to `false`, the timeout will not trigger resource deletion. If you suspect a transient error when the value is `true`, wait before retrying to allow resource deletion to finish. Default is `true`.
|
|
278
|
+
*/
|
|
279
|
+
deleteOnCreateTimeout?: pulumi.Input<boolean | undefined>;
|
|
280
|
+
/**
|
|
281
|
+
* Optional for type: Kafka. Networking configuration for Streams connections.
|
|
282
|
+
*/
|
|
283
|
+
networking?: pulumi.Input<inputs.StreamConnectionFailoverNetworking | undefined>;
|
|
284
|
+
/**
|
|
285
|
+
* Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
|
|
286
|
+
*/
|
|
287
|
+
projectId: pulumi.Input<string>;
|
|
288
|
+
/**
|
|
289
|
+
* The connection's region.
|
|
290
|
+
*/
|
|
291
|
+
region: pulumi.Input<string>;
|
|
292
|
+
/**
|
|
293
|
+
* Optional for type: Kafka. Properties for the secure transport connection to Kafka. For SSL, this can include the trusted certificate to use.
|
|
294
|
+
*/
|
|
295
|
+
security?: pulumi.Input<inputs.StreamConnectionFailoverSecurity | undefined>;
|
|
296
|
+
timeouts?: pulumi.Input<inputs.StreamConnectionFailoverTimeouts | undefined>;
|
|
297
|
+
/**
|
|
298
|
+
* Type of the connection.
|
|
299
|
+
*/
|
|
300
|
+
type: pulumi.Input<string>;
|
|
301
|
+
/**
|
|
302
|
+
* Label that identifies the stream workspace.
|
|
303
|
+
*/
|
|
304
|
+
workspaceName: pulumi.Input<string>;
|
|
305
|
+
}
|
|
306
|
+
//# sourceMappingURL=streamConnectionFailover.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streamConnectionFailover.d.ts","sourceRoot":"","sources":["../streamConnectionFailover.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyEG;AACH,qBAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,6BAA6B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,wBAAwB;IAOlK;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,wBAAwB;IAOnE;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IAClH;;OAEG;IACH,SAAwB,gBAAgB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC5E;;OAEG;IACH,SAAwB,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACvE;;OAEG;IACH,SAAwB,gBAAgB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC5E;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,GAAG,SAAS,CAAC,CAAC;IACnF;;OAEG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC9D;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IACpH;;OAEG;IACH,SAAwB,qBAAqB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACtE;;OAEG;IACH,SAAgC,oBAAoB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5E;;OAEG;IACH,SAAwB,UAAU,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,kCAAkC,CAAC,CAAC;IAC9F;;OAEG;IACH,SAAwB,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzD;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACtD;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IACtG;;OAEG;IACH,SAAgC,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7D,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IACtG;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAE7D;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,4BAA4B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CA6DpG;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC1C;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IACzF;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;KAAC,GAAG,SAAS,CAAC,CAAC;IACzE;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IAC3F;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC1D;;OAEG;IACH,oBAAoB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxD;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IACjF;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1C;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC7E;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACzC,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC7E;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACpD;AAED;;GAEG;AACH,MAAM,WAAW,4BAA4B;IACzC;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IACzF;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC/C;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAA;KAAC,GAAG,SAAS,CAAC,CAAC;IACzE;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACrC;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IAC3F;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC1D;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,kCAAkC,GAAG,SAAS,CAAC,CAAC;IACjF;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAChC;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC7E,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,gCAAgC,GAAG,SAAS,CAAC,CAAC;IAC7E;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC3B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.StreamConnectionFailover = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* `mongodbatlas.StreamConnectionFailover` provides a Stream Failover Connection resource. It lets you create, update, delete, and import a failover (regional-alternate) connection for an existing stream connection.
|
|
33
|
+
*
|
|
34
|
+
* A failover connection shares its primary connection's `connectionName` and is created for one of the workspace's failover regions (configured via the `failoverRegions` argument of `mongodbatlas.StreamWorkspace`). It is uniquely identified by its computed `failoverConnectionId` and carries its own regional connection configuration in the `region` attribute. Only `Kafka` and `Cluster` connection types support failover.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ### S
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
43
|
+
*
|
|
44
|
+
* const example = new mongodbatlas.StreamWorkspace("example", {
|
|
45
|
+
* projectId: projectId,
|
|
46
|
+
* workspaceName: "workspace-with-failover",
|
|
47
|
+
* dataProcessRegion: {
|
|
48
|
+
* region: "VIRGINIA_USA",
|
|
49
|
+
* cloudProvider: "AWS",
|
|
50
|
+
* },
|
|
51
|
+
* failoverRegions: [{
|
|
52
|
+
* region: "DUBLIN_IRL",
|
|
53
|
+
* cloudProvider: "AWS",
|
|
54
|
+
* }],
|
|
55
|
+
* streamConfig: {
|
|
56
|
+
* tier: "SP10",
|
|
57
|
+
* },
|
|
58
|
+
* });
|
|
59
|
+
* // The primary (default-region) stream connection.
|
|
60
|
+
* const exampleStreamConnection = new mongodbatlas.StreamConnection("example", {
|
|
61
|
+
* projectId: projectId,
|
|
62
|
+
* workspaceName: example.workspaceName,
|
|
63
|
+
* connectionName: "KafkaConnection",
|
|
64
|
+
* type: "Kafka",
|
|
65
|
+
* bootstrapServers: bootstrapServers,
|
|
66
|
+
* authentication: {
|
|
67
|
+
* mechanism: "PLAIN",
|
|
68
|
+
* username: kafkaUsername,
|
|
69
|
+
* password: kafkaPassword,
|
|
70
|
+
* },
|
|
71
|
+
* security: {
|
|
72
|
+
* protocol: "SASL_SSL",
|
|
73
|
+
* },
|
|
74
|
+
* });
|
|
75
|
+
* // A failover connection shares the primary connection's name and is created for one of the
|
|
76
|
+
* // workspace's failover regions, with its own regional configuration.
|
|
77
|
+
* const exampleStreamConnectionFailover = new mongodbatlas.StreamConnectionFailover("example", {
|
|
78
|
+
* projectId: projectId,
|
|
79
|
+
* workspaceName: example.workspaceName,
|
|
80
|
+
* connectionName: exampleStreamConnection.connectionName,
|
|
81
|
+
* region: "DUBLIN_IRL",
|
|
82
|
+
* type: "Kafka",
|
|
83
|
+
* bootstrapServers: failoverBootstrapServers,
|
|
84
|
+
* authentication: {
|
|
85
|
+
* mechanism: "PLAIN",
|
|
86
|
+
* username: failoverKafkaUsername,
|
|
87
|
+
* password: failoverKafkaPassword,
|
|
88
|
+
* },
|
|
89
|
+
* security: {
|
|
90
|
+
* protocol: "SASL_SSL",
|
|
91
|
+
* },
|
|
92
|
+
* });
|
|
93
|
+
* ```
|
|
94
|
+
*
|
|
95
|
+
* ## Import
|
|
96
|
+
*
|
|
97
|
+
* Failover connection resource can be imported using the project ID, workspace name, connection name, and failover connection ID, separated by slashes, e.g.
|
|
98
|
+
*
|
|
99
|
+
* ```sh
|
|
100
|
+
* $ pulumi import mongodbatlas:index/streamConnectionFailover:StreamConnectionFailover test "6117ac2fe2a3d04ed27a9871/yourWorkspaceName/KafkaConnection/671f9c2fe2a3d04ed27a9880"
|
|
101
|
+
* ```
|
|
102
|
+
*
|
|
103
|
+
* For more information see: [MongoDB Atlas API - Streams Failover Connection](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/group/endpoint-streams) Documentation.
|
|
104
|
+
*/
|
|
105
|
+
class StreamConnectionFailover extends pulumi.CustomResource {
|
|
106
|
+
/**
|
|
107
|
+
* Get an existing StreamConnectionFailover resource's state with the given name, ID, and optional extra
|
|
108
|
+
* properties used to qualify the lookup.
|
|
109
|
+
*
|
|
110
|
+
* @param name The _unique_ name of the resulting resource.
|
|
111
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
112
|
+
* @param state Any extra arguments used during the lookup.
|
|
113
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
114
|
+
*/
|
|
115
|
+
static get(name, id, state, opts) {
|
|
116
|
+
return new StreamConnectionFailover(name, state, { ...opts, id: id });
|
|
117
|
+
}
|
|
118
|
+
/** @internal */
|
|
119
|
+
static __pulumiType = 'mongodbatlas:index/streamConnectionFailover:StreamConnectionFailover';
|
|
120
|
+
/**
|
|
121
|
+
* Returns true if the given object is an instance of StreamConnectionFailover. This is designed to work even
|
|
122
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
123
|
+
*/
|
|
124
|
+
static isInstance(obj) {
|
|
125
|
+
if (obj === undefined || obj === null) {
|
|
126
|
+
return false;
|
|
127
|
+
}
|
|
128
|
+
return obj['__pulumiType'] === StreamConnectionFailover.__pulumiType;
|
|
129
|
+
}
|
|
130
|
+
constructor(name, argsOrState, opts) {
|
|
131
|
+
let resourceInputs = {};
|
|
132
|
+
opts = opts || {};
|
|
133
|
+
if (opts.id) {
|
|
134
|
+
const state = argsOrState;
|
|
135
|
+
resourceInputs["authentication"] = state?.authentication;
|
|
136
|
+
resourceInputs["bootstrapServers"] = state?.bootstrapServers;
|
|
137
|
+
resourceInputs["clusterName"] = state?.clusterName;
|
|
138
|
+
resourceInputs["clusterProjectId"] = state?.clusterProjectId;
|
|
139
|
+
resourceInputs["config"] = state?.config;
|
|
140
|
+
resourceInputs["connectionName"] = state?.connectionName;
|
|
141
|
+
resourceInputs["dbRoleToExecute"] = state?.dbRoleToExecute;
|
|
142
|
+
resourceInputs["deleteOnCreateTimeout"] = state?.deleteOnCreateTimeout;
|
|
143
|
+
resourceInputs["failoverConnectionId"] = state?.failoverConnectionId;
|
|
144
|
+
resourceInputs["networking"] = state?.networking;
|
|
145
|
+
resourceInputs["projectId"] = state?.projectId;
|
|
146
|
+
resourceInputs["region"] = state?.region;
|
|
147
|
+
resourceInputs["security"] = state?.security;
|
|
148
|
+
resourceInputs["state"] = state?.state;
|
|
149
|
+
resourceInputs["timeouts"] = state?.timeouts;
|
|
150
|
+
resourceInputs["type"] = state?.type;
|
|
151
|
+
resourceInputs["workspaceName"] = state?.workspaceName;
|
|
152
|
+
}
|
|
153
|
+
else {
|
|
154
|
+
const args = argsOrState;
|
|
155
|
+
if (args?.connectionName === undefined && !opts.urn) {
|
|
156
|
+
throw new Error("Missing required property 'connectionName'");
|
|
157
|
+
}
|
|
158
|
+
if (args?.projectId === undefined && !opts.urn) {
|
|
159
|
+
throw new Error("Missing required property 'projectId'");
|
|
160
|
+
}
|
|
161
|
+
if (args?.region === undefined && !opts.urn) {
|
|
162
|
+
throw new Error("Missing required property 'region'");
|
|
163
|
+
}
|
|
164
|
+
if (args?.type === undefined && !opts.urn) {
|
|
165
|
+
throw new Error("Missing required property 'type'");
|
|
166
|
+
}
|
|
167
|
+
if (args?.workspaceName === undefined && !opts.urn) {
|
|
168
|
+
throw new Error("Missing required property 'workspaceName'");
|
|
169
|
+
}
|
|
170
|
+
resourceInputs["authentication"] = args?.authentication;
|
|
171
|
+
resourceInputs["bootstrapServers"] = args?.bootstrapServers;
|
|
172
|
+
resourceInputs["clusterName"] = args?.clusterName;
|
|
173
|
+
resourceInputs["clusterProjectId"] = args?.clusterProjectId;
|
|
174
|
+
resourceInputs["config"] = args?.config;
|
|
175
|
+
resourceInputs["connectionName"] = args?.connectionName;
|
|
176
|
+
resourceInputs["dbRoleToExecute"] = args?.dbRoleToExecute;
|
|
177
|
+
resourceInputs["deleteOnCreateTimeout"] = args?.deleteOnCreateTimeout;
|
|
178
|
+
resourceInputs["networking"] = args?.networking;
|
|
179
|
+
resourceInputs["projectId"] = args?.projectId;
|
|
180
|
+
resourceInputs["region"] = args?.region;
|
|
181
|
+
resourceInputs["security"] = args?.security;
|
|
182
|
+
resourceInputs["timeouts"] = args?.timeouts;
|
|
183
|
+
resourceInputs["type"] = args?.type;
|
|
184
|
+
resourceInputs["workspaceName"] = args?.workspaceName;
|
|
185
|
+
resourceInputs["failoverConnectionId"] = undefined /*out*/;
|
|
186
|
+
resourceInputs["state"] = undefined /*out*/;
|
|
187
|
+
}
|
|
188
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
189
|
+
super(StreamConnectionFailover.__pulumiType, name, resourceInputs, opts);
|
|
190
|
+
}
|
|
191
|
+
}
|
|
192
|
+
exports.StreamConnectionFailover = StreamConnectionFailover;
|
|
193
|
+
//# sourceMappingURL=streamConnectionFailover.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"streamConnectionFailover.js","sourceRoot":"","sources":["../streamConnectionFailover.ts"],"names":[],"mappings":"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"}
|
package/streamProcessor.d.ts
CHANGED
|
@@ -176,6 +176,10 @@ export declare class StreamProcessor extends pulumi.CustomResource {
|
|
|
176
176
|
* Indicates whether to delete the resource being created if a timeout is reached when waiting for completion. When set to `true` and timeout occurs, it triggers the deletion and returns immediately without waiting for deletion to complete. When set to `false`, the timeout will not trigger resource deletion. If you suspect a transient error when the value is `true`, wait before retrying to allow resource deletion to finish. Default is `true`.
|
|
177
177
|
*/
|
|
178
178
|
readonly deleteOnCreateTimeout: pulumi.Output<boolean>;
|
|
179
|
+
/**
|
|
180
|
+
* Indicates whether this stream processor is eligible for failover. When `true`, an operator can trigger a failover event to migrate the stream processor to a secondary region configured in the workspace's `failoverRegions`. Requires an Atlas-to-Atlas or Atlas-to-Kafka pipeline with `failoverRegions` configured on the workspace.
|
|
181
|
+
*/
|
|
182
|
+
readonly failoverEnabled: pulumi.Output<boolean | undefined>;
|
|
179
183
|
/**
|
|
180
184
|
* Label that identifies the stream processing workspace.
|
|
181
185
|
*
|
|
@@ -232,6 +236,10 @@ export interface StreamProcessorState {
|
|
|
232
236
|
* Indicates whether to delete the resource being created if a timeout is reached when waiting for completion. When set to `true` and timeout occurs, it triggers the deletion and returns immediately without waiting for deletion to complete. When set to `false`, the timeout will not trigger resource deletion. If you suspect a transient error when the value is `true`, wait before retrying to allow resource deletion to finish. Default is `true`.
|
|
233
237
|
*/
|
|
234
238
|
deleteOnCreateTimeout?: pulumi.Input<boolean | undefined>;
|
|
239
|
+
/**
|
|
240
|
+
* Indicates whether this stream processor is eligible for failover. When `true`, an operator can trigger a failover event to migrate the stream processor to a secondary region configured in the workspace's `failoverRegions`. Requires an Atlas-to-Atlas or Atlas-to-Kafka pipeline with `failoverRegions` configured on the workspace.
|
|
241
|
+
*/
|
|
242
|
+
failoverEnabled?: pulumi.Input<boolean | undefined>;
|
|
235
243
|
/**
|
|
236
244
|
* Label that identifies the stream processing workspace.
|
|
237
245
|
*
|
|
@@ -280,6 +288,10 @@ export interface StreamProcessorArgs {
|
|
|
280
288
|
* Indicates whether to delete the resource being created if a timeout is reached when waiting for completion. When set to `true` and timeout occurs, it triggers the deletion and returns immediately without waiting for deletion to complete. When set to `false`, the timeout will not trigger resource deletion. If you suspect a transient error when the value is `true`, wait before retrying to allow resource deletion to finish. Default is `true`.
|
|
281
289
|
*/
|
|
282
290
|
deleteOnCreateTimeout?: pulumi.Input<boolean | undefined>;
|
|
291
|
+
/**
|
|
292
|
+
* Indicates whether this stream processor is eligible for failover. When `true`, an operator can trigger a failover event to migrate the stream processor to a secondary region configured in the workspace's `failoverRegions`. Requires an Atlas-to-Atlas or Atlas-to-Kafka pipeline with `failoverRegions` configured on the workspace.
|
|
293
|
+
*/
|
|
294
|
+
failoverEnabled?: pulumi.Input<boolean | undefined>;
|
|
283
295
|
/**
|
|
284
296
|
* Label that identifies the stream processing workspace.
|
|
285
297
|
*
|
package/streamProcessor.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"streamProcessor.d.ts","sourceRoot":"","sources":["../streamProcessor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0JG;AACH,qBAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,oBAAoB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,eAAe;IAOhJ;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,eAAe;IAO1D;;OAEG;IACH,SAAwB,qBAAqB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACtE;;;;OAIG;IACH,SAAwB,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxE;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IAC3F;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACxD;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7D;;OAEG;IACH,SAAwB,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzD;;OAEG;IACH,SAAwB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACrD;;OAEG;IACH,SAAgC,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7D;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,uBAAuB,GAAG,SAAS,CAAC,CAAC;IAC7F;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAEzE;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,mBAAmB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;
|
|
1
|
+
{"version":3,"file":"streamProcessor.d.ts","sourceRoot":"","sources":["../streamProcessor.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0JG;AACH,qBAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,oBAAoB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,eAAe;IAOhJ;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,eAAe;IAO1D;;OAEG;IACH,SAAwB,qBAAqB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;IACtE;;OAEG;IACH,SAAwB,eAAe,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC5E;;;;OAIG;IACH,SAAwB,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxE;;OAEG;IACH,SAAwB,OAAO,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IAC3F;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACxD;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7D;;OAEG;IACH,SAAwB,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACzD;;OAEG;IACH,SAAwB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACrD;;OAEG;IACH,SAAgC,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7D;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpD,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,uBAAuB,GAAG,SAAS,CAAC,CAAC;IAC7F;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAEzE;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,mBAAmB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CA6C3F;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC1D;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACpD;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChD;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IAClE;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC5C;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACjD;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC7C;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACzC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACzC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,uBAAuB,GAAG,SAAS,CAAC,CAAC;IACpE;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACpD;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IAC1D;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACpD;;;;OAIG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChD;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,sBAAsB,GAAG,SAAS,CAAC,CAAC;IAClE;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAC/B;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACpC;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IAChC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACzC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,uBAAuB,GAAG,SAAS,CAAC,CAAC;IACpE;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CACpD"}
|
package/streamProcessor.js
CHANGED
|
@@ -214,6 +214,7 @@ class StreamProcessor extends pulumi.CustomResource {
|
|
|
214
214
|
if (opts.id) {
|
|
215
215
|
const state = argsOrState;
|
|
216
216
|
resourceInputs["deleteOnCreateTimeout"] = state?.deleteOnCreateTimeout;
|
|
217
|
+
resourceInputs["failoverEnabled"] = state?.failoverEnabled;
|
|
217
218
|
resourceInputs["instanceName"] = state?.instanceName;
|
|
218
219
|
resourceInputs["options"] = state?.options;
|
|
219
220
|
resourceInputs["pipeline"] = state?.pipeline;
|
|
@@ -237,6 +238,7 @@ class StreamProcessor extends pulumi.CustomResource {
|
|
|
237
238
|
throw new Error("Missing required property 'projectId'");
|
|
238
239
|
}
|
|
239
240
|
resourceInputs["deleteOnCreateTimeout"] = args?.deleteOnCreateTimeout;
|
|
241
|
+
resourceInputs["failoverEnabled"] = args?.failoverEnabled;
|
|
240
242
|
resourceInputs["instanceName"] = args?.instanceName;
|
|
241
243
|
resourceInputs["options"] = args?.options;
|
|
242
244
|
resourceInputs["pipeline"] = args?.pipeline;
|
package/streamProcessor.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"streamProcessor.js","sourceRoot":"","sources":["../streamProcessor.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0JG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACtE,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,oDAAoD,CAAC;IAE3F;;;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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"streamProcessor.js","sourceRoot":"","sources":["../streamProcessor.ts"],"names":[],"mappings":"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"}
|