@pulumi/mongodbatlas 3.35.0-alpha.1754720113 → 3.35.0-alpha.1754930219
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/alertConfiguration.d.ts +3 -3
- package/apiKeyProjectAssignment.d.ts +125 -0
- package/apiKeyProjectAssignment.js +112 -0
- package/apiKeyProjectAssignment.js.map +1 -0
- package/encryptionAtRestPrivateEndpoint.d.ts +1 -1
- package/encryptionAtRestPrivateEndpoint.js +1 -1
- package/eventTrigger.d.ts +3 -3
- package/federatedDatabaseInstance.d.ts +64 -9
- package/federatedDatabaseInstance.js +49 -0
- package/federatedDatabaseInstance.js.map +1 -1
- package/federatedSettingsOrgRoleMapping.d.ts +3 -3
- package/getApiKeyProjectAssignment.d.ts +135 -0
- package/getApiKeyProjectAssignment.js +112 -0
- package/getApiKeyProjectAssignment.js.map +1 -0
- package/getApiKeyProjectAssignments.d.ts +124 -0
- package/getApiKeyProjectAssignments.js +110 -0
- package/getApiKeyProjectAssignments.js.map +1 -0
- package/getEncryptionAtRest.d.ts +2 -2
- package/getEncryptionAtRest.js +2 -2
- package/getEventTrigger.d.ts +2 -2
- package/getEventTriggers.d.ts +2 -2
- package/getFederatedDatabaseInstance.d.ts +14 -14
- package/getFederatedDatabaseInstance.js +14 -14
- package/getFederatedDatabaseInstances.d.ts +2 -2
- package/getFederatedDatabaseInstances.js +2 -2
- package/getFederatedSettingsOrgRoleMapping.d.ts +7 -1
- package/getFederatedSettingsOrgRoleMapping.js.map +1 -1
- package/getOnlineArchive.d.ts +2 -2
- package/getOnlineArchive.js +2 -2
- package/getOnlineArchives.d.ts +2 -2
- package/getOnlineArchives.js +2 -2
- package/getStreamAccountDetails.d.ts +3 -3
- package/getStreamConnections.d.ts +3 -0
- package/getStreamConnections.js.map +1 -1
- package/getStreamInstances.d.ts +3 -0
- package/getStreamInstances.js.map +1 -1
- package/getThirdPartyIntegration.d.ts +6 -2
- package/getThirdPartyIntegration.js.map +1 -1
- package/globalClusterConfig.d.ts +1 -1
- package/globalClusterConfig.js +1 -1
- package/index.d.ts +9 -0
- package/index.js +17 -6
- package/index.js.map +1 -1
- package/mongodbEmployeeAccessGrant.d.ts +1 -1
- package/mongodbEmployeeAccessGrant.js +1 -1
- package/organization.d.ts +33 -22
- package/organization.js +14 -12
- package/organization.js.map +1 -1
- package/package.json +2 -2
- package/privatelinkEndpointServiceDataFederationOnlineArchive.d.ts +1 -1
- package/privatelinkEndpointServiceDataFederationOnlineArchive.js +1 -1
- package/pushBasedLogExport.d.ts +1 -1
- package/pushBasedLogExport.js +1 -1
- package/resourcePolicy.d.ts +1 -1
- package/resourcePolicy.js +1 -1
- package/streamProcessor.d.ts +1 -1
- package/streamProcessor.js +1 -1
- package/thirdPartyIntegration.d.ts +3 -0
- package/thirdPartyIntegration.js +2 -0
- package/thirdPartyIntegration.js.map +1 -1
- package/types/input.d.ts +55 -7
- package/types/output.d.ts +89 -24
|
@@ -23,24 +23,24 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
24
24
|
*
|
|
25
25
|
* const test = mongodbatlas.getFederatedDatabaseInstance({
|
|
26
|
-
* projectId: "
|
|
26
|
+
* projectId: "<PROJECT_ID>",
|
|
27
27
|
* name: "TENANT NAME OF THE FEDERATED DATABASE INSTANCE",
|
|
28
28
|
* });
|
|
29
29
|
* ```
|
|
30
30
|
*
|
|
31
|
-
*
|
|
31
|
+
* ## Example of Azure Blob Storage as storage database
|
|
32
32
|
*
|
|
33
33
|
* ```typescript
|
|
34
34
|
* import * as pulumi from "@pulumi/pulumi";
|
|
35
35
|
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
36
36
|
*
|
|
37
37
|
* const test = mongodbatlas.getFederatedDatabaseInstance({
|
|
38
|
-
* projectId: "
|
|
39
|
-
* name: "
|
|
38
|
+
* projectId: "<PROJECT_ID>",
|
|
39
|
+
* name: "<TENANT_NAME_OF_THE_FEDERATED_DATABASE_INSTANCE>",
|
|
40
40
|
* cloudProviderConfig: {
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
* },
|
|
41
|
+
* azures: [{
|
|
42
|
+
* roleId: "<AZURE_ROLE_ID>",
|
|
43
|
+
* }],
|
|
44
44
|
* },
|
|
45
45
|
* });
|
|
46
46
|
* ```
|
|
@@ -72,24 +72,24 @@ exports.getFederatedDatabaseInstance = getFederatedDatabaseInstance;
|
|
|
72
72
|
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
73
73
|
*
|
|
74
74
|
* const test = mongodbatlas.getFederatedDatabaseInstance({
|
|
75
|
-
* projectId: "
|
|
75
|
+
* projectId: "<PROJECT_ID>",
|
|
76
76
|
* name: "TENANT NAME OF THE FEDERATED DATABASE INSTANCE",
|
|
77
77
|
* });
|
|
78
78
|
* ```
|
|
79
79
|
*
|
|
80
|
-
*
|
|
80
|
+
* ## Example of Azure Blob Storage as storage database
|
|
81
81
|
*
|
|
82
82
|
* ```typescript
|
|
83
83
|
* import * as pulumi from "@pulumi/pulumi";
|
|
84
84
|
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
85
85
|
*
|
|
86
86
|
* const test = mongodbatlas.getFederatedDatabaseInstance({
|
|
87
|
-
* projectId: "
|
|
88
|
-
* name: "
|
|
87
|
+
* projectId: "<PROJECT_ID>",
|
|
88
|
+
* name: "<TENANT_NAME_OF_THE_FEDERATED_DATABASE_INSTANCE>",
|
|
89
89
|
* cloudProviderConfig: {
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
* },
|
|
90
|
+
* azures: [{
|
|
91
|
+
* roleId: "<AZURE_ROLE_ID>",
|
|
92
|
+
* }],
|
|
93
93
|
* },
|
|
94
94
|
* });
|
|
95
95
|
* ```
|
|
@@ -3,7 +3,7 @@ import * as outputs from "./types/output";
|
|
|
3
3
|
/**
|
|
4
4
|
* ## # Data Source: mongodbatlas.getFederatedDatabaseInstances
|
|
5
5
|
*
|
|
6
|
-
* `
|
|
6
|
+
* `mongodbatlas.getFederatedDatabaseInstances` provides a Federated Database Instance data source.
|
|
7
7
|
*
|
|
8
8
|
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
9
9
|
*
|
|
@@ -38,7 +38,7 @@ export interface GetFederatedDatabaseInstancesResult {
|
|
|
38
38
|
/**
|
|
39
39
|
* ## # Data Source: mongodbatlas.getFederatedDatabaseInstances
|
|
40
40
|
*
|
|
41
|
-
* `
|
|
41
|
+
* `mongodbatlas.getFederatedDatabaseInstances` provides a Federated Database Instance data source.
|
|
42
42
|
*
|
|
43
43
|
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
44
44
|
*
|
|
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* ## # Data Source: mongodbatlas.getFederatedDatabaseInstances
|
|
10
10
|
*
|
|
11
|
-
* `
|
|
11
|
+
* `mongodbatlas.getFederatedDatabaseInstances` provides a Federated Database Instance data source.
|
|
12
12
|
*
|
|
13
13
|
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
14
14
|
*
|
|
@@ -26,7 +26,7 @@ exports.getFederatedDatabaseInstances = getFederatedDatabaseInstances;
|
|
|
26
26
|
/**
|
|
27
27
|
* ## # Data Source: mongodbatlas.getFederatedDatabaseInstances
|
|
28
28
|
*
|
|
29
|
-
* `
|
|
29
|
+
* `mongodbatlas.getFederatedDatabaseInstances` provides a Federated Database Instance data source.
|
|
30
30
|
*
|
|
31
31
|
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
32
32
|
*
|
|
@@ -65,6 +65,9 @@ export interface GetFederatedSettingsOrgRoleMappingArgs {
|
|
|
65
65
|
* Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
|
|
66
66
|
*/
|
|
67
67
|
orgId: string;
|
|
68
|
+
/**
|
|
69
|
+
* Unique 24-hexadecimal digit string that identifies this role mapping.
|
|
70
|
+
*/
|
|
68
71
|
roleMappingId: string;
|
|
69
72
|
}
|
|
70
73
|
/**
|
|
@@ -72,7 +75,7 @@ export interface GetFederatedSettingsOrgRoleMappingArgs {
|
|
|
72
75
|
*/
|
|
73
76
|
export interface GetFederatedSettingsOrgRoleMappingResult {
|
|
74
77
|
/**
|
|
75
|
-
* Unique
|
|
78
|
+
* Unique label that identifies the identity provider group to which this role mapping applies.
|
|
76
79
|
*/
|
|
77
80
|
readonly externalGroupName: string;
|
|
78
81
|
readonly federationSettingsId: string;
|
|
@@ -152,5 +155,8 @@ export interface GetFederatedSettingsOrgRoleMappingOutputArgs {
|
|
|
152
155
|
* Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
|
|
153
156
|
*/
|
|
154
157
|
orgId: pulumi.Input<string>;
|
|
158
|
+
/**
|
|
159
|
+
* Unique 24-hexadecimal digit string that identifies this role mapping.
|
|
160
|
+
*/
|
|
155
161
|
roleMappingId: pulumi.Input<string>;
|
|
156
162
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFederatedSettingsOrgRoleMapping.js","sourceRoot":"","sources":["../getFederatedSettingsOrgRoleMapping.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0FAA0F,EAAE;QACrH,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gFAOC;
|
|
1
|
+
{"version":3,"file":"getFederatedSettingsOrgRoleMapping.js","sourceRoot":"","sources":["../getFederatedSettingsOrgRoleMapping.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0FAA0F,EAAE;QACrH,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gFAOC;AAwCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,SAAgB,wCAAwC,CAAC,IAAkD,EAAE,IAAiC;IAC1I,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0FAA0F,EAAE;QAC3H,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4FAOC"}
|
package/getOnlineArchive.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ import * as outputs from "./types/output";
|
|
|
45
45
|
*
|
|
46
46
|
* ### Data Process Region
|
|
47
47
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
48
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
48
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
49
49
|
*
|
|
50
50
|
* ### Schedule
|
|
51
51
|
*
|
|
@@ -149,7 +149,7 @@ export interface GetOnlineArchiveResult {
|
|
|
149
149
|
*
|
|
150
150
|
* ### Data Process Region
|
|
151
151
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
152
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
152
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
153
153
|
*
|
|
154
154
|
* ### Schedule
|
|
155
155
|
*
|
package/getOnlineArchive.js
CHANGED
|
@@ -50,7 +50,7 @@ const utilities = require("./utilities");
|
|
|
50
50
|
*
|
|
51
51
|
* ### Data Process Region
|
|
52
52
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
53
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
53
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
54
54
|
*
|
|
55
55
|
* ### Schedule
|
|
56
56
|
*
|
|
@@ -123,7 +123,7 @@ exports.getOnlineArchive = getOnlineArchive;
|
|
|
123
123
|
*
|
|
124
124
|
* ### Data Process Region
|
|
125
125
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
126
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
126
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
127
127
|
*
|
|
128
128
|
* ### Schedule
|
|
129
129
|
*
|
package/getOnlineArchives.d.ts
CHANGED
|
@@ -44,7 +44,7 @@ import * as outputs from "./types/output";
|
|
|
44
44
|
*
|
|
45
45
|
* ### Data Process Region
|
|
46
46
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
47
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
47
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
48
48
|
*
|
|
49
49
|
* ### Schedule
|
|
50
50
|
*
|
|
@@ -136,7 +136,7 @@ export interface GetOnlineArchivesResult {
|
|
|
136
136
|
*
|
|
137
137
|
* ### Data Process Region
|
|
138
138
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
139
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
139
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
140
140
|
*
|
|
141
141
|
* ### Schedule
|
|
142
142
|
*
|
package/getOnlineArchives.js
CHANGED
|
@@ -49,7 +49,7 @@ const utilities = require("./utilities");
|
|
|
49
49
|
*
|
|
50
50
|
* ### Data Process Region
|
|
51
51
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
52
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
52
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
53
53
|
*
|
|
54
54
|
* ### Schedule
|
|
55
55
|
*
|
|
@@ -118,7 +118,7 @@ exports.getOnlineArchives = getOnlineArchives;
|
|
|
118
118
|
*
|
|
119
119
|
* ### Data Process Region
|
|
120
120
|
* * `cloudProvider` - Human-readable label that identifies the Cloud service provider where you wish to store your archived data.
|
|
121
|
-
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/
|
|
121
|
+
* * `region` - Human-readable label that identifies the geographic location of the region where you wish to store your archived data. For allowed values, see [MongoDB Atlas API documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-createonlinearchive
|
|
122
122
|
*
|
|
123
123
|
* ### Schedule
|
|
124
124
|
*
|
|
@@ -32,7 +32,7 @@ export interface GetStreamAccountDetailsArgs {
|
|
|
32
32
|
*/
|
|
33
33
|
cloudProvider: string;
|
|
34
34
|
/**
|
|
35
|
-
* Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](https://www.mongodb.com/docs/
|
|
35
|
+
* Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-listprojects) endpoint to retrieve all projects to which the authenticated user has access.
|
|
36
36
|
*/
|
|
37
37
|
projectId: string;
|
|
38
38
|
regionName: string;
|
|
@@ -53,7 +53,7 @@ export interface GetStreamAccountDetailsResult {
|
|
|
53
53
|
*/
|
|
54
54
|
readonly id: string;
|
|
55
55
|
/**
|
|
56
|
-
* Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](https://www.mongodb.com/docs/
|
|
56
|
+
* Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-listprojects) endpoint to retrieve all projects to which the authenticated user has access.
|
|
57
57
|
*/
|
|
58
58
|
readonly projectId: string;
|
|
59
59
|
readonly regionName: string;
|
|
@@ -93,7 +93,7 @@ export interface GetStreamAccountDetailsOutputArgs {
|
|
|
93
93
|
*/
|
|
94
94
|
cloudProvider: pulumi.Input<string>;
|
|
95
95
|
/**
|
|
96
|
-
* Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](https://www.mongodb.com/docs/
|
|
96
|
+
* Unique 24-hexadecimal digit string that identifies your project. Use the [/groups](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-listprojects) endpoint to retrieve all projects to which the authenticated user has access.
|
|
97
97
|
*/
|
|
98
98
|
projectId: pulumi.Input<string>;
|
|
99
99
|
regionName: pulumi.Input<string>;
|
|
@@ -43,6 +43,9 @@ export interface GetStreamConnectionsArgs {
|
|
|
43
43
|
* A collection of values returned by getStreamConnections.
|
|
44
44
|
*/
|
|
45
45
|
export interface GetStreamConnectionsResult {
|
|
46
|
+
/**
|
|
47
|
+
* @deprecated This parameter is deprecated.
|
|
48
|
+
*/
|
|
46
49
|
readonly id: string;
|
|
47
50
|
/**
|
|
48
51
|
* Human-readable label that identifies the stream instance.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStreamConnections.js","sourceRoot":"","sources":["../getStreamConnections.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oDAQC;
|
|
1
|
+
{"version":3,"file":"getStreamConnections.js","sourceRoot":"","sources":["../getStreamConnections.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oDAQC;AAmDD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8DAA8D,EAAE;QAC/F,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gEAQC"}
|
package/getStreamInstances.d.ts
CHANGED
|
@@ -38,6 +38,9 @@ export interface GetStreamInstancesArgs {
|
|
|
38
38
|
* A collection of values returned by getStreamInstances.
|
|
39
39
|
*/
|
|
40
40
|
export interface GetStreamInstancesResult {
|
|
41
|
+
/**
|
|
42
|
+
* @deprecated This parameter is deprecated.
|
|
43
|
+
*/
|
|
41
44
|
readonly id: string;
|
|
42
45
|
readonly itemsPerPage?: number;
|
|
43
46
|
readonly pageNum?: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStreamInstances.js","sourceRoot":"","sources":["../getStreamInstances.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;
|
|
1
|
+
{"version":3,"file":"getStreamInstances.js","sourceRoot":"","sources":["../getStreamInstances.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gDAOC;AA2CD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4DAOC"}
|
|
@@ -70,7 +70,7 @@ export interface GetThirdPartyIntegrationResult {
|
|
|
70
70
|
readonly microsoftTeamsWebhookUrl: string;
|
|
71
71
|
readonly projectId: string;
|
|
72
72
|
/**
|
|
73
|
-
* Two-letter code that indicates which API URL to use. See the `region` response field of [MongoDB API Third-Party Service Integration documentation](https://www.mongodb.com/docs/
|
|
73
|
+
* Two-letter code that indicates which API URL to use. See the `region` response field of [MongoDB API Third-Party Service Integration documentation](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/operation/operation-getthirdpartyintegration) for more details. Opsgenie will use US by default.
|
|
74
74
|
* * `VICTOR_OPS`
|
|
75
75
|
*/
|
|
76
76
|
readonly region: string;
|
|
@@ -90,9 +90,13 @@ export interface GetThirdPartyIntegrationResult {
|
|
|
90
90
|
readonly sendCollectionLatencyMetrics: boolean;
|
|
91
91
|
/**
|
|
92
92
|
* Toggle sending database metrics that includes database names and metrics on the number of collections, storage size, and index size.
|
|
93
|
-
* * `OPS_GENIE`
|
|
94
93
|
*/
|
|
95
94
|
readonly sendDatabaseMetrics: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Toggle sending user provided group and cluster resource tags with the datadog metrics.
|
|
97
|
+
* * `OPS_GENIE`
|
|
98
|
+
*/
|
|
99
|
+
readonly sendUserProvidedResourceTags: boolean;
|
|
96
100
|
/**
|
|
97
101
|
* Indicates which service discovery method is used, either file or http.
|
|
98
102
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getThirdPartyIntegration.js","sourceRoot":"","sources":["../getThirdPartyIntegration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC;
|
|
1
|
+
{"version":3,"file":"getThirdPartyIntegration.js","sourceRoot":"","sources":["../getThirdPartyIntegration.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC;AA+FD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAAiC;IACtH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sEAAsE,EAAE;QACvG,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wEAMC"}
|
package/globalClusterConfig.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ import * as outputs from "./types/output";
|
|
|
10
10
|
*
|
|
11
11
|
* > **NOTE:** This resource can only be used with Atlas-managed clusters. See doc for `globalClusterSelfManagedSharding` attribute in `mongodbatlas.AdvancedCluster` resource for more information.
|
|
12
12
|
*
|
|
13
|
-
* > **IMPORTANT:** You can update a Global Cluster Configuration to add new custom zone mappings and managed namespaces. However, once configured, you can't modify or partially delete custom zone mappings (you must remove them all at once). You can add or remove, but can't modify, managed namespaces. Any update that changes an existing managed namespace results in an error. [Read more about Global Cluster Configuration](https://www.mongodb.com/docs/atlas/global-clusters/). For more details, see [Global Clusters API](https://www.mongodb.com/docs/
|
|
13
|
+
* > **IMPORTANT:** You can update a Global Cluster Configuration to add new custom zone mappings and managed namespaces. However, once configured, you can't modify or partially delete custom zone mappings (you must remove them all at once). You can add or remove, but can't modify, managed namespaces. Any update that changes an existing managed namespace results in an error. [Read more about Global Cluster Configuration](https://www.mongodb.com/docs/atlas/global-clusters/). For more details, see [Global Clusters API](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/group/endpoint-global-clusters)
|
|
14
14
|
*
|
|
15
15
|
* ## Examples Usage
|
|
16
16
|
*
|
package/globalClusterConfig.js
CHANGED
|
@@ -14,7 +14,7 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* > **NOTE:** This resource can only be used with Atlas-managed clusters. See doc for `globalClusterSelfManagedSharding` attribute in `mongodbatlas.AdvancedCluster` resource for more information.
|
|
16
16
|
*
|
|
17
|
-
* > **IMPORTANT:** You can update a Global Cluster Configuration to add new custom zone mappings and managed namespaces. However, once configured, you can't modify or partially delete custom zone mappings (you must remove them all at once). You can add or remove, but can't modify, managed namespaces. Any update that changes an existing managed namespace results in an error. [Read more about Global Cluster Configuration](https://www.mongodb.com/docs/atlas/global-clusters/). For more details, see [Global Clusters API](https://www.mongodb.com/docs/
|
|
17
|
+
* > **IMPORTANT:** You can update a Global Cluster Configuration to add new custom zone mappings and managed namespaces. However, once configured, you can't modify or partially delete custom zone mappings (you must remove them all at once). You can add or remove, but can't modify, managed namespaces. Any update that changes an existing managed namespace results in an error. [Read more about Global Cluster Configuration](https://www.mongodb.com/docs/atlas/global-clusters/). For more details, see [Global Clusters API](https://www.mongodb.com/docs/api/doc/atlas-admin-api-v2/group/endpoint-global-clusters)
|
|
18
18
|
*
|
|
19
19
|
* ## Examples Usage
|
|
20
20
|
*
|
package/index.d.ts
CHANGED
|
@@ -10,6 +10,9 @@ export declare const AlertConfiguration: typeof import("./alertConfiguration").A
|
|
|
10
10
|
export { ApiKeyArgs, ApiKeyState } from "./apiKey";
|
|
11
11
|
export type ApiKey = import("./apiKey").ApiKey;
|
|
12
12
|
export declare const ApiKey: typeof import("./apiKey").ApiKey;
|
|
13
|
+
export { ApiKeyProjectAssignmentArgs, ApiKeyProjectAssignmentState } from "./apiKeyProjectAssignment";
|
|
14
|
+
export type ApiKeyProjectAssignment = import("./apiKeyProjectAssignment").ApiKeyProjectAssignment;
|
|
15
|
+
export declare const ApiKeyProjectAssignment: typeof import("./apiKeyProjectAssignment").ApiKeyProjectAssignment;
|
|
13
16
|
export { AuditingArgs, AuditingState } from "./auditing";
|
|
14
17
|
export type Auditing = import("./auditing").Auditing;
|
|
15
18
|
export declare const Auditing: typeof import("./auditing").Auditing;
|
|
@@ -106,6 +109,12 @@ export declare const getAlertConfigurationsOutput: typeof import("./getAlertConf
|
|
|
106
109
|
export { GetApiKeyArgs, GetApiKeyResult, GetApiKeyOutputArgs } from "./getApiKey";
|
|
107
110
|
export declare const getApiKey: typeof import("./getApiKey").getApiKey;
|
|
108
111
|
export declare const getApiKeyOutput: typeof import("./getApiKey").getApiKeyOutput;
|
|
112
|
+
export { GetApiKeyProjectAssignmentArgs, GetApiKeyProjectAssignmentResult, GetApiKeyProjectAssignmentOutputArgs } from "./getApiKeyProjectAssignment";
|
|
113
|
+
export declare const getApiKeyProjectAssignment: typeof import("./getApiKeyProjectAssignment").getApiKeyProjectAssignment;
|
|
114
|
+
export declare const getApiKeyProjectAssignmentOutput: typeof import("./getApiKeyProjectAssignment").getApiKeyProjectAssignmentOutput;
|
|
115
|
+
export { GetApiKeyProjectAssignmentsArgs, GetApiKeyProjectAssignmentsResult, GetApiKeyProjectAssignmentsOutputArgs } from "./getApiKeyProjectAssignments";
|
|
116
|
+
export declare const getApiKeyProjectAssignments: typeof import("./getApiKeyProjectAssignments").getApiKeyProjectAssignments;
|
|
117
|
+
export declare const getApiKeyProjectAssignmentsOutput: typeof import("./getApiKeyProjectAssignments").getApiKeyProjectAssignmentsOutput;
|
|
109
118
|
export { GetApiKeysArgs, GetApiKeysResult, GetApiKeysOutputArgs } from "./getApiKeys";
|
|
110
119
|
export declare const getApiKeys: typeof import("./getApiKeys").getApiKeys;
|
|
111
120
|
export declare const getApiKeysOutput: typeof import("./getApiKeys").getApiKeysOutput;
|
package/index.js
CHANGED
|
@@ -16,12 +16,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
17
|
};
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
23
|
-
exports.
|
|
24
|
-
exports.types = exports.config = exports.X509AuthenticationDatabaseUser = exports.ThirdPartyIntegration = exports.Teams = exports.Team = exports.StreamProcessor = exports.StreamPrivatelinkEndpoint = exports.StreamInstance = exports.StreamConnection = exports.ServerlessInstance = exports.SearchIndex = exports.SearchDeployment = exports.ResourcePolicy = exports.PushBasedLogExport = exports.ProjectIpAccessList = exports.ProjectInvitation = exports.ProjectApiKey = exports.Project = exports.PrivatelinkEndpointServiceServerless = exports.PrivatelinkEndpointServiceDataFederationOnlineArchive = exports.PrivatelinkEndpointServerless = exports.PrivateLinkEndpointService = exports.PrivateLinkEndpoint = exports.PrivateEndpointRegionalMode = exports.Organization = exports.OrgInvitation = exports.OnlineArchive = exports.NetworkPeering = exports.NetworkContainer = exports.MongodbEmployeeAccessGrant = exports.MaintenanceWindow = exports.LdapVerify = exports.LdapConfiguration = exports.GlobalClusterConfig = exports.getX509AuthenticationDatabaseUserOutput = exports.getX509AuthenticationDatabaseUser = exports.getThirdPartyIntegrationsOutput = exports.getThirdPartyIntegrations = void 0;
|
|
19
|
+
exports.getApiKeys = exports.getApiKeyProjectAssignmentsOutput = exports.getApiKeyProjectAssignments = exports.getApiKeyProjectAssignmentOutput = exports.getApiKeyProjectAssignment = exports.getApiKeyOutput = exports.getApiKey = exports.getAlertConfigurationsOutput = exports.getAlertConfigurations = exports.getAlertConfigurationOutput = exports.getAlertConfiguration = exports.getAdvancedClustersOutput = exports.getAdvancedClusters = exports.getAdvancedClusterOutput = exports.getAdvancedCluster = exports.getAccessListApiKeysOutput = exports.getAccessListApiKeys = exports.getAccessListApiKeyOutput = exports.getAccessListApiKey = exports.get509AuthenticationDatabaseUserOutput = exports.get509AuthenticationDatabaseUser = exports.FlexCluster = exports.FederatedSettingsOrgRoleMapping = exports.FederatedSettingsOrgConfig = exports.FederatedSettingsIdentityProvider = exports.FederatedQueryLimit = exports.FederatedDatabaseInstance = exports.EventTrigger = exports.EncryptionAtRestPrivateEndpoint = exports.EncryptionAtRest = exports.DatabaseUser = exports.DataLakePipeline = exports.CustomDnsConfigurationClusterAws = exports.CustomDbRole = exports.ClusterOutageSimulation = exports.Cluster = exports.CloudProviderAccessSetup = exports.CloudProviderAccessAuthorization = exports.CloudBackupSnapshotRestoreJob = exports.CloudBackupSnapshotExportJob = exports.CloudBackupSnapshotExportBucket = exports.CloudBackupSnapshot = exports.CloudBackupSchedule = exports.BackupCompliancePolicy = exports.Auditing = exports.ApiKeyProjectAssignment = exports.ApiKey = exports.AlertConfiguration = exports.AdvancedCluster = exports.AccessListApiKey = void 0;
|
|
20
|
+
exports.getDataLakePipelines = exports.getDataLakePipelineRunsOutput = exports.getDataLakePipelineRuns = exports.getDataLakePipelineRunOutput = exports.getDataLakePipelineRun = exports.getDataLakePipelineOutput = exports.getDataLakePipeline = exports.getCustomDnsConfigurationClusterAwsOutput = exports.getCustomDnsConfigurationClusterAws = exports.getCustomDbRolesOutput = exports.getCustomDbRoles = exports.getCustomDbRoleOutput = exports.getCustomDbRole = exports.getControlPlaneIpAddressesOutput = exports.getControlPlaneIpAddresses = exports.getClustersOutput = exports.getClusters = exports.getClusterOutageSimulationOutput = exports.getClusterOutageSimulation = exports.getClusterOutput = exports.getCluster = exports.getCloudProviderAccessSetupOutput = exports.getCloudProviderAccessSetup = exports.getCloudBackupSnapshotsOutput = exports.getCloudBackupSnapshots = exports.getCloudBackupSnapshotRestoreJobsOutput = exports.getCloudBackupSnapshotRestoreJobs = exports.getCloudBackupSnapshotRestoreJobOutput = exports.getCloudBackupSnapshotRestoreJob = exports.getCloudBackupSnapshotExportJobsOutput = exports.getCloudBackupSnapshotExportJobs = exports.getCloudBackupSnapshotExportJobOutput = exports.getCloudBackupSnapshotExportJob = exports.getCloudBackupSnapshotExportBucketsOutput = exports.getCloudBackupSnapshotExportBuckets = exports.getCloudBackupSnapshotExportBucketOutput = exports.getCloudBackupSnapshotExportBucket = exports.getCloudBackupSnapshotOutput = exports.getCloudBackupSnapshot = exports.getCloudBackupScheduleOutput = exports.getCloudBackupSchedule = exports.getBackupCompliancePolicyOutput = exports.getBackupCompliancePolicy = exports.getAuditingOutput = exports.getAuditing = exports.getAtlasUsersOutput = exports.getAtlasUsers = exports.getAtlasUserOutput = exports.getAtlasUser = exports.getApiKeysOutput = void 0;
|
|
21
|
+
exports.getGlobalClusterConfig = exports.getFlexSnapshotsOutput = exports.getFlexSnapshots = exports.getFlexSnapshotOutput = exports.getFlexSnapshot = exports.getFlexRestoreJobsOutput = exports.getFlexRestoreJobs = exports.getFlexRestoreJobOutput = exports.getFlexRestoreJob = exports.getFlexClustersOutput = exports.getFlexClusters = exports.getFlexClusterOutput = exports.getFlexCluster = exports.getFederatedSettingsOrgRoleMappingsOutput = exports.getFederatedSettingsOrgRoleMappings = exports.getFederatedSettingsOrgRoleMappingOutput = exports.getFederatedSettingsOrgRoleMapping = exports.getFederatedSettingsOrgConfigsOutput = exports.getFederatedSettingsOrgConfigs = exports.getFederatedSettingsOrgConfigOutput = exports.getFederatedSettingsOrgConfig = exports.getFederatedSettingsIdentityProvidersOutput = exports.getFederatedSettingsIdentityProviders = exports.getFederatedSettingsIdentityProviderOutput = exports.getFederatedSettingsIdentityProvider = exports.getFederatedSettingsOutput = exports.getFederatedSettings = exports.getFederatedQueryLimitsOutput = exports.getFederatedQueryLimits = exports.getFederatedQueryLimitOutput = exports.getFederatedQueryLimit = exports.getFederatedDatabaseInstancesOutput = exports.getFederatedDatabaseInstances = exports.getFederatedDatabaseInstanceOutput = exports.getFederatedDatabaseInstance = exports.getEventTriggersOutput = exports.getEventTriggers = exports.getEventTriggerOutput = exports.getEventTrigger = exports.getEncryptionAtRestPrivateEndpointsOutput = exports.getEncryptionAtRestPrivateEndpoints = exports.getEncryptionAtRestPrivateEndpointOutput = exports.getEncryptionAtRestPrivateEndpoint = exports.getEncryptionAtRestOutput = exports.getEncryptionAtRest = exports.getDatabaseUsersOutput = exports.getDatabaseUsers = exports.getDatabaseUserOutput = exports.getDatabaseUser = exports.getDataLakePipelinesOutput = void 0;
|
|
22
|
+
exports.getProjectIpAccessList = exports.getProjectInvitationOutput = exports.getProjectInvitation = exports.getProjectApiKeysOutput = exports.getProjectApiKeys = exports.getProjectApiKeyOutput = exports.getProjectApiKey = exports.getProjectOutput = exports.getProject = exports.getPrivatelinkEndpointsServiceServerlessOutput = exports.getPrivatelinkEndpointsServiceServerless = exports.getPrivatelinkEndpointServiceServerlessOutput = exports.getPrivatelinkEndpointServiceServerless = exports.getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput = exports.getPrivatelinkEndpointServiceDataFederationOnlineArchives = exports.getPrivatelinkEndpointServiceDataFederationOnlineArchiveOutput = exports.getPrivatelinkEndpointServiceDataFederationOnlineArchive = exports.getPrivateLinkEndpointServiceOutput = exports.getPrivateLinkEndpointService = exports.getPrivateLinkEndpointOutput = exports.getPrivateLinkEndpoint = exports.getPrivateEndpointRegionalModeOutput = exports.getPrivateEndpointRegionalMode = exports.getOrganizationsOutput = exports.getOrganizations = exports.getOrganizationOutput = exports.getOrganization = exports.getOrgInvitationOutput = exports.getOrgInvitation = exports.getOnlineArchivesOutput = exports.getOnlineArchives = exports.getOnlineArchiveOutput = exports.getOnlineArchive = exports.getNetworkPeeringsOutput = exports.getNetworkPeerings = exports.getNetworkPeeringOutput = exports.getNetworkPeering = exports.getNetworkContainersOutput = exports.getNetworkContainers = exports.getNetworkContainerOutput = exports.getNetworkContainer = exports.getMongodbEmployeeAccessGrantOutput = exports.getMongodbEmployeeAccessGrant = exports.getMaintenanceWindowOutput = exports.getMaintenanceWindow = exports.getLdapVerifyOutput = exports.getLdapVerify = exports.getLdapConfigurationOutput = exports.getLdapConfiguration = exports.getGlobalClusterConfigOutput = void 0;
|
|
23
|
+
exports.getTeam = exports.getStreamProcessorsOutput = exports.getStreamProcessors = exports.getStreamProcessorOutput = exports.getStreamProcessor = exports.getStreamPrivatelinkEndpointsOutput = exports.getStreamPrivatelinkEndpoints = exports.getStreamPrivatelinkEndpointOutput = exports.getStreamPrivatelinkEndpoint = exports.getStreamInstancesOutput = exports.getStreamInstances = exports.getStreamInstanceOutput = exports.getStreamInstance = exports.getStreamConnectionsOutput = exports.getStreamConnections = exports.getStreamConnectionOutput = exports.getStreamConnection = exports.getStreamAccountDetailsOutput = exports.getStreamAccountDetails = exports.getSharedTierSnapshotsOutput = exports.getSharedTierSnapshots = exports.getSharedTierSnapshotOutput = exports.getSharedTierSnapshot = exports.getSharedTierRestoreJobsOutput = exports.getSharedTierRestoreJobs = exports.getSharedTierRestoreJobOutput = exports.getSharedTierRestoreJob = exports.getServerlessInstancesOutput = exports.getServerlessInstances = exports.getServerlessInstanceOutput = exports.getServerlessInstance = exports.getSearchIndexesOutput = exports.getSearchIndexes = exports.getSearchIndexOutput = exports.getSearchIndex = exports.getSearchDeploymentOutput = exports.getSearchDeployment = exports.getRolesOrgIdOutput = exports.getRolesOrgId = exports.getResourcePolicyOutput = exports.getResourcePolicy = exports.getResourcePoliciesOutput = exports.getResourcePolicies = exports.getPushBasedLogExportOutput = exports.getPushBasedLogExport = exports.getProjectsOutput = exports.getProjects = exports.getProjectIpAddressesOutput = exports.getProjectIpAddresses = exports.getProjectIpAccessListOutput = void 0;
|
|
24
|
+
exports.types = exports.config = exports.X509AuthenticationDatabaseUser = exports.ThirdPartyIntegration = exports.Teams = exports.Team = exports.StreamProcessor = exports.StreamPrivatelinkEndpoint = exports.StreamInstance = exports.StreamConnection = exports.ServerlessInstance = exports.SearchIndex = exports.SearchDeployment = exports.ResourcePolicy = exports.PushBasedLogExport = exports.ProjectIpAccessList = exports.ProjectInvitation = exports.ProjectApiKey = exports.Project = exports.PrivatelinkEndpointServiceServerless = exports.PrivatelinkEndpointServiceDataFederationOnlineArchive = exports.PrivatelinkEndpointServerless = exports.PrivateLinkEndpointService = exports.PrivateLinkEndpoint = exports.PrivateEndpointRegionalMode = exports.Organization = exports.OrgInvitation = exports.OnlineArchive = exports.NetworkPeering = exports.NetworkContainer = exports.MongodbEmployeeAccessGrant = exports.MaintenanceWindow = exports.LdapVerify = exports.LdapConfiguration = exports.GlobalClusterConfig = exports.getX509AuthenticationDatabaseUserOutput = exports.getX509AuthenticationDatabaseUser = exports.getThirdPartyIntegrationsOutput = exports.getThirdPartyIntegrations = exports.getThirdPartyIntegrationOutput = exports.getThirdPartyIntegration = exports.getTeamsOutput = exports.getTeams = exports.getTeamOutput = void 0;
|
|
25
25
|
const pulumi = require("@pulumi/pulumi");
|
|
26
26
|
const utilities = require("./utilities");
|
|
27
27
|
exports.AccessListApiKey = null;
|
|
@@ -32,6 +32,8 @@ exports.AlertConfiguration = null;
|
|
|
32
32
|
utilities.lazyLoad(exports, ["AlertConfiguration"], () => require("./alertConfiguration"));
|
|
33
33
|
exports.ApiKey = null;
|
|
34
34
|
utilities.lazyLoad(exports, ["ApiKey"], () => require("./apiKey"));
|
|
35
|
+
exports.ApiKeyProjectAssignment = null;
|
|
36
|
+
utilities.lazyLoad(exports, ["ApiKeyProjectAssignment"], () => require("./apiKeyProjectAssignment"));
|
|
35
37
|
exports.Auditing = null;
|
|
36
38
|
utilities.lazyLoad(exports, ["Auditing"], () => require("./auditing"));
|
|
37
39
|
exports.BackupCompliancePolicy = null;
|
|
@@ -104,6 +106,12 @@ utilities.lazyLoad(exports, ["getAlertConfigurations", "getAlertConfigurationsOu
|
|
|
104
106
|
exports.getApiKey = null;
|
|
105
107
|
exports.getApiKeyOutput = null;
|
|
106
108
|
utilities.lazyLoad(exports, ["getApiKey", "getApiKeyOutput"], () => require("./getApiKey"));
|
|
109
|
+
exports.getApiKeyProjectAssignment = null;
|
|
110
|
+
exports.getApiKeyProjectAssignmentOutput = null;
|
|
111
|
+
utilities.lazyLoad(exports, ["getApiKeyProjectAssignment", "getApiKeyProjectAssignmentOutput"], () => require("./getApiKeyProjectAssignment"));
|
|
112
|
+
exports.getApiKeyProjectAssignments = null;
|
|
113
|
+
exports.getApiKeyProjectAssignmentsOutput = null;
|
|
114
|
+
utilities.lazyLoad(exports, ["getApiKeyProjectAssignments", "getApiKeyProjectAssignmentsOutput"], () => require("./getApiKeyProjectAssignments"));
|
|
107
115
|
exports.getApiKeys = null;
|
|
108
116
|
exports.getApiKeysOutput = null;
|
|
109
117
|
utilities.lazyLoad(exports, ["getApiKeys", "getApiKeysOutput"], () => require("./getApiKeys"));
|
|
@@ -504,6 +512,8 @@ const _module = {
|
|
|
504
512
|
return new exports.AlertConfiguration(name, undefined, { urn });
|
|
505
513
|
case "mongodbatlas:index/apiKey:ApiKey":
|
|
506
514
|
return new exports.ApiKey(name, undefined, { urn });
|
|
515
|
+
case "mongodbatlas:index/apiKeyProjectAssignment:ApiKeyProjectAssignment":
|
|
516
|
+
return new exports.ApiKeyProjectAssignment(name, undefined, { urn });
|
|
507
517
|
case "mongodbatlas:index/auditing:Auditing":
|
|
508
518
|
return new exports.Auditing(name, undefined, { urn });
|
|
509
519
|
case "mongodbatlas:index/backupCompliancePolicy:BackupCompliancePolicy":
|
|
@@ -627,6 +637,7 @@ pulumi.runtime.registerResourceModule("mongodbatlas", "index/accessListApiKey",
|
|
|
627
637
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/advancedCluster", _module);
|
|
628
638
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/alertConfiguration", _module);
|
|
629
639
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/apiKey", _module);
|
|
640
|
+
pulumi.runtime.registerResourceModule("mongodbatlas", "index/apiKeyProjectAssignment", _module);
|
|
630
641
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/auditing", _module);
|
|
631
642
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/backupCompliancePolicy", _module);
|
|
632
643
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/cloudBackupSchedule", _module);
|