@pulumi/mongodbatlas 3.17.0-alpha.1723037969 → 3.17.0-alpha.1723714844
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 +95 -80
- package/advancedCluster.js +81 -74
- package/advancedCluster.js.map +1 -1
- package/apiKey.d.ts +6 -18
- package/apiKey.js +6 -0
- package/apiKey.js.map +1 -1
- package/cloudBackupSchedule.d.ts +33 -15
- package/cloudBackupSchedule.js.map +1 -1
- package/cloudBackupSnapshotExportBucket.d.ts +65 -11
- package/cloudBackupSnapshotExportBucket.js +24 -3
- package/cloudBackupSnapshotExportBucket.js.map +1 -1
- package/cloudBackupSnapshotRestoreJob.d.ts +0 -12
- package/cloudBackupSnapshotRestoreJob.js +0 -2
- package/cloudBackupSnapshotRestoreJob.js.map +1 -1
- package/getAdvancedCluster.d.ts +104 -3
- package/getAdvancedCluster.js +91 -0
- package/getAdvancedCluster.js.map +1 -1
- package/getAdvancedClusters.d.ts +99 -0
- package/getAdvancedClusters.js +91 -0
- package/getAdvancedClusters.js.map +1 -1
- package/getCloudBackupSchedule.d.ts +20 -77
- package/getCloudBackupSchedule.js +1 -72
- package/getCloudBackupSchedule.js.map +1 -1
- package/getCloudBackupSnapshotExportBucket.d.ts +15 -14
- package/getCloudBackupSnapshotExportBucket.js +0 -1
- package/getCloudBackupSnapshotExportBucket.js.map +1 -1
- package/getCloudBackupSnapshotExportJob.d.ts +0 -11
- package/getCloudBackupSnapshotExportJob.js +0 -1
- package/getCloudBackupSnapshotExportJob.js.map +1 -1
- package/getCloudBackupSnapshotRestoreJob.d.ts +5 -27
- package/getCloudBackupSnapshotRestoreJob.js +0 -1
- package/getCloudBackupSnapshotRestoreJob.js.map +1 -1
- package/getCluster.d.ts +4 -4
- package/getCluster.js +4 -4
- package/getClusters.d.ts +4 -4
- package/getClusters.js +4 -4
- package/getFederatedSettingsIdentityProviders.d.ts +2 -70
- package/getFederatedSettingsIdentityProviders.js +2 -40
- package/getFederatedSettingsIdentityProviders.js.map +1 -1
- package/getGlobalClusterConfig.d.ts +76 -24
- package/getGlobalClusterConfig.js +76 -24
- package/getGlobalClusterConfig.js.map +1 -1
- package/getNetworkPeering.d.ts +0 -4
- package/getNetworkPeering.js +0 -4
- package/getNetworkPeering.js.map +1 -1
- package/getThirdPartyIntegration.d.ts +0 -18
- package/getThirdPartyIntegration.js +0 -1
- package/getThirdPartyIntegration.js.map +1 -1
- package/globalClusterConfig.d.ts +16 -14
- package/globalClusterConfig.js +16 -14
- package/globalClusterConfig.js.map +1 -1
- package/networkContainer.d.ts +0 -2
- package/networkContainer.js +0 -2
- package/networkContainer.js.map +1 -1
- package/networkPeering.d.ts +7 -2
- package/networkPeering.js +7 -2
- package/networkPeering.js.map +1 -1
- package/package.json +2 -2
- package/thirdPartyIntegration.d.ts +0 -12
- package/thirdPartyIntegration.js +0 -2
- package/thirdPartyIntegration.js.map +1 -1
- package/types/input.d.ts +48 -18
- package/types/output.d.ts +164 -70
|
@@ -11,48 +11,13 @@ const utilities = require("./utilities");
|
|
|
11
11
|
* `mongodbatlas.CloudBackupSchedule` provides a Cloud Backup Schedule datasource. An Atlas Cloud Backup Schedule provides the current cloud backup schedule for the cluster.
|
|
12
12
|
*
|
|
13
13
|
* > **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
14
|
-
*
|
|
15
|
-
* ## Example Usage
|
|
16
|
-
*
|
|
17
|
-
* ```typescript
|
|
18
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
-
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
20
|
-
*
|
|
21
|
-
* const myCluster = new mongodbatlas.AdvancedCluster("my_cluster", {
|
|
22
|
-
* projectId: "<PROJECT-ID>",
|
|
23
|
-
* name: "clusterTest",
|
|
24
|
-
* clusterType: "REPLICASET",
|
|
25
|
-
* backupEnabled: true,
|
|
26
|
-
* replicationSpecs: [{
|
|
27
|
-
* regionConfigs: [{
|
|
28
|
-
* priority: 7,
|
|
29
|
-
* providerName: "AWS",
|
|
30
|
-
* regionName: "EU_CENTRAL_1",
|
|
31
|
-
* electableSpecs: {
|
|
32
|
-
* instanceSize: "M10",
|
|
33
|
-
* nodeCount: 3,
|
|
34
|
-
* },
|
|
35
|
-
* }],
|
|
36
|
-
* }],
|
|
37
|
-
* });
|
|
38
|
-
* const testCloudBackupSchedule = new mongodbatlas.CloudBackupSchedule("test", {
|
|
39
|
-
* projectId: myCluster.projectId,
|
|
40
|
-
* clusterName: myCluster.name,
|
|
41
|
-
* referenceHourOfDay: 3,
|
|
42
|
-
* referenceMinuteOfHour: 45,
|
|
43
|
-
* restoreWindowDays: 4,
|
|
44
|
-
* });
|
|
45
|
-
* const test = mongodbatlas.getCloudBackupScheduleOutput({
|
|
46
|
-
* projectId: testCloudBackupSchedule.projectId,
|
|
47
|
-
* clusterName: testCloudBackupSchedule.clusterName,
|
|
48
|
-
* });
|
|
49
|
-
* ```
|
|
50
14
|
*/
|
|
51
15
|
function getCloudBackupSchedule(args, opts) {
|
|
52
16
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
53
17
|
return pulumi.runtime.invoke("mongodbatlas:index/getCloudBackupSchedule:getCloudBackupSchedule", {
|
|
54
18
|
"clusterName": args.clusterName,
|
|
55
19
|
"projectId": args.projectId,
|
|
20
|
+
"useZoneIdForCopySettings": args.useZoneIdForCopySettings,
|
|
56
21
|
}, opts);
|
|
57
22
|
}
|
|
58
23
|
exports.getCloudBackupSchedule = getCloudBackupSchedule;
|
|
@@ -62,42 +27,6 @@ exports.getCloudBackupSchedule = getCloudBackupSchedule;
|
|
|
62
27
|
* `mongodbatlas.CloudBackupSchedule` provides a Cloud Backup Schedule datasource. An Atlas Cloud Backup Schedule provides the current cloud backup schedule for the cluster.
|
|
63
28
|
*
|
|
64
29
|
* > **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
65
|
-
*
|
|
66
|
-
* ## Example Usage
|
|
67
|
-
*
|
|
68
|
-
* ```typescript
|
|
69
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
70
|
-
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
71
|
-
*
|
|
72
|
-
* const myCluster = new mongodbatlas.AdvancedCluster("my_cluster", {
|
|
73
|
-
* projectId: "<PROJECT-ID>",
|
|
74
|
-
* name: "clusterTest",
|
|
75
|
-
* clusterType: "REPLICASET",
|
|
76
|
-
* backupEnabled: true,
|
|
77
|
-
* replicationSpecs: [{
|
|
78
|
-
* regionConfigs: [{
|
|
79
|
-
* priority: 7,
|
|
80
|
-
* providerName: "AWS",
|
|
81
|
-
* regionName: "EU_CENTRAL_1",
|
|
82
|
-
* electableSpecs: {
|
|
83
|
-
* instanceSize: "M10",
|
|
84
|
-
* nodeCount: 3,
|
|
85
|
-
* },
|
|
86
|
-
* }],
|
|
87
|
-
* }],
|
|
88
|
-
* });
|
|
89
|
-
* const testCloudBackupSchedule = new mongodbatlas.CloudBackupSchedule("test", {
|
|
90
|
-
* projectId: myCluster.projectId,
|
|
91
|
-
* clusterName: myCluster.name,
|
|
92
|
-
* referenceHourOfDay: 3,
|
|
93
|
-
* referenceMinuteOfHour: 45,
|
|
94
|
-
* restoreWindowDays: 4,
|
|
95
|
-
* });
|
|
96
|
-
* const test = mongodbatlas.getCloudBackupScheduleOutput({
|
|
97
|
-
* projectId: testCloudBackupSchedule.projectId,
|
|
98
|
-
* clusterName: testCloudBackupSchedule.clusterName,
|
|
99
|
-
* });
|
|
100
|
-
* ```
|
|
101
30
|
*/
|
|
102
31
|
function getCloudBackupScheduleOutput(args, opts) {
|
|
103
32
|
return pulumi.output(args).apply((a) => getCloudBackupSchedule(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCloudBackupSchedule.js","sourceRoot":"","sources":["../getCloudBackupSchedule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getCloudBackupSchedule.js","sourceRoot":"","sources":["../getCloudBackupSchedule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAEhG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;KAC5D,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,wDAQC;AA8FD;;;;;;GAMG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,sBAAsB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACjF,CAAC;AAFD,oEAEC"}
|
|
@@ -33,10 +33,6 @@ export interface GetCloudBackupSnapshotExportBucketArgs {
|
|
|
33
33
|
* Unique identifier of the snapshot export bucket.
|
|
34
34
|
*/
|
|
35
35
|
exportBucketId: string;
|
|
36
|
-
/**
|
|
37
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Will not be an input parameter, only computed.
|
|
38
|
-
*/
|
|
39
|
-
id?: string;
|
|
40
36
|
/**
|
|
41
37
|
* The unique identifier of the project for the Atlas cluster.
|
|
42
38
|
*/
|
|
@@ -47,23 +43,32 @@ export interface GetCloudBackupSnapshotExportBucketArgs {
|
|
|
47
43
|
*/
|
|
48
44
|
export interface GetCloudBackupSnapshotExportBucketResult {
|
|
49
45
|
/**
|
|
50
|
-
* Name of the bucket that the provided role ID is authorized to access.
|
|
46
|
+
* Name of the bucket that the provided role ID is authorized to access.
|
|
51
47
|
*/
|
|
52
48
|
readonly bucketName: string;
|
|
53
49
|
/**
|
|
54
|
-
* Name of the provider of the cloud service where Atlas can access the S3 bucket.
|
|
50
|
+
* Name of the provider of the cloud service where Atlas can access the S3 bucket.
|
|
55
51
|
*/
|
|
56
52
|
readonly cloudProvider: string;
|
|
57
53
|
readonly exportBucketId: string;
|
|
58
54
|
/**
|
|
59
|
-
* Unique identifier of the role that Atlas can use to access the bucket.
|
|
55
|
+
* Unique identifier of the role that Atlas can use to access the bucket.
|
|
60
56
|
*/
|
|
61
57
|
readonly iamRoleId: string;
|
|
62
|
-
/**
|
|
63
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Will not be an input parameter, only computed.
|
|
64
|
-
*/
|
|
65
58
|
readonly id: string;
|
|
66
59
|
readonly projectId: string;
|
|
60
|
+
/**
|
|
61
|
+
* Unique identifier of the Azure Service Principal that Atlas can use to access the Azure Blob Storage Container.
|
|
62
|
+
*/
|
|
63
|
+
readonly roleId: string;
|
|
64
|
+
/**
|
|
65
|
+
* URL that identifies the blob Endpoint of the Azure Blob Storage Account.
|
|
66
|
+
*/
|
|
67
|
+
readonly serviceUrl: string;
|
|
68
|
+
/**
|
|
69
|
+
* UUID that identifies the Azure Active Directory Tenant ID.
|
|
70
|
+
*/
|
|
71
|
+
readonly tenantId: string;
|
|
67
72
|
}
|
|
68
73
|
/**
|
|
69
74
|
* ## # Data Source: mongodbatlas.CloudBackupSnapshotExportBucket
|
|
@@ -99,10 +104,6 @@ export interface GetCloudBackupSnapshotExportBucketOutputArgs {
|
|
|
99
104
|
* Unique identifier of the snapshot export bucket.
|
|
100
105
|
*/
|
|
101
106
|
exportBucketId: pulumi.Input<string>;
|
|
102
|
-
/**
|
|
103
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Will not be an input parameter, only computed.
|
|
104
|
-
*/
|
|
105
|
-
id?: pulumi.Input<string>;
|
|
106
107
|
/**
|
|
107
108
|
* The unique identifier of the project for the Atlas cluster.
|
|
108
109
|
*/
|
|
@@ -34,7 +34,6 @@ function getCloudBackupSnapshotExportBucket(args, opts) {
|
|
|
34
34
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
35
35
|
return pulumi.runtime.invoke("mongodbatlas:index/getCloudBackupSnapshotExportBucket:getCloudBackupSnapshotExportBucket", {
|
|
36
36
|
"exportBucketId": args.exportBucketId,
|
|
37
|
-
"id": args.id,
|
|
38
37
|
"projectId": args.projectId,
|
|
39
38
|
}, opts);
|
|
40
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCloudBackupSnapshotExportBucket.js","sourceRoot":"","sources":["../getCloudBackupSnapshotExportBucket.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IAExH,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,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,
|
|
1
|
+
{"version":3,"file":"getCloudBackupSnapshotExportBucket.js","sourceRoot":"","sources":["../getCloudBackupSnapshotExportBucket.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAA2B;IAExH,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,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gFAOC;AAgDD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,wCAAwC,CAAC,IAAkD,EAAE,IAA2B;IACpI,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kCAAkC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7F,CAAC;AAFD,4FAEC"}
|
|
@@ -49,10 +49,6 @@ export interface GetCloudBackupSnapshotExportJobArgs {
|
|
|
49
49
|
* Unique identifier of the export job to retrieve.
|
|
50
50
|
*/
|
|
51
51
|
exportJobId: string;
|
|
52
|
-
/**
|
|
53
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Will not be an input parameter, only computed.
|
|
54
|
-
*/
|
|
55
|
-
id?: string;
|
|
56
52
|
/**
|
|
57
53
|
* Unique 24-hexadecimal digit string that identifies the project which contains the Atlas cluster whose snapshot you want to retrieve.
|
|
58
54
|
*/
|
|
@@ -96,9 +92,6 @@ export interface GetCloudBackupSnapshotExportJobResult {
|
|
|
96
92
|
* Timestamp in ISO 8601 date and time format in UTC when the export job completes.
|
|
97
93
|
*/
|
|
98
94
|
readonly finishedAt: string;
|
|
99
|
-
/**
|
|
100
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Will not be an input parameter, only computed.
|
|
101
|
-
*/
|
|
102
95
|
readonly id: string;
|
|
103
96
|
readonly prefix: string;
|
|
104
97
|
readonly projectId: string;
|
|
@@ -164,10 +157,6 @@ export interface GetCloudBackupSnapshotExportJobOutputArgs {
|
|
|
164
157
|
* Unique identifier of the export job to retrieve.
|
|
165
158
|
*/
|
|
166
159
|
exportJobId: pulumi.Input<string>;
|
|
167
|
-
/**
|
|
168
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Will not be an input parameter, only computed.
|
|
169
|
-
*/
|
|
170
|
-
id?: pulumi.Input<string>;
|
|
171
160
|
/**
|
|
172
161
|
* Unique 24-hexadecimal digit string that identifies the project which contains the Atlas cluster whose snapshot you want to retrieve.
|
|
173
162
|
*/
|
|
@@ -46,7 +46,6 @@ function getCloudBackupSnapshotExportJob(args, opts) {
|
|
|
46
46
|
return pulumi.runtime.invoke("mongodbatlas:index/getCloudBackupSnapshotExportJob:getCloudBackupSnapshotExportJob", {
|
|
47
47
|
"clusterName": args.clusterName,
|
|
48
48
|
"exportJobId": args.exportJobId,
|
|
49
|
-
"id": args.id,
|
|
50
49
|
"projectId": args.projectId,
|
|
51
50
|
}, opts);
|
|
52
51
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCloudBackupSnapshotExportJob.js","sourceRoot":"","sources":["../getCloudBackupSnapshotExportJob.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAElH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oFAAoF,EAAE;QAC/G,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,
|
|
1
|
+
{"version":3,"file":"getCloudBackupSnapshotExportJob.js","sourceRoot":"","sources":["../getCloudBackupSnapshotExportJob.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAA2B;IAElH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oFAAoF,EAAE;QAC/G,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0EAQC;AA0ED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,SAAgB,qCAAqC,CAAC,IAA+C,EAAE,IAA2B;IAC9H,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,+BAA+B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1F,CAAC;AAFD,sFAEC"}
|
|
@@ -15,20 +15,14 @@ export interface GetCloudBackupSnapshotRestoreJobArgs {
|
|
|
15
15
|
* The name of the Atlas cluster for which you want to retrieve the restore job.
|
|
16
16
|
*/
|
|
17
17
|
clusterName: string;
|
|
18
|
-
/**
|
|
19
|
-
* A base64-encoded ID of `projectId`, `clusterName`, and `jobId` of this resource. **Note**: This attribute is deprecated, use `snapshotRestoreJobId` instead.
|
|
20
|
-
*
|
|
21
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Use snapshotRestoreJobId instead.
|
|
22
|
-
*/
|
|
23
|
-
jobId?: string;
|
|
24
18
|
/**
|
|
25
19
|
* The unique identifier of the project for the Atlas cluster.
|
|
26
20
|
*/
|
|
27
21
|
projectId: string;
|
|
28
22
|
/**
|
|
29
|
-
* The unique identifier of the restore job to retrieve.
|
|
23
|
+
* The unique identifier of the restore job to retrieve.
|
|
30
24
|
*/
|
|
31
|
-
snapshotRestoreJobId
|
|
25
|
+
snapshotRestoreJobId: string;
|
|
32
26
|
}
|
|
33
27
|
/**
|
|
34
28
|
* A collection of values returned by getCloudBackupSnapshotRestoreJob.
|
|
@@ -39,12 +33,6 @@ export interface GetCloudBackupSnapshotRestoreJobResult {
|
|
|
39
33
|
*/
|
|
40
34
|
readonly cancelled: boolean;
|
|
41
35
|
readonly clusterName: string;
|
|
42
|
-
/**
|
|
43
|
-
* UTC ISO 8601 formatted point in time when Atlas created the restore job.
|
|
44
|
-
*
|
|
45
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
46
|
-
*/
|
|
47
|
-
readonly createdAt: string;
|
|
48
36
|
/**
|
|
49
37
|
* Type of restore job to create. Possible values are: automated and download.
|
|
50
38
|
*/
|
|
@@ -69,10 +57,6 @@ export interface GetCloudBackupSnapshotRestoreJobResult {
|
|
|
69
57
|
* The provider-assigned unique ID for this managed resource.
|
|
70
58
|
*/
|
|
71
59
|
readonly id: string;
|
|
72
|
-
/**
|
|
73
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Use snapshotRestoreJobId instead.
|
|
74
|
-
*/
|
|
75
|
-
readonly jobId?: string;
|
|
76
60
|
readonly oplogInc: number;
|
|
77
61
|
readonly oplogTs: number;
|
|
78
62
|
readonly pointInTimeUtcSeconds: number;
|
|
@@ -81,7 +65,7 @@ export interface GetCloudBackupSnapshotRestoreJobResult {
|
|
|
81
65
|
* Unique identifier of the source snapshot ID of the restore job.
|
|
82
66
|
*/
|
|
83
67
|
readonly snapshotId: string;
|
|
84
|
-
readonly snapshotRestoreJobId
|
|
68
|
+
readonly snapshotRestoreJobId: string;
|
|
85
69
|
/**
|
|
86
70
|
* Name of the target Atlas cluster to which the restore job restores the snapshot. Only visible if deliveryType is automated.
|
|
87
71
|
*/
|
|
@@ -114,18 +98,12 @@ export interface GetCloudBackupSnapshotRestoreJobOutputArgs {
|
|
|
114
98
|
* The name of the Atlas cluster for which you want to retrieve the restore job.
|
|
115
99
|
*/
|
|
116
100
|
clusterName: pulumi.Input<string>;
|
|
117
|
-
/**
|
|
118
|
-
* A base64-encoded ID of `projectId`, `clusterName`, and `jobId` of this resource. **Note**: This attribute is deprecated, use `snapshotRestoreJobId` instead.
|
|
119
|
-
*
|
|
120
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0. Use snapshotRestoreJobId instead.
|
|
121
|
-
*/
|
|
122
|
-
jobId?: pulumi.Input<string>;
|
|
123
101
|
/**
|
|
124
102
|
* The unique identifier of the project for the Atlas cluster.
|
|
125
103
|
*/
|
|
126
104
|
projectId: pulumi.Input<string>;
|
|
127
105
|
/**
|
|
128
|
-
* The unique identifier of the restore job to retrieve.
|
|
106
|
+
* The unique identifier of the restore job to retrieve.
|
|
129
107
|
*/
|
|
130
|
-
snapshotRestoreJobId
|
|
108
|
+
snapshotRestoreJobId: pulumi.Input<string>;
|
|
131
109
|
}
|
|
@@ -16,7 +16,6 @@ function getCloudBackupSnapshotRestoreJob(args, opts) {
|
|
|
16
16
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
17
17
|
return pulumi.runtime.invoke("mongodbatlas:index/getCloudBackupSnapshotRestoreJob:getCloudBackupSnapshotRestoreJob", {
|
|
18
18
|
"clusterName": args.clusterName,
|
|
19
|
-
"jobId": args.jobId,
|
|
20
19
|
"projectId": args.projectId,
|
|
21
20
|
"snapshotRestoreJobId": args.snapshotRestoreJobId,
|
|
22
21
|
}, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCloudBackupSnapshotRestoreJob.js","sourceRoot":"","sources":["../getCloudBackupSnapshotRestoreJob.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAA2B;IAEpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sFAAsF,EAAE;QACjH,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,
|
|
1
|
+
{"version":3,"file":"getCloudBackupSnapshotRestoreJob.js","sourceRoot":"","sources":["../getCloudBackupSnapshotRestoreJob.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAA2B;IAEpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sFAAsF,EAAE;QACjH,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;KACpD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4EAQC;AA8ED;;;;;;GAMG;AACH,SAAgB,sCAAsC,CAAC,IAAgD,EAAE,IAA2B;IAChI,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gCAAgC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3F,CAAC;AAFD,wFAEC"}
|
package/getCluster.d.ts
CHANGED
|
@@ -5,13 +5,13 @@ import * as outputs from "./types/output";
|
|
|
5
5
|
*
|
|
6
6
|
* `mongodbatlas.Cluster` describes a Cluster. The data source requires your Project ID.
|
|
7
7
|
*
|
|
8
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
9
|
-
*
|
|
10
8
|
* > **IMPORTANT:**
|
|
11
9
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
12
10
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
13
11
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
14
12
|
*
|
|
13
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
14
|
+
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
17
|
* ```typescript
|
|
@@ -238,13 +238,13 @@ export interface GetClusterResult {
|
|
|
238
238
|
*
|
|
239
239
|
* `mongodbatlas.Cluster` describes a Cluster. The data source requires your Project ID.
|
|
240
240
|
*
|
|
241
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
242
|
-
*
|
|
243
241
|
* > **IMPORTANT:**
|
|
244
242
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
245
243
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
246
244
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
247
245
|
*
|
|
246
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
247
|
+
*
|
|
248
248
|
* ## Example Usage
|
|
249
249
|
*
|
|
250
250
|
* ```typescript
|
package/getCluster.js
CHANGED
|
@@ -10,13 +10,13 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* `mongodbatlas.Cluster` describes a Cluster. The data source requires your Project ID.
|
|
12
12
|
*
|
|
13
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
14
|
-
*
|
|
15
13
|
* > **IMPORTANT:**
|
|
16
14
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
17
15
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
18
16
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
19
17
|
*
|
|
18
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
19
|
+
*
|
|
20
20
|
* ## Example Usage
|
|
21
21
|
*
|
|
22
22
|
* ```typescript
|
|
@@ -60,13 +60,13 @@ exports.getCluster = getCluster;
|
|
|
60
60
|
*
|
|
61
61
|
* `mongodbatlas.Cluster` describes a Cluster. The data source requires your Project ID.
|
|
62
62
|
*
|
|
63
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
64
|
-
*
|
|
65
63
|
* > **IMPORTANT:**
|
|
66
64
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
67
65
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
68
66
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
69
67
|
*
|
|
68
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
69
|
+
*
|
|
70
70
|
* ## Example Usage
|
|
71
71
|
*
|
|
72
72
|
* ```typescript
|
package/getClusters.d.ts
CHANGED
|
@@ -5,13 +5,13 @@ import * as outputs from "./types/output";
|
|
|
5
5
|
*
|
|
6
6
|
* `mongodbatlas.Cluster` describes all Clusters by the provided project_id. The data source requires your Project ID.
|
|
7
7
|
*
|
|
8
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
9
|
-
*
|
|
10
8
|
* > **IMPORTANT:**
|
|
11
9
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
12
10
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
13
11
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
14
12
|
*
|
|
13
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
14
|
+
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
17
|
* ```typescript
|
|
@@ -70,13 +70,13 @@ export interface GetClustersResult {
|
|
|
70
70
|
*
|
|
71
71
|
* `mongodbatlas.Cluster` describes all Clusters by the provided project_id. The data source requires your Project ID.
|
|
72
72
|
*
|
|
73
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
74
|
-
*
|
|
75
73
|
* > **IMPORTANT:**
|
|
76
74
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
77
75
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
78
76
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
79
77
|
*
|
|
78
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
79
|
+
*
|
|
80
80
|
* ## Example Usage
|
|
81
81
|
*
|
|
82
82
|
* ```typescript
|
package/getClusters.js
CHANGED
|
@@ -10,13 +10,13 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* `mongodbatlas.Cluster` describes all Clusters by the provided project_id. The data source requires your Project ID.
|
|
12
12
|
*
|
|
13
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
14
|
-
*
|
|
15
13
|
* > **IMPORTANT:**
|
|
16
14
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
17
15
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
18
16
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
19
17
|
*
|
|
18
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
19
|
+
*
|
|
20
20
|
* ## Example Usage
|
|
21
21
|
*
|
|
22
22
|
* ```typescript
|
|
@@ -58,13 +58,13 @@ exports.getClusters = getClusters;
|
|
|
58
58
|
*
|
|
59
59
|
* `mongodbatlas.Cluster` describes all Clusters by the provided project_id. The data source requires your Project ID.
|
|
60
60
|
*
|
|
61
|
-
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
62
|
-
*
|
|
63
61
|
* > **IMPORTANT:**
|
|
64
62
|
* <br> • Multi Region Cluster: The `mongodbatlas.Cluster` data source doesn't return the `containerId` for each region utilized by the cluster. For retrieving the `containerId`, we recommend the `mongodbatlas.AdvancedCluster` data source instead.
|
|
65
63
|
* <br> • Changes to cluster configurations can affect costs. Before making changes, please see [Billing](https://docs.atlas.mongodb.com/billing/).
|
|
66
64
|
* <br> • If your Atlas project contains a custom role that uses actions introduced in a specific MongoDB version, you cannot create a cluster with a MongoDB version less than that version unless you delete the custom role.
|
|
67
65
|
*
|
|
66
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
67
|
+
*
|
|
68
68
|
* ## Example Usage
|
|
69
69
|
*
|
|
70
70
|
* ```typescript
|
|
@@ -5,25 +5,7 @@ import * as outputs from "./types/output";
|
|
|
5
5
|
*
|
|
6
6
|
* `mongodbatlas.getFederatedSettingsIdentityProviders` provides an Federated Settings Identity Providers datasource. Atlas Cloud Federated Settings Identity Providers provides federated settings outputs for the configured Identity Providers.
|
|
7
7
|
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* ```typescript
|
|
11
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
-
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
13
|
-
*
|
|
14
|
-
* const identityProvider = new mongodbatlas.FederatedSettingsIdentityProvider("identity_provider", {
|
|
15
|
-
* federationSettingsId: "627a9687f7f7f7f774de306f",
|
|
16
|
-
* name: "mongodb_federation_test",
|
|
17
|
-
* associatedDomains: ["yourdomain.com"],
|
|
18
|
-
* ssoDebugEnabled: true,
|
|
19
|
-
* status: "ACTIVE",
|
|
20
|
-
* });
|
|
21
|
-
* const identittyProvider = identityProvider.id.apply(id => mongodbatlas.getFederatedSettingsIdentityProvidersOutput({
|
|
22
|
-
* federationSettingsId: id,
|
|
23
|
-
* pageNum: 1,
|
|
24
|
-
* itemsPerPage: 5,
|
|
25
|
-
* }));
|
|
26
|
-
* ```
|
|
8
|
+
* Note: This implementation returns a maximum of 100 results.
|
|
27
9
|
*/
|
|
28
10
|
export declare function getFederatedSettingsIdentityProviders(args: GetFederatedSettingsIdentityProvidersArgs, opts?: pulumi.InvokeOptions): Promise<GetFederatedSettingsIdentityProvidersResult>;
|
|
29
11
|
/**
|
|
@@ -38,18 +20,6 @@ export interface GetFederatedSettingsIdentityProvidersArgs {
|
|
|
38
20
|
* The types of the target identity providers. Valid values are `WORKFORCE` and `WORKLOAD`.
|
|
39
21
|
*/
|
|
40
22
|
idpTypes?: string[];
|
|
41
|
-
/**
|
|
42
|
-
* Number of items to return per page, up to a maximum of 500. Defaults to `100`. **Note**: This attribute is deprecated and not being used. The implementation is currently limited to returning a maximum of 100 results.
|
|
43
|
-
*
|
|
44
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
45
|
-
*/
|
|
46
|
-
itemsPerPage?: number;
|
|
47
|
-
/**
|
|
48
|
-
* The page to return. Defaults to `1`. **Note**: This attribute is deprecated and not being used.
|
|
49
|
-
*
|
|
50
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
51
|
-
*/
|
|
52
|
-
pageNum?: number;
|
|
53
23
|
/**
|
|
54
24
|
* The protocols of the target identity providers. Valid values are `SAML` and `OIDC`.
|
|
55
25
|
*/
|
|
@@ -68,14 +38,6 @@ export interface GetFederatedSettingsIdentityProvidersResult {
|
|
|
68
38
|
*/
|
|
69
39
|
readonly id: string;
|
|
70
40
|
readonly idpTypes?: string[];
|
|
71
|
-
/**
|
|
72
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
73
|
-
*/
|
|
74
|
-
readonly itemsPerPage?: number;
|
|
75
|
-
/**
|
|
76
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
77
|
-
*/
|
|
78
|
-
readonly pageNum?: number;
|
|
79
41
|
readonly protocols?: string[];
|
|
80
42
|
/**
|
|
81
43
|
* Includes cloudProviderSnapshot object for each item detailed in the results array section.
|
|
@@ -88,25 +50,7 @@ export interface GetFederatedSettingsIdentityProvidersResult {
|
|
|
88
50
|
*
|
|
89
51
|
* `mongodbatlas.getFederatedSettingsIdentityProviders` provides an Federated Settings Identity Providers datasource. Atlas Cloud Federated Settings Identity Providers provides federated settings outputs for the configured Identity Providers.
|
|
90
52
|
*
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
* ```typescript
|
|
94
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
95
|
-
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
96
|
-
*
|
|
97
|
-
* const identityProvider = new mongodbatlas.FederatedSettingsIdentityProvider("identity_provider", {
|
|
98
|
-
* federationSettingsId: "627a9687f7f7f7f774de306f",
|
|
99
|
-
* name: "mongodb_federation_test",
|
|
100
|
-
* associatedDomains: ["yourdomain.com"],
|
|
101
|
-
* ssoDebugEnabled: true,
|
|
102
|
-
* status: "ACTIVE",
|
|
103
|
-
* });
|
|
104
|
-
* const identittyProvider = identityProvider.id.apply(id => mongodbatlas.getFederatedSettingsIdentityProvidersOutput({
|
|
105
|
-
* federationSettingsId: id,
|
|
106
|
-
* pageNum: 1,
|
|
107
|
-
* itemsPerPage: 5,
|
|
108
|
-
* }));
|
|
109
|
-
* ```
|
|
53
|
+
* Note: This implementation returns a maximum of 100 results.
|
|
110
54
|
*/
|
|
111
55
|
export declare function getFederatedSettingsIdentityProvidersOutput(args: GetFederatedSettingsIdentityProvidersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetFederatedSettingsIdentityProvidersResult>;
|
|
112
56
|
/**
|
|
@@ -121,18 +65,6 @@ export interface GetFederatedSettingsIdentityProvidersOutputArgs {
|
|
|
121
65
|
* The types of the target identity providers. Valid values are `WORKFORCE` and `WORKLOAD`.
|
|
122
66
|
*/
|
|
123
67
|
idpTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
124
|
-
/**
|
|
125
|
-
* Number of items to return per page, up to a maximum of 500. Defaults to `100`. **Note**: This attribute is deprecated and not being used. The implementation is currently limited to returning a maximum of 100 results.
|
|
126
|
-
*
|
|
127
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
128
|
-
*/
|
|
129
|
-
itemsPerPage?: pulumi.Input<number>;
|
|
130
|
-
/**
|
|
131
|
-
* The page to return. Defaults to `1`. **Note**: This attribute is deprecated and not being used.
|
|
132
|
-
*
|
|
133
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.18.0.
|
|
134
|
-
*/
|
|
135
|
-
pageNum?: pulumi.Input<number>;
|
|
136
68
|
/**
|
|
137
69
|
* The protocols of the target identity providers. Valid values are `SAML` and `OIDC`.
|
|
138
70
|
*/
|
|
@@ -10,33 +10,13 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* `mongodbatlas.getFederatedSettingsIdentityProviders` provides an Federated Settings Identity Providers datasource. Atlas Cloud Federated Settings Identity Providers provides federated settings outputs for the configured Identity Providers.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
* ```typescript
|
|
16
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
-
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
18
|
-
*
|
|
19
|
-
* const identityProvider = new mongodbatlas.FederatedSettingsIdentityProvider("identity_provider", {
|
|
20
|
-
* federationSettingsId: "627a9687f7f7f7f774de306f",
|
|
21
|
-
* name: "mongodb_federation_test",
|
|
22
|
-
* associatedDomains: ["yourdomain.com"],
|
|
23
|
-
* ssoDebugEnabled: true,
|
|
24
|
-
* status: "ACTIVE",
|
|
25
|
-
* });
|
|
26
|
-
* const identittyProvider = identityProvider.id.apply(id => mongodbatlas.getFederatedSettingsIdentityProvidersOutput({
|
|
27
|
-
* federationSettingsId: id,
|
|
28
|
-
* pageNum: 1,
|
|
29
|
-
* itemsPerPage: 5,
|
|
30
|
-
* }));
|
|
31
|
-
* ```
|
|
13
|
+
* Note: This implementation returns a maximum of 100 results.
|
|
32
14
|
*/
|
|
33
15
|
function getFederatedSettingsIdentityProviders(args, opts) {
|
|
34
16
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
35
17
|
return pulumi.runtime.invoke("mongodbatlas:index/getFederatedSettingsIdentityProviders:getFederatedSettingsIdentityProviders", {
|
|
36
18
|
"federationSettingsId": args.federationSettingsId,
|
|
37
19
|
"idpTypes": args.idpTypes,
|
|
38
|
-
"itemsPerPage": args.itemsPerPage,
|
|
39
|
-
"pageNum": args.pageNum,
|
|
40
20
|
"protocols": args.protocols,
|
|
41
21
|
}, opts);
|
|
42
22
|
}
|
|
@@ -46,25 +26,7 @@ exports.getFederatedSettingsIdentityProviders = getFederatedSettingsIdentityProv
|
|
|
46
26
|
*
|
|
47
27
|
* `mongodbatlas.getFederatedSettingsIdentityProviders` provides an Federated Settings Identity Providers datasource. Atlas Cloud Federated Settings Identity Providers provides federated settings outputs for the configured Identity Providers.
|
|
48
28
|
*
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
* ```typescript
|
|
52
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
53
|
-
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
54
|
-
*
|
|
55
|
-
* const identityProvider = new mongodbatlas.FederatedSettingsIdentityProvider("identity_provider", {
|
|
56
|
-
* federationSettingsId: "627a9687f7f7f7f774de306f",
|
|
57
|
-
* name: "mongodb_federation_test",
|
|
58
|
-
* associatedDomains: ["yourdomain.com"],
|
|
59
|
-
* ssoDebugEnabled: true,
|
|
60
|
-
* status: "ACTIVE",
|
|
61
|
-
* });
|
|
62
|
-
* const identittyProvider = identityProvider.id.apply(id => mongodbatlas.getFederatedSettingsIdentityProvidersOutput({
|
|
63
|
-
* federationSettingsId: id,
|
|
64
|
-
* pageNum: 1,
|
|
65
|
-
* itemsPerPage: 5,
|
|
66
|
-
* }));
|
|
67
|
-
* ```
|
|
29
|
+
* Note: This implementation returns a maximum of 100 results.
|
|
68
30
|
*/
|
|
69
31
|
function getFederatedSettingsIdentityProvidersOutput(args, opts) {
|
|
70
32
|
return pulumi.output(args).apply((a) => getFederatedSettingsIdentityProviders(a, opts));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFederatedSettingsIdentityProviders.js","sourceRoot":"","sources":["../getFederatedSettingsIdentityProviders.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getFederatedSettingsIdentityProviders.js","sourceRoot":"","sources":["../getFederatedSettingsIdentityProviders.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;GAMG;AACH,SAAgB,qCAAqC,CAAC,IAA+C,EAAE,IAA2B;IAE9H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gGAAgG,EAAE;QAC3H,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,sFAQC;AAwCD;;;;;;GAMG;AACH,SAAgB,2CAA2C,CAAC,IAAqD,EAAE,IAA2B;IAC1I,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,qCAAqC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChG,CAAC;AAFD,kGAEC"}
|