@pulumi/mongodbatlas 3.31.0-alpha.1743573973 → 3.31.0-alpha.1744183452
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/federatedDatabaseInstance.d.ts +2 -2
- package/federatedDatabaseInstance.js +2 -2
- package/getOnlineArchive.d.ts +22 -0
- package/getOnlineArchive.js +22 -0
- package/getOnlineArchive.js.map +1 -1
- package/getOnlineArchives.d.ts +20 -0
- package/getOnlineArchives.js +20 -0
- package/getOnlineArchives.js.map +1 -1
- package/package.json +2 -2
|
@@ -117,13 +117,13 @@ import * as outputs from "./types/output";
|
|
|
117
117
|
* - The Federated Database Instance can be imported using project ID, name of the instance, in the format `project_id`--`name`, e.g.
|
|
118
118
|
*
|
|
119
119
|
* ```sh
|
|
120
|
-
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance
|
|
120
|
+
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance mongodbatlas_federated_database_instance.example 1112222b3bf99403840e8934--test
|
|
121
121
|
* ```
|
|
122
122
|
*
|
|
123
123
|
* - The Federated Database Instance can be imported using project ID, name of the instance and name of the AWS S3 bucket, in the format `project_id`--`name`--`aws_test_s3_bucket`, e.g.
|
|
124
124
|
*
|
|
125
125
|
* ```sh
|
|
126
|
-
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance
|
|
126
|
+
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance mongodbatlas_federated_database_instance.example 1112222b3bf99403840e8934--test--s3-test
|
|
127
127
|
* ```
|
|
128
128
|
*
|
|
129
129
|
* See [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Data-Federation) Documentation for more information.
|
|
@@ -121,13 +121,13 @@ const utilities = require("./utilities");
|
|
|
121
121
|
* - The Federated Database Instance can be imported using project ID, name of the instance, in the format `project_id`--`name`, e.g.
|
|
122
122
|
*
|
|
123
123
|
* ```sh
|
|
124
|
-
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance
|
|
124
|
+
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance mongodbatlas_federated_database_instance.example 1112222b3bf99403840e8934--test
|
|
125
125
|
* ```
|
|
126
126
|
*
|
|
127
127
|
* - The Federated Database Instance can be imported using project ID, name of the instance and name of the AWS S3 bucket, in the format `project_id`--`name`--`aws_test_s3_bucket`, e.g.
|
|
128
128
|
*
|
|
129
129
|
* ```sh
|
|
130
|
-
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance
|
|
130
|
+
* $ pulumi import mongodbatlas:index/federatedDatabaseInstance:FederatedDatabaseInstance mongodbatlas_federated_database_instance.example 1112222b3bf99403840e8934--test--s3-test
|
|
131
131
|
* ```
|
|
132
132
|
*
|
|
133
133
|
* See [MongoDB Atlas API](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Data-Federation) Documentation for more information.
|
package/getOnlineArchive.d.ts
CHANGED
|
@@ -9,6 +9,17 @@ import * as outputs from "./types/output";
|
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
15
|
+
*
|
|
16
|
+
* const test = mongodbatlas.getOnlineArchive({
|
|
17
|
+
* projectId: projectId,
|
|
18
|
+
* clusterName: clusterName,
|
|
19
|
+
* archiveId: "5ebad3c1fe9c0ab8d37d61e1",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
12
23
|
* ## Attributes reference
|
|
13
24
|
*
|
|
14
25
|
* * `dbName` - Name of the database that contains the collection.
|
|
@@ -102,6 +113,17 @@ export interface GetOnlineArchiveResult {
|
|
|
102
113
|
*
|
|
103
114
|
* ## Example Usage
|
|
104
115
|
*
|
|
116
|
+
* ```typescript
|
|
117
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
118
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
119
|
+
*
|
|
120
|
+
* const test = mongodbatlas.getOnlineArchive({
|
|
121
|
+
* projectId: projectId,
|
|
122
|
+
* clusterName: clusterName,
|
|
123
|
+
* archiveId: "5ebad3c1fe9c0ab8d37d61e1",
|
|
124
|
+
* });
|
|
125
|
+
* ```
|
|
126
|
+
*
|
|
105
127
|
* ## Attributes reference
|
|
106
128
|
*
|
|
107
129
|
* * `dbName` - Name of the database that contains the collection.
|
package/getOnlineArchive.js
CHANGED
|
@@ -14,6 +14,17 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
20
|
+
*
|
|
21
|
+
* const test = mongodbatlas.getOnlineArchive({
|
|
22
|
+
* projectId: projectId,
|
|
23
|
+
* clusterName: clusterName,
|
|
24
|
+
* archiveId: "5ebad3c1fe9c0ab8d37d61e1",
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
17
28
|
* ## Attributes reference
|
|
18
29
|
*
|
|
19
30
|
* * `dbName` - Name of the database that contains the collection.
|
|
@@ -76,6 +87,17 @@ exports.getOnlineArchive = getOnlineArchive;
|
|
|
76
87
|
*
|
|
77
88
|
* ## Example Usage
|
|
78
89
|
*
|
|
90
|
+
* ```typescript
|
|
91
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
92
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
93
|
+
*
|
|
94
|
+
* const test = mongodbatlas.getOnlineArchive({
|
|
95
|
+
* projectId: projectId,
|
|
96
|
+
* clusterName: clusterName,
|
|
97
|
+
* archiveId: "5ebad3c1fe9c0ab8d37d61e1",
|
|
98
|
+
* });
|
|
99
|
+
* ```
|
|
100
|
+
*
|
|
79
101
|
* ## Attributes reference
|
|
80
102
|
*
|
|
81
103
|
* * `dbName` - Name of the database that contains the collection.
|
package/getOnlineArchive.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOnlineArchive.js","sourceRoot":"","sources":["../getOnlineArchive.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getOnlineArchive.js","sourceRoot":"","sources":["../getOnlineArchive.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+DG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4CAOC;AA0CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+DG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAAiC;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sDAAsD,EAAE;QACvF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wDAOC"}
|
package/getOnlineArchives.d.ts
CHANGED
|
@@ -9,6 +9,16 @@ import * as outputs from "./types/output";
|
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
11
|
*
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
15
|
+
*
|
|
16
|
+
* const test = mongodbatlas.getOnlineArchives({
|
|
17
|
+
* projectId: projectId,
|
|
18
|
+
* clusterName: clusterName,
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
12
22
|
* ## Attributes reference
|
|
13
23
|
*
|
|
14
24
|
* * `dbName` - Name of the database that contains the collection.
|
|
@@ -91,6 +101,16 @@ export interface GetOnlineArchivesResult {
|
|
|
91
101
|
*
|
|
92
102
|
* ## Example Usage
|
|
93
103
|
*
|
|
104
|
+
* ```typescript
|
|
105
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
106
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
107
|
+
*
|
|
108
|
+
* const test = mongodbatlas.getOnlineArchives({
|
|
109
|
+
* projectId: projectId,
|
|
110
|
+
* clusterName: clusterName,
|
|
111
|
+
* });
|
|
112
|
+
* ```
|
|
113
|
+
*
|
|
94
114
|
* ## Attributes reference
|
|
95
115
|
*
|
|
96
116
|
* * `dbName` - Name of the database that contains the collection.
|
package/getOnlineArchives.js
CHANGED
|
@@ -14,6 +14,16 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
20
|
+
*
|
|
21
|
+
* const test = mongodbatlas.getOnlineArchives({
|
|
22
|
+
* projectId: projectId,
|
|
23
|
+
* clusterName: clusterName,
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
17
27
|
* ## Attributes reference
|
|
18
28
|
*
|
|
19
29
|
* * `dbName` - Name of the database that contains the collection.
|
|
@@ -73,6 +83,16 @@ exports.getOnlineArchives = getOnlineArchives;
|
|
|
73
83
|
*
|
|
74
84
|
* ## Example Usage
|
|
75
85
|
*
|
|
86
|
+
* ```typescript
|
|
87
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
88
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
89
|
+
*
|
|
90
|
+
* const test = mongodbatlas.getOnlineArchives({
|
|
91
|
+
* projectId: projectId,
|
|
92
|
+
* clusterName: clusterName,
|
|
93
|
+
* });
|
|
94
|
+
* ```
|
|
95
|
+
*
|
|
76
96
|
* ## Attributes reference
|
|
77
97
|
*
|
|
78
98
|
* * `dbName` - Name of the database that contains the collection.
|
package/getOnlineArchives.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOnlineArchives.js","sourceRoot":"","sources":["../getOnlineArchives.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getOnlineArchives.js","sourceRoot":"","sources":["../getOnlineArchives.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4DG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;AAiCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4DG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/mongodbatlas",
|
|
3
|
-
"version": "3.31.0-alpha.
|
|
3
|
+
"version": "3.31.0-alpha.1744183452",
|
|
4
4
|
"description": "A Pulumi package for creating and managing mongodbatlas cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "mongodbatlas",
|
|
26
|
-
"version": "3.31.0-alpha.
|
|
26
|
+
"version": "3.31.0-alpha.1744183452"
|
|
27
27
|
}
|
|
28
28
|
}
|