@pulumi/mongodbatlas 3.4.0-alpha.1657198365 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cloudBackupSchedule.d.ts +33 -6
- package/cloudBackupSchedule.js +10 -4
- package/cloudBackupSchedule.js.map +1 -1
- package/eventTrigger.d.ts +13 -0
- package/eventTrigger.js +3 -0
- package/eventTrigger.js.map +1 -1
- package/federatedSettingsIdentityProvider.d.ts +184 -0
- package/federatedSettingsIdentityProvider.js +120 -0
- package/federatedSettingsIdentityProvider.js.map +1 -0
- package/federatedSettingsOrgConfig.d.ts +54 -0
- package/federatedSettingsOrgConfig.js +71 -0
- package/federatedSettingsOrgConfig.js.map +1 -0
- package/federatedSettingsOrgRoleMapping.d.ts +140 -0
- package/federatedSettingsOrgRoleMapping.js +122 -0
- package/federatedSettingsOrgRoleMapping.js.map +1 -0
- package/getCloudBackupSchedule.d.ts +9 -0
- package/getCloudBackupSchedule.js.map +1 -1
- package/getEventTrigger.d.ts +4 -0
- package/getEventTrigger.js.map +1 -1
- package/getFederatedSettings.d.ts +61 -0
- package/getFederatedSettings.js +36 -0
- package/getFederatedSettings.js.map +1 -0
- package/getFederatedSettingsIdentityProvider.d.ts +122 -0
- package/getFederatedSettingsIdentityProvider.js +48 -0
- package/getFederatedSettingsIdentityProvider.js.map +1 -0
- package/getFederatedSettingsIdentityProviders.d.ts +79 -0
- package/getFederatedSettingsIdentityProviders.js +46 -0
- package/getFederatedSettingsIdentityProviders.js.map +1 -0
- package/getFederatedSettingsOrgConfig.d.ts +83 -0
- package/getFederatedSettingsOrgConfig.js +44 -0
- package/getFederatedSettingsOrgConfig.js.map +1 -0
- package/getFederatedSettingsOrgConfigs.d.ts +77 -0
- package/getFederatedSettingsOrgConfigs.js +44 -0
- package/getFederatedSettingsOrgConfigs.js.map +1 -0
- package/getFederatedSettingsOrgRoleMapping.d.ts +102 -0
- package/getFederatedSettingsOrgRoleMapping.js +74 -0
- package/getFederatedSettingsOrgRoleMapping.js.map +1 -0
- package/getFederatedSettingsOrgRoleMappings.d.ts +66 -0
- package/getFederatedSettingsOrgRoleMappings.js +28 -0
- package/getFederatedSettingsOrgRoleMappings.js.map +1 -0
- package/getPrivateEndpointRegionalMode.d.ts +45 -0
- package/getPrivateEndpointRegionalMode.js +28 -0
- package/getPrivateEndpointRegionalMode.js.map +1 -0
- package/getProject.d.ts +20 -0
- package/getProject.js.map +1 -1
- package/getServerlessInstance.d.ts +96 -0
- package/getServerlessInstance.js +44 -0
- package/getServerlessInstance.js.map +1 -0
- package/getServerlessInstances.d.ts +55 -0
- package/getServerlessInstances.js +41 -0
- package/getServerlessInstances.js.map +1 -0
- package/getThirdPartyIntegration.d.ts +68 -0
- package/getThirdPartyIntegration.js +5 -0
- package/getThirdPartyIntegration.js.map +1 -1
- package/index.d.ts +15 -0
- package/index.js +35 -0
- package/index.js.map +1 -1
- package/orgInvitation.d.ts +1 -13
- package/orgInvitation.js +1 -13
- package/orgInvitation.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/privateEndpointRegionalMode.d.ts +80 -0
- package/privateEndpointRegionalMode.js +65 -0
- package/privateEndpointRegionalMode.js.map +1 -0
- package/project.d.ts +65 -0
- package/project.js +15 -0
- package/project.js.map +1 -1
- package/projectInvitation.d.ts +1 -16
- package/projectInvitation.js +1 -16
- package/projectInvitation.js.map +1 -1
- package/provider.d.ts +5 -5
- package/provider.js +0 -6
- package/provider.js.map +1 -1
- package/searchIndex.d.ts +4 -4
- package/searchIndex.js +4 -4
- package/serverlessInstance.d.ts +166 -0
- package/serverlessInstance.js +109 -0
- package/serverlessInstance.js.map +1 -0
- package/thirdPartyIntegration.d.ts +78 -0
- package/thirdPartyIntegration.js +12 -0
- package/thirdPartyIntegration.js.map +1 -1
- package/types/input.d.ts +64 -18
- package/types/output.d.ts +544 -2
package/thirdPartyIntegration.js
CHANGED
|
@@ -41,18 +41,24 @@ class ThirdPartyIntegration extends pulumi.CustomResource {
|
|
|
41
41
|
resourceInputs["apiKey"] = state ? state.apiKey : undefined;
|
|
42
42
|
resourceInputs["apiToken"] = state ? state.apiToken : undefined;
|
|
43
43
|
resourceInputs["channelName"] = state ? state.channelName : undefined;
|
|
44
|
+
resourceInputs["enabled"] = state ? state.enabled : undefined;
|
|
44
45
|
resourceInputs["flowName"] = state ? state.flowName : undefined;
|
|
45
46
|
resourceInputs["licenseKey"] = state ? state.licenseKey : undefined;
|
|
47
|
+
resourceInputs["microsoftTeamsWebhookUrl"] = state ? state.microsoftTeamsWebhookUrl : undefined;
|
|
46
48
|
resourceInputs["orgName"] = state ? state.orgName : undefined;
|
|
49
|
+
resourceInputs["password"] = state ? state.password : undefined;
|
|
47
50
|
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
48
51
|
resourceInputs["readToken"] = state ? state.readToken : undefined;
|
|
49
52
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
50
53
|
resourceInputs["routingKey"] = state ? state.routingKey : undefined;
|
|
54
|
+
resourceInputs["scheme"] = state ? state.scheme : undefined;
|
|
51
55
|
resourceInputs["secret"] = state ? state.secret : undefined;
|
|
56
|
+
resourceInputs["serviceDiscovery"] = state ? state.serviceDiscovery : undefined;
|
|
52
57
|
resourceInputs["serviceKey"] = state ? state.serviceKey : undefined;
|
|
53
58
|
resourceInputs["teamName"] = state ? state.teamName : undefined;
|
|
54
59
|
resourceInputs["type"] = state ? state.type : undefined;
|
|
55
60
|
resourceInputs["url"] = state ? state.url : undefined;
|
|
61
|
+
resourceInputs["userName"] = state ? state.userName : undefined;
|
|
56
62
|
resourceInputs["writeToken"] = state ? state.writeToken : undefined;
|
|
57
63
|
}
|
|
58
64
|
else {
|
|
@@ -67,18 +73,24 @@ class ThirdPartyIntegration extends pulumi.CustomResource {
|
|
|
67
73
|
resourceInputs["apiKey"] = args ? args.apiKey : undefined;
|
|
68
74
|
resourceInputs["apiToken"] = args ? args.apiToken : undefined;
|
|
69
75
|
resourceInputs["channelName"] = args ? args.channelName : undefined;
|
|
76
|
+
resourceInputs["enabled"] = args ? args.enabled : undefined;
|
|
70
77
|
resourceInputs["flowName"] = args ? args.flowName : undefined;
|
|
71
78
|
resourceInputs["licenseKey"] = args ? args.licenseKey : undefined;
|
|
79
|
+
resourceInputs["microsoftTeamsWebhookUrl"] = args ? args.microsoftTeamsWebhookUrl : undefined;
|
|
72
80
|
resourceInputs["orgName"] = args ? args.orgName : undefined;
|
|
81
|
+
resourceInputs["password"] = args ? args.password : undefined;
|
|
73
82
|
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
74
83
|
resourceInputs["readToken"] = args ? args.readToken : undefined;
|
|
75
84
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
76
85
|
resourceInputs["routingKey"] = args ? args.routingKey : undefined;
|
|
86
|
+
resourceInputs["scheme"] = args ? args.scheme : undefined;
|
|
77
87
|
resourceInputs["secret"] = args ? args.secret : undefined;
|
|
88
|
+
resourceInputs["serviceDiscovery"] = args ? args.serviceDiscovery : undefined;
|
|
78
89
|
resourceInputs["serviceKey"] = args ? args.serviceKey : undefined;
|
|
79
90
|
resourceInputs["teamName"] = args ? args.teamName : undefined;
|
|
80
91
|
resourceInputs["type"] = args ? args.type : undefined;
|
|
81
92
|
resourceInputs["url"] = args ? args.url : undefined;
|
|
93
|
+
resourceInputs["userName"] = args ? args.userName : undefined;
|
|
82
94
|
resourceInputs["writeToken"] = args ? args.writeToken : undefined;
|
|
83
95
|
}
|
|
84
96
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thirdPartyIntegration.js","sourceRoot":"","sources":["../thirdPartyIntegration.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;
|
|
1
|
+
{"version":3,"file":"thirdPartyIntegration.js","sourceRoot":"","sources":["../thirdPartyIntegration.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -425,11 +425,24 @@ export interface AlertConfigurationThresholdConfig {
|
|
|
425
425
|
*/
|
|
426
426
|
units?: pulumi.Input<string>;
|
|
427
427
|
}
|
|
428
|
+
export interface CloudBackupScheduleExport {
|
|
429
|
+
/**
|
|
430
|
+
* Unique identifier of the mongodbatlas.CloudBackupSnapshotExportBucket export_bucket_id value.
|
|
431
|
+
*/
|
|
432
|
+
exportBucketId?: pulumi.Input<string>;
|
|
433
|
+
/**
|
|
434
|
+
* Frequency associated with the export snapshot item.
|
|
435
|
+
*/
|
|
436
|
+
frequencyType?: pulumi.Input<string>;
|
|
437
|
+
}
|
|
428
438
|
export interface CloudBackupSchedulePolicyItemDaily {
|
|
429
439
|
/**
|
|
430
440
|
* Desired frequency of the new backup policy item specified by `frequencyType`.
|
|
431
441
|
*/
|
|
432
442
|
frequencyInterval: pulumi.Input<number>;
|
|
443
|
+
/**
|
|
444
|
+
* Frequency associated with the export snapshot item.
|
|
445
|
+
*/
|
|
433
446
|
frequencyType?: pulumi.Input<string>;
|
|
434
447
|
/**
|
|
435
448
|
* Scope of the backup policy item: days, weeks, or months.
|
|
@@ -445,6 +458,9 @@ export interface CloudBackupSchedulePolicyItemHourly {
|
|
|
445
458
|
* Desired frequency of the new backup policy item specified by `frequencyType`.
|
|
446
459
|
*/
|
|
447
460
|
frequencyInterval: pulumi.Input<number>;
|
|
461
|
+
/**
|
|
462
|
+
* Frequency associated with the export snapshot item.
|
|
463
|
+
*/
|
|
448
464
|
frequencyType?: pulumi.Input<string>;
|
|
449
465
|
id?: pulumi.Input<string>;
|
|
450
466
|
/**
|
|
@@ -461,6 +477,9 @@ export interface CloudBackupSchedulePolicyItemMonthly {
|
|
|
461
477
|
* Desired frequency of the new backup policy item specified by `frequencyType`.
|
|
462
478
|
*/
|
|
463
479
|
frequencyInterval: pulumi.Input<number>;
|
|
480
|
+
/**
|
|
481
|
+
* Frequency associated with the export snapshot item.
|
|
482
|
+
*/
|
|
464
483
|
frequencyType?: pulumi.Input<string>;
|
|
465
484
|
/**
|
|
466
485
|
* Scope of the backup policy item: days, weeks, or months.
|
|
@@ -476,6 +495,9 @@ export interface CloudBackupSchedulePolicyItemWeekly {
|
|
|
476
495
|
* Desired frequency of the new backup policy item specified by `frequencyType`.
|
|
477
496
|
*/
|
|
478
497
|
frequencyInterval: pulumi.Input<number>;
|
|
498
|
+
/**
|
|
499
|
+
* Frequency associated with the export snapshot item.
|
|
500
|
+
*/
|
|
479
501
|
frequencyType?: pulumi.Input<string>;
|
|
480
502
|
/**
|
|
481
503
|
* Scope of the backup policy item: days, weeks, or months.
|
|
@@ -927,12 +949,19 @@ export interface EventTriggerEventProcessorsAwsEventbridge {
|
|
|
927
949
|
configAccountId?: pulumi.Input<string>;
|
|
928
950
|
configRegion?: pulumi.Input<string>;
|
|
929
951
|
}
|
|
930
|
-
export interface
|
|
931
|
-
databaseName?: pulumi.Input<string>;
|
|
952
|
+
export interface FederatedSettingsOrgRoleMappingRoleAssignment {
|
|
932
953
|
/**
|
|
933
|
-
*
|
|
954
|
+
* Unique identifier of the project to which you want the role mapping to apply.
|
|
934
955
|
*/
|
|
935
|
-
|
|
956
|
+
groupId?: pulumi.Input<string>;
|
|
957
|
+
/**
|
|
958
|
+
* Unique 24-hexadecimal digit string that identifies the organization that contains your projects.
|
|
959
|
+
*/
|
|
960
|
+
orgId?: pulumi.Input<string>;
|
|
961
|
+
/**
|
|
962
|
+
* Specifies the Roles that are attached to the Role Mapping.
|
|
963
|
+
*/
|
|
964
|
+
roles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
936
965
|
}
|
|
937
966
|
export interface GetCustomDbRoleInheritedRole {
|
|
938
967
|
databaseName?: string;
|
|
@@ -941,49 +970,64 @@ export interface GetCustomDbRoleInheritedRole {
|
|
|
941
970
|
*/
|
|
942
971
|
roleName?: string;
|
|
943
972
|
}
|
|
944
|
-
export interface
|
|
973
|
+
export interface GetCustomDbRoleInheritedRoleArgs {
|
|
974
|
+
databaseName?: pulumi.Input<string>;
|
|
975
|
+
/**
|
|
976
|
+
* Name of the custom role.
|
|
977
|
+
*/
|
|
978
|
+
roleName?: pulumi.Input<string>;
|
|
979
|
+
}
|
|
980
|
+
export interface GetGlobalClusterConfigManagedNamespaceArgs {
|
|
945
981
|
/**
|
|
946
982
|
* (Required) The name of the collection associated with the managed namespace.
|
|
947
983
|
*/
|
|
948
|
-
collection: string
|
|
984
|
+
collection: pulumi.Input<string>;
|
|
949
985
|
/**
|
|
950
986
|
* (Required) The custom shard key for the collection. Global Clusters require a compound shard key consisting of a location field and a user-selected second key, the custom shard key.
|
|
951
987
|
*/
|
|
952
|
-
customShardKey: string
|
|
988
|
+
customShardKey: pulumi.Input<string>;
|
|
953
989
|
/**
|
|
954
990
|
* (Required) The name of the database containing the collection.
|
|
955
991
|
*/
|
|
956
|
-
db: string
|
|
992
|
+
db: pulumi.Input<string>;
|
|
957
993
|
/**
|
|
958
994
|
* Specifies whether the custom shard key for the collection is [hashed](https://docs.mongodb.com/manual/reference/method/sh.shardCollection/#hashed-shard-keys). If omitted, defaults to `false`. If `false`, Atlas uses [ranged sharding](https://docs.mongodb.com/manual/core/ranged-sharding/). This is only available for Atlas clusters with MongoDB v4.4 and later.
|
|
959
995
|
*/
|
|
960
|
-
isCustomShardKeyHashed?: boolean
|
|
996
|
+
isCustomShardKeyHashed?: pulumi.Input<boolean>;
|
|
961
997
|
/**
|
|
962
998
|
* Specifies whether the underlying index enforces a unique constraint. If omitted, defaults to false. You cannot specify true when using [hashed shard keys](https://docs.mongodb.com/manual/core/hashed-sharding/#std-label-sharding-hashed).
|
|
963
999
|
*/
|
|
964
|
-
isShardKeyUnique?: boolean
|
|
1000
|
+
isShardKeyUnique?: pulumi.Input<boolean>;
|
|
965
1001
|
}
|
|
966
|
-
export interface
|
|
1002
|
+
export interface GetGlobalClusterConfigManagedNamespace {
|
|
967
1003
|
/**
|
|
968
1004
|
* (Required) The name of the collection associated with the managed namespace.
|
|
969
1005
|
*/
|
|
970
|
-
collection:
|
|
1006
|
+
collection: string;
|
|
971
1007
|
/**
|
|
972
1008
|
* (Required) The custom shard key for the collection. Global Clusters require a compound shard key consisting of a location field and a user-selected second key, the custom shard key.
|
|
973
1009
|
*/
|
|
974
|
-
customShardKey:
|
|
1010
|
+
customShardKey: string;
|
|
975
1011
|
/**
|
|
976
1012
|
* (Required) The name of the database containing the collection.
|
|
977
1013
|
*/
|
|
978
|
-
db:
|
|
1014
|
+
db: string;
|
|
979
1015
|
/**
|
|
980
1016
|
* Specifies whether the custom shard key for the collection is [hashed](https://docs.mongodb.com/manual/reference/method/sh.shardCollection/#hashed-shard-keys). If omitted, defaults to `false`. If `false`, Atlas uses [ranged sharding](https://docs.mongodb.com/manual/core/ranged-sharding/). This is only available for Atlas clusters with MongoDB v4.4 and later.
|
|
981
1017
|
*/
|
|
982
|
-
isCustomShardKeyHashed?:
|
|
1018
|
+
isCustomShardKeyHashed?: boolean;
|
|
983
1019
|
/**
|
|
984
1020
|
* Specifies whether the underlying index enforces a unique constraint. If omitted, defaults to false. You cannot specify true when using [hashed shard keys](https://docs.mongodb.com/manual/core/hashed-sharding/#std-label-sharding-hashed).
|
|
985
1021
|
*/
|
|
986
|
-
isShardKeyUnique?:
|
|
1022
|
+
isShardKeyUnique?: boolean;
|
|
1023
|
+
}
|
|
1024
|
+
export interface GetServerlessInstanceLink {
|
|
1025
|
+
href?: string;
|
|
1026
|
+
rel?: string;
|
|
1027
|
+
}
|
|
1028
|
+
export interface GetServerlessInstanceLinkArgs {
|
|
1029
|
+
href?: pulumi.Input<string>;
|
|
1030
|
+
rel?: pulumi.Input<string>;
|
|
987
1031
|
}
|
|
988
1032
|
export interface GlobalClusterConfigCustomZoneMapping {
|
|
989
1033
|
/**
|
|
@@ -1076,7 +1120,6 @@ export interface ProjectApiKey {
|
|
|
1076
1120
|
* * `GROUP_DATA_ACCESS_ADMIN`
|
|
1077
1121
|
* * `GROUP_DATA_ACCESS_READ_WRITE`
|
|
1078
1122
|
* * `GROUP_DATA_ACCESS_READ_ONLY`
|
|
1079
|
-
* * `GROUP_CLUSTER_MANAGER`
|
|
1080
1123
|
*/
|
|
1081
1124
|
roleNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
1082
1125
|
}
|
|
@@ -1089,7 +1132,6 @@ export interface ProjectTeam {
|
|
|
1089
1132
|
* * `GROUP_DATA_ACCESS_ADMIN`
|
|
1090
1133
|
* * `GROUP_DATA_ACCESS_READ_WRITE`
|
|
1091
1134
|
* * `GROUP_DATA_ACCESS_READ_ONLY`
|
|
1092
|
-
* * `GROUP_CLUSTER_MANAGER`
|
|
1093
1135
|
*/
|
|
1094
1136
|
roleNames: pulumi.Input<pulumi.Input<string>[]>;
|
|
1095
1137
|
/**
|
|
@@ -1117,6 +1159,10 @@ export interface SearchIndexSynonym {
|
|
|
1117
1159
|
*/
|
|
1118
1160
|
sourceCollection: pulumi.Input<string>;
|
|
1119
1161
|
}
|
|
1162
|
+
export interface ServerlessInstanceLink {
|
|
1163
|
+
href?: pulumi.Input<string>;
|
|
1164
|
+
rel?: pulumi.Input<string>;
|
|
1165
|
+
}
|
|
1120
1166
|
export interface X509AuthenticationDatabaseUserCertificate {
|
|
1121
1167
|
createdAt?: pulumi.Input<string>;
|
|
1122
1168
|
groupId?: pulumi.Input<string>;
|