@pulumi/mongodbatlas 4.15.0-alpha.1787867745 → 4.15.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.
Files changed (57) hide show
  1. package/cloudBackupCollectionRestoreJob.d.ts +303 -0
  2. package/cloudBackupCollectionRestoreJob.d.ts.map +1 -0
  3. package/cloudBackupCollectionRestoreJob.js +163 -0
  4. package/cloudBackupCollectionRestoreJob.js.map +1 -0
  5. package/getCloudBackupCollectionRestoreJob.d.ts +242 -0
  6. package/getCloudBackupCollectionRestoreJob.d.ts.map +1 -0
  7. package/getCloudBackupCollectionRestoreJob.js +159 -0
  8. package/getCloudBackupCollectionRestoreJob.js.map +1 -0
  9. package/getCloudBackupCollectionRestoreJobCollection.d.ts +206 -0
  10. package/getCloudBackupCollectionRestoreJobCollection.d.ts.map +1 -0
  11. package/getCloudBackupCollectionRestoreJobCollection.js +165 -0
  12. package/getCloudBackupCollectionRestoreJobCollection.js.map +1 -0
  13. package/getCloudBackupCollectionRestoreJobCollections.d.ts +210 -0
  14. package/getCloudBackupCollectionRestoreJobCollections.d.ts.map +1 -0
  15. package/getCloudBackupCollectionRestoreJobCollections.js +169 -0
  16. package/getCloudBackupCollectionRestoreJobCollections.js.map +1 -0
  17. package/getCloudBackupCollectionRestoreJobs.d.ts +158 -0
  18. package/getCloudBackupCollectionRestoreJobs.d.ts.map +1 -0
  19. package/getCloudBackupCollectionRestoreJobs.js +157 -0
  20. package/getCloudBackupCollectionRestoreJobs.js.map +1 -0
  21. package/getCloudBackupSnapshotDatabaseCollections.d.ts +82 -0
  22. package/getCloudBackupSnapshotDatabaseCollections.d.ts.map +1 -0
  23. package/getCloudBackupSnapshotDatabaseCollections.js +61 -0
  24. package/getCloudBackupSnapshotDatabaseCollections.js.map +1 -0
  25. package/getCloudBackupSnapshotDatabases.d.ts +70 -0
  26. package/getCloudBackupSnapshotDatabases.d.ts.map +1 -0
  27. package/getCloudBackupSnapshotDatabases.js +59 -0
  28. package/getCloudBackupSnapshotDatabases.js.map +1 -0
  29. package/getStreamConnection.d.ts +1 -1
  30. package/getStreamPrivatelinkEndpoint.d.ts +1 -0
  31. package/getStreamPrivatelinkEndpoint.d.ts.map +1 -1
  32. package/getStreamPrivatelinkEndpoint.js.map +1 -1
  33. package/getStreamProcessor.d.ts +15 -1
  34. package/getStreamProcessor.d.ts.map +1 -1
  35. package/getStreamProcessor.js +10 -0
  36. package/getStreamProcessor.js.map +1 -1
  37. package/getStreamProcessors.d.ts +10 -0
  38. package/getStreamProcessors.d.ts.map +1 -1
  39. package/getStreamProcessors.js +10 -0
  40. package/getStreamProcessors.js.map +1 -1
  41. package/index.d.ts +21 -0
  42. package/index.d.ts.map +1 -1
  43. package/index.js +31 -8
  44. package/index.js.map +1 -1
  45. package/package.json +2 -2
  46. package/streamPrivatelinkEndpoint.d.ts +12 -0
  47. package/streamPrivatelinkEndpoint.d.ts.map +1 -1
  48. package/streamPrivatelinkEndpoint.js +2 -0
  49. package/streamPrivatelinkEndpoint.js.map +1 -1
  50. package/streamProcessor.d.ts +19 -6
  51. package/streamProcessor.d.ts.map +1 -1
  52. package/streamProcessor.js +7 -0
  53. package/streamProcessor.js.map +1 -1
  54. package/types/input.d.ts +62 -2
  55. package/types/input.d.ts.map +1 -1
  56. package/types/output.d.ts +335 -7
  57. package/types/output.d.ts.map +1 -1
@@ -0,0 +1,303 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * `mongodbatlas.CloudBackupCollectionRestoreJob` provides a resource to restore selected databases or collections from a Cloud Backup snapshot or point in time into an existing Atlas cluster.
6
+ *
7
+ * To use this resource, the requesting Service Account or API Key must have the Backup Manager or Project Owner role on the source project and on the target project.
8
+ *
9
+ * > **Note:** Create waits until the job `state` is `SUCCESSFUL`. Pending states are `INITIALIZING`, `IN_PROGRESS`, and `FINALIZING`. The default create timeout is 3 hours and is overridable with `timeouts.create`. The job cannot be updated. Destroy only removes the resource from state; Atlas has no public cancel API, so there is no `deleteOnCreateTimeout`. Provide either `snapshotId` or point-in-time fields (`pointInTimeUtcSeconds`, `oplogTs`, `oplogInc`), not both. Per-collection progress is empty while the job is `INITIALIZING`. Cross-organization restore is not available with programmatic credentials; restore across projects in the same organization by setting `targetProjectId` and `targetClusterName`.
10
+ *
11
+ * ## Limitations
12
+ *
13
+ * Atlas product limits apply. See [Restore from Selected Databases and Collections](https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-db-coll/#limitations) for the full list.
14
+ *
15
+ * - One collection-restore job per cluster at a time.
16
+ * - Does not restore Atlas Search indexes. Skips views, time-series, and queryable encryption collections.
17
+ * - Data transfer uses the public internet even when private endpoints exist.
18
+ * - NVMe clusters and fallback snapshots are unsupported.
19
+ * - Up to 100 databases and 100 explicitly listed collections per job.
20
+ *
21
+ * ## Import
22
+ *
23
+ * Collection restore job resource can be imported using the source project ID, source cluster name, and job ID, separated by slashes, for example:
24
+ *
25
+ * ```sh
26
+ * $ pulumi import mongodbatlas:index/cloudBackupCollectionRestoreJob:CloudBackupCollectionRestoreJob this 650972848269185c55f40ca1/MyCluster/6789abcd1234ef5678901234
27
+ * ```
28
+ *
29
+ * Import hydrates the current GET state. It does not wait for a running job to finish.
30
+ *
31
+ * For more information see: [MongoDB Atlas - Restore from Selected Databases and Collections](https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-db-coll/) Documentation.
32
+ */
33
+ export declare class CloudBackupCollectionRestoreJob extends pulumi.CustomResource {
34
+ /**
35
+ * Get an existing CloudBackupCollectionRestoreJob resource's state with the given name, ID, and optional extra
36
+ * properties used to qualify the lookup.
37
+ *
38
+ * @param name The _unique_ name of the resulting resource.
39
+ * @param id The _unique_ provider ID of the resource to lookup.
40
+ * @param state Any extra arguments used during the lookup.
41
+ * @param opts Optional settings to control the behavior of the CustomResource.
42
+ */
43
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CloudBackupCollectionRestoreJobState, opts?: pulumi.CustomResourceOptions): CloudBackupCollectionRestoreJob;
44
+ /**
45
+ * Returns true if the given object is an instance of CloudBackupCollectionRestoreJob. This is designed to work even
46
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
47
+ */
48
+ static isInstance(obj: any): obj is CloudBackupCollectionRestoreJob;
49
+ /**
50
+ * Human-readable label that identifies the source cluster for the restore.
51
+ */
52
+ readonly clusterName: pulumi.Output<string>;
53
+ /**
54
+ * Optional suffix applied to restored collection names.
55
+ */
56
+ readonly collectionSuffix: pulumi.Output<string>;
57
+ /**
58
+ * List of collections to restore (up to 100 items).
59
+ */
60
+ readonly collections: pulumi.Output<outputs.CloudBackupCollectionRestoreJobCollection[]>;
61
+ /**
62
+ * Date and time when the restore job was created (ISO 8601 format in UTC).
63
+ */
64
+ readonly createdAt: pulumi.Output<string>;
65
+ /**
66
+ * Optional suffix applied to restored database names.
67
+ */
68
+ readonly databaseSuffix: pulumi.Output<string>;
69
+ /**
70
+ * List of databases to restore (up to 100 items).
71
+ */
72
+ readonly databases: pulumi.Output<outputs.CloudBackupCollectionRestoreJobDatabase[]>;
73
+ /**
74
+ * Error message when the job has failed or been canceled.
75
+ */
76
+ readonly errorMessage: pulumi.Output<string>;
77
+ /**
78
+ * Date and time when the restore job finished (ISO 8601 format in UTC).
79
+ */
80
+ readonly finishedAt: pulumi.Output<string>;
81
+ /**
82
+ * Overall index build status for a collection restore job.
83
+ */
84
+ readonly indexStatus: pulumi.Output<outputs.CloudBackupCollectionRestoreJobIndexStatus>;
85
+ /**
86
+ * Strategy for restoring indexes (all, none, or all except TTL).
87
+ */
88
+ readonly indexStrategy: pulumi.Output<string>;
89
+ /**
90
+ * Unique 24-hexadecimal digit string that identifies the collection restore job.
91
+ */
92
+ readonly jobId: pulumi.Output<string>;
93
+ /**
94
+ * Oplog increment for point-in-time restore.
95
+ */
96
+ readonly oplogInc: pulumi.Output<number>;
97
+ /**
98
+ * Oplog timestamp (seconds part) for point-in-time restore.
99
+ */
100
+ readonly oplogTs: pulumi.Output<number>;
101
+ /**
102
+ * Point-in-time restore time in seconds since UNIX epoch.
103
+ */
104
+ readonly pointInTimeUtcSeconds: pulumi.Output<number>;
105
+ /**
106
+ * Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
107
+ */
108
+ readonly projectId: pulumi.Output<string>;
109
+ /**
110
+ * Number of documents restored so far across all supported collections.
111
+ */
112
+ readonly restoredDocuments: pulumi.Output<number>;
113
+ /**
114
+ * ID of the snapshot to restore.
115
+ */
116
+ readonly snapshotId: pulumi.Output<string>;
117
+ /**
118
+ * Current state of the collection restore job.
119
+ */
120
+ readonly state: pulumi.Output<string>;
121
+ /**
122
+ * Target cluster name.
123
+ */
124
+ readonly targetClusterName: pulumi.Output<string>;
125
+ /**
126
+ * Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
127
+ */
128
+ readonly targetProjectId: pulumi.Output<string>;
129
+ readonly timeouts: pulumi.Output<outputs.CloudBackupCollectionRestoreJobTimeouts | undefined>;
130
+ /**
131
+ * Total number of documents across all supported collections in the restore job. This value may initially reflect an estimate based on collection metadata and can change as accurate document counts become available during the restore.
132
+ */
133
+ readonly totalDocuments: pulumi.Output<number>;
134
+ /**
135
+ * Strategy for writing data on the target (create as new or overwrite existing). With `OVERWRITE_EXISTING`, any writes to the affected databases or collections during the restore will be lost when the existing namespaces are dropped and replaced. To avoid data loss, stop writes to the affected namespaces before starting the restore.
136
+ */
137
+ readonly writeStrategy: pulumi.Output<string>;
138
+ /**
139
+ * Create a CloudBackupCollectionRestoreJob resource with the given unique name, arguments, and options.
140
+ *
141
+ * @param name The _unique_ name of the resource.
142
+ * @param args The arguments to use to populate this resource's properties.
143
+ * @param opts A bag of options that control this resource's behavior.
144
+ */
145
+ constructor(name: string, args: CloudBackupCollectionRestoreJobArgs, opts?: pulumi.CustomResourceOptions);
146
+ }
147
+ /**
148
+ * Input properties used for looking up and filtering CloudBackupCollectionRestoreJob resources.
149
+ */
150
+ export interface CloudBackupCollectionRestoreJobState {
151
+ /**
152
+ * Human-readable label that identifies the source cluster for the restore.
153
+ */
154
+ clusterName?: pulumi.Input<string | undefined>;
155
+ /**
156
+ * Optional suffix applied to restored collection names.
157
+ */
158
+ collectionSuffix?: pulumi.Input<string | undefined>;
159
+ /**
160
+ * List of collections to restore (up to 100 items).
161
+ */
162
+ collections?: pulumi.Input<pulumi.Input<inputs.CloudBackupCollectionRestoreJobCollection>[] | undefined>;
163
+ /**
164
+ * Date and time when the restore job was created (ISO 8601 format in UTC).
165
+ */
166
+ createdAt?: pulumi.Input<string | undefined>;
167
+ /**
168
+ * Optional suffix applied to restored database names.
169
+ */
170
+ databaseSuffix?: pulumi.Input<string | undefined>;
171
+ /**
172
+ * List of databases to restore (up to 100 items).
173
+ */
174
+ databases?: pulumi.Input<pulumi.Input<inputs.CloudBackupCollectionRestoreJobDatabase>[] | undefined>;
175
+ /**
176
+ * Error message when the job has failed or been canceled.
177
+ */
178
+ errorMessage?: pulumi.Input<string | undefined>;
179
+ /**
180
+ * Date and time when the restore job finished (ISO 8601 format in UTC).
181
+ */
182
+ finishedAt?: pulumi.Input<string | undefined>;
183
+ /**
184
+ * Overall index build status for a collection restore job.
185
+ */
186
+ indexStatus?: pulumi.Input<inputs.CloudBackupCollectionRestoreJobIndexStatus | undefined>;
187
+ /**
188
+ * Strategy for restoring indexes (all, none, or all except TTL).
189
+ */
190
+ indexStrategy?: pulumi.Input<string | undefined>;
191
+ /**
192
+ * Unique 24-hexadecimal digit string that identifies the collection restore job.
193
+ */
194
+ jobId?: pulumi.Input<string | undefined>;
195
+ /**
196
+ * Oplog increment for point-in-time restore.
197
+ */
198
+ oplogInc?: pulumi.Input<number | undefined>;
199
+ /**
200
+ * Oplog timestamp (seconds part) for point-in-time restore.
201
+ */
202
+ oplogTs?: pulumi.Input<number | undefined>;
203
+ /**
204
+ * Point-in-time restore time in seconds since UNIX epoch.
205
+ */
206
+ pointInTimeUtcSeconds?: pulumi.Input<number | undefined>;
207
+ /**
208
+ * Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
209
+ */
210
+ projectId?: pulumi.Input<string | undefined>;
211
+ /**
212
+ * Number of documents restored so far across all supported collections.
213
+ */
214
+ restoredDocuments?: pulumi.Input<number | undefined>;
215
+ /**
216
+ * ID of the snapshot to restore.
217
+ */
218
+ snapshotId?: pulumi.Input<string | undefined>;
219
+ /**
220
+ * Current state of the collection restore job.
221
+ */
222
+ state?: pulumi.Input<string | undefined>;
223
+ /**
224
+ * Target cluster name.
225
+ */
226
+ targetClusterName?: pulumi.Input<string | undefined>;
227
+ /**
228
+ * Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
229
+ */
230
+ targetProjectId?: pulumi.Input<string | undefined>;
231
+ timeouts?: pulumi.Input<inputs.CloudBackupCollectionRestoreJobTimeouts | undefined>;
232
+ /**
233
+ * Total number of documents across all supported collections in the restore job. This value may initially reflect an estimate based on collection metadata and can change as accurate document counts become available during the restore.
234
+ */
235
+ totalDocuments?: pulumi.Input<number | undefined>;
236
+ /**
237
+ * Strategy for writing data on the target (create as new or overwrite existing). With `OVERWRITE_EXISTING`, any writes to the affected databases or collections during the restore will be lost when the existing namespaces are dropped and replaced. To avoid data loss, stop writes to the affected namespaces before starting the restore.
238
+ */
239
+ writeStrategy?: pulumi.Input<string | undefined>;
240
+ }
241
+ /**
242
+ * The set of arguments for constructing a CloudBackupCollectionRestoreJob resource.
243
+ */
244
+ export interface CloudBackupCollectionRestoreJobArgs {
245
+ /**
246
+ * Human-readable label that identifies the source cluster for the restore.
247
+ */
248
+ clusterName: pulumi.Input<string>;
249
+ /**
250
+ * Optional suffix applied to restored collection names.
251
+ */
252
+ collectionSuffix?: pulumi.Input<string | undefined>;
253
+ /**
254
+ * List of collections to restore (up to 100 items).
255
+ */
256
+ collections?: pulumi.Input<pulumi.Input<inputs.CloudBackupCollectionRestoreJobCollection>[] | undefined>;
257
+ /**
258
+ * Optional suffix applied to restored database names.
259
+ */
260
+ databaseSuffix?: pulumi.Input<string | undefined>;
261
+ /**
262
+ * List of databases to restore (up to 100 items).
263
+ */
264
+ databases?: pulumi.Input<pulumi.Input<inputs.CloudBackupCollectionRestoreJobDatabase>[] | undefined>;
265
+ /**
266
+ * Strategy for restoring indexes (all, none, or all except TTL).
267
+ */
268
+ indexStrategy: pulumi.Input<string>;
269
+ /**
270
+ * Oplog increment for point-in-time restore.
271
+ */
272
+ oplogInc?: pulumi.Input<number | undefined>;
273
+ /**
274
+ * Oplog timestamp (seconds part) for point-in-time restore.
275
+ */
276
+ oplogTs?: pulumi.Input<number | undefined>;
277
+ /**
278
+ * Point-in-time restore time in seconds since UNIX epoch.
279
+ */
280
+ pointInTimeUtcSeconds?: pulumi.Input<number | undefined>;
281
+ /**
282
+ * Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
283
+ */
284
+ projectId: pulumi.Input<string>;
285
+ /**
286
+ * ID of the snapshot to restore.
287
+ */
288
+ snapshotId?: pulumi.Input<string | undefined>;
289
+ /**
290
+ * Target cluster name.
291
+ */
292
+ targetClusterName: pulumi.Input<string>;
293
+ /**
294
+ * Unique 24-hexadecimal digit string that identifies your project, also known as `groupId` in the official documentation.
295
+ */
296
+ targetProjectId: pulumi.Input<string>;
297
+ timeouts?: pulumi.Input<inputs.CloudBackupCollectionRestoreJobTimeouts | undefined>;
298
+ /**
299
+ * Strategy for writing data on the target (create as new or overwrite existing). With `OVERWRITE_EXISTING`, any writes to the affected databases or collections during the restore will be lost when the existing namespaces are dropped and replaced. To avoid data loss, stop writes to the affected namespaces before starting the restore.
300
+ */
301
+ writeStrategy: pulumi.Input<string>;
302
+ }
303
+ //# sourceMappingURL=cloudBackupCollectionRestoreJob.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cloudBackupCollectionRestoreJob.d.ts","sourceRoot":"","sources":["../cloudBackupCollectionRestoreJob.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,163 @@
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.CloudBackupCollectionRestoreJob = void 0;
29
+ const pulumi = __importStar(require("@pulumi/pulumi"));
30
+ const utilities = __importStar(require("./utilities"));
31
+ /**
32
+ * `mongodbatlas.CloudBackupCollectionRestoreJob` provides a resource to restore selected databases or collections from a Cloud Backup snapshot or point in time into an existing Atlas cluster.
33
+ *
34
+ * To use this resource, the requesting Service Account or API Key must have the Backup Manager or Project Owner role on the source project and on the target project.
35
+ *
36
+ * > **Note:** Create waits until the job `state` is `SUCCESSFUL`. Pending states are `INITIALIZING`, `IN_PROGRESS`, and `FINALIZING`. The default create timeout is 3 hours and is overridable with `timeouts.create`. The job cannot be updated. Destroy only removes the resource from state; Atlas has no public cancel API, so there is no `deleteOnCreateTimeout`. Provide either `snapshotId` or point-in-time fields (`pointInTimeUtcSeconds`, `oplogTs`, `oplogInc`), not both. Per-collection progress is empty while the job is `INITIALIZING`. Cross-organization restore is not available with programmatic credentials; restore across projects in the same organization by setting `targetProjectId` and `targetClusterName`.
37
+ *
38
+ * ## Limitations
39
+ *
40
+ * Atlas product limits apply. See [Restore from Selected Databases and Collections](https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-db-coll/#limitations) for the full list.
41
+ *
42
+ * - One collection-restore job per cluster at a time.
43
+ * - Does not restore Atlas Search indexes. Skips views, time-series, and queryable encryption collections.
44
+ * - Data transfer uses the public internet even when private endpoints exist.
45
+ * - NVMe clusters and fallback snapshots are unsupported.
46
+ * - Up to 100 databases and 100 explicitly listed collections per job.
47
+ *
48
+ * ## Import
49
+ *
50
+ * Collection restore job resource can be imported using the source project ID, source cluster name, and job ID, separated by slashes, for example:
51
+ *
52
+ * ```sh
53
+ * $ pulumi import mongodbatlas:index/cloudBackupCollectionRestoreJob:CloudBackupCollectionRestoreJob this 650972848269185c55f40ca1/MyCluster/6789abcd1234ef5678901234
54
+ * ```
55
+ *
56
+ * Import hydrates the current GET state. It does not wait for a running job to finish.
57
+ *
58
+ * For more information see: [MongoDB Atlas - Restore from Selected Databases and Collections](https://www.mongodb.com/docs/atlas/backup/cloud-backup/restore-from-db-coll/) Documentation.
59
+ */
60
+ class CloudBackupCollectionRestoreJob extends pulumi.CustomResource {
61
+ /**
62
+ * Get an existing CloudBackupCollectionRestoreJob resource's state with the given name, ID, and optional extra
63
+ * properties used to qualify the lookup.
64
+ *
65
+ * @param name The _unique_ name of the resulting resource.
66
+ * @param id The _unique_ provider ID of the resource to lookup.
67
+ * @param state Any extra arguments used during the lookup.
68
+ * @param opts Optional settings to control the behavior of the CustomResource.
69
+ */
70
+ static get(name, id, state, opts) {
71
+ return new CloudBackupCollectionRestoreJob(name, state, { ...opts, id: id });
72
+ }
73
+ /** @internal */
74
+ static __pulumiType = 'mongodbatlas:index/cloudBackupCollectionRestoreJob:CloudBackupCollectionRestoreJob';
75
+ /**
76
+ * Returns true if the given object is an instance of CloudBackupCollectionRestoreJob. This is designed to work even
77
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
78
+ */
79
+ static isInstance(obj) {
80
+ if (obj === undefined || obj === null) {
81
+ return false;
82
+ }
83
+ return obj['__pulumiType'] === CloudBackupCollectionRestoreJob.__pulumiType;
84
+ }
85
+ constructor(name, argsOrState, opts) {
86
+ let resourceInputs = {};
87
+ opts = opts || {};
88
+ if (opts.id) {
89
+ const state = argsOrState;
90
+ resourceInputs["clusterName"] = state?.clusterName;
91
+ resourceInputs["collectionSuffix"] = state?.collectionSuffix;
92
+ resourceInputs["collections"] = state?.collections;
93
+ resourceInputs["createdAt"] = state?.createdAt;
94
+ resourceInputs["databaseSuffix"] = state?.databaseSuffix;
95
+ resourceInputs["databases"] = state?.databases;
96
+ resourceInputs["errorMessage"] = state?.errorMessage;
97
+ resourceInputs["finishedAt"] = state?.finishedAt;
98
+ resourceInputs["indexStatus"] = state?.indexStatus;
99
+ resourceInputs["indexStrategy"] = state?.indexStrategy;
100
+ resourceInputs["jobId"] = state?.jobId;
101
+ resourceInputs["oplogInc"] = state?.oplogInc;
102
+ resourceInputs["oplogTs"] = state?.oplogTs;
103
+ resourceInputs["pointInTimeUtcSeconds"] = state?.pointInTimeUtcSeconds;
104
+ resourceInputs["projectId"] = state?.projectId;
105
+ resourceInputs["restoredDocuments"] = state?.restoredDocuments;
106
+ resourceInputs["snapshotId"] = state?.snapshotId;
107
+ resourceInputs["state"] = state?.state;
108
+ resourceInputs["targetClusterName"] = state?.targetClusterName;
109
+ resourceInputs["targetProjectId"] = state?.targetProjectId;
110
+ resourceInputs["timeouts"] = state?.timeouts;
111
+ resourceInputs["totalDocuments"] = state?.totalDocuments;
112
+ resourceInputs["writeStrategy"] = state?.writeStrategy;
113
+ }
114
+ else {
115
+ const args = argsOrState;
116
+ if (args?.clusterName === undefined && !opts.urn) {
117
+ throw new Error("Missing required property 'clusterName'");
118
+ }
119
+ if (args?.indexStrategy === undefined && !opts.urn) {
120
+ throw new Error("Missing required property 'indexStrategy'");
121
+ }
122
+ if (args?.projectId === undefined && !opts.urn) {
123
+ throw new Error("Missing required property 'projectId'");
124
+ }
125
+ if (args?.targetClusterName === undefined && !opts.urn) {
126
+ throw new Error("Missing required property 'targetClusterName'");
127
+ }
128
+ if (args?.targetProjectId === undefined && !opts.urn) {
129
+ throw new Error("Missing required property 'targetProjectId'");
130
+ }
131
+ if (args?.writeStrategy === undefined && !opts.urn) {
132
+ throw new Error("Missing required property 'writeStrategy'");
133
+ }
134
+ resourceInputs["clusterName"] = args?.clusterName;
135
+ resourceInputs["collectionSuffix"] = args?.collectionSuffix;
136
+ resourceInputs["collections"] = args?.collections;
137
+ resourceInputs["databaseSuffix"] = args?.databaseSuffix;
138
+ resourceInputs["databases"] = args?.databases;
139
+ resourceInputs["indexStrategy"] = args?.indexStrategy;
140
+ resourceInputs["oplogInc"] = args?.oplogInc;
141
+ resourceInputs["oplogTs"] = args?.oplogTs;
142
+ resourceInputs["pointInTimeUtcSeconds"] = args?.pointInTimeUtcSeconds;
143
+ resourceInputs["projectId"] = args?.projectId;
144
+ resourceInputs["snapshotId"] = args?.snapshotId;
145
+ resourceInputs["targetClusterName"] = args?.targetClusterName;
146
+ resourceInputs["targetProjectId"] = args?.targetProjectId;
147
+ resourceInputs["timeouts"] = args?.timeouts;
148
+ resourceInputs["writeStrategy"] = args?.writeStrategy;
149
+ resourceInputs["createdAt"] = undefined /*out*/;
150
+ resourceInputs["errorMessage"] = undefined /*out*/;
151
+ resourceInputs["finishedAt"] = undefined /*out*/;
152
+ resourceInputs["indexStatus"] = undefined /*out*/;
153
+ resourceInputs["jobId"] = undefined /*out*/;
154
+ resourceInputs["restoredDocuments"] = undefined /*out*/;
155
+ resourceInputs["state"] = undefined /*out*/;
156
+ resourceInputs["totalDocuments"] = undefined /*out*/;
157
+ }
158
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
159
+ super(CloudBackupCollectionRestoreJob.__pulumiType, name, resourceInputs, opts);
160
+ }
161
+ }
162
+ exports.CloudBackupCollectionRestoreJob = CloudBackupCollectionRestoreJob;
163
+ //# sourceMappingURL=cloudBackupCollectionRestoreJob.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cloudBackupCollectionRestoreJob.js","sourceRoot":"","sources":["../cloudBackupCollectionRestoreJob.ts"],"names":[],"mappings":"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"}