@pulumi/mongodbatlas 3.19.0-alpha.1726827232 → 3.19.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/advancedCluster.d.ts +19 -18
- package/advancedCluster.js +19 -18
- package/advancedCluster.js.map +1 -1
- package/cloudBackupSnapshotExportJob.d.ts +0 -12
- package/cloudBackupSnapshotExportJob.js +0 -2
- package/cloudBackupSnapshotExportJob.js.map +1 -1
- package/dataLakePipeline.d.ts +2 -1
- package/dataLakePipeline.js +2 -1
- package/dataLakePipeline.js.map +1 -1
- package/federatedDatabaseInstance.d.ts +0 -3
- package/federatedDatabaseInstance.js.map +1 -1
- package/getCloudBackupSnapshotExportJob.d.ts +0 -6
- package/getCloudBackupSnapshotExportJob.js.map +1 -1
- package/getDataLakePipeline.d.ts +2 -2
- package/getDataLakePipeline.js +2 -2
- package/getDataLakePipelineRun.d.ts +2 -2
- package/getDataLakePipelineRun.js +2 -2
- package/getDataLakePipelineRuns.d.ts +2 -2
- package/getDataLakePipelineRuns.js +2 -2
- package/getDataLakePipelines.d.ts +2 -2
- package/getDataLakePipelines.js +2 -2
- package/getFederatedDatabaseInstance.d.ts +0 -1
- package/getFederatedDatabaseInstance.js.map +1 -1
- package/getMongodbEmployeeAccessGrant.d.ts +100 -0
- package/getMongodbEmployeeAccessGrant.js +76 -0
- package/getMongodbEmployeeAccessGrant.js.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +12 -4
- package/index.js.map +1 -1
- package/mongodbEmployeeAccessGrant.d.ts +111 -0
- package/mongodbEmployeeAccessGrant.js +94 -0
- package/mongodbEmployeeAccessGrant.js.map +1 -0
- package/package.json +2 -2
- package/types/input.d.ts +2 -6
- package/types/output.d.ts +7 -26
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.MongodbEmployeeAccessGrant = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## # Resource: mongodbatlas.MongodbEmployeeAccessGrant
|
|
10
|
+
*
|
|
11
|
+
* `mongodbatlas.MongodbEmployeeAccessGrant` provides a MongoDB Employee Access Grant resource. The resource lets you create, delete, update and import a MongoDB employee access grant.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ### S
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
20
|
+
*
|
|
21
|
+
* const example = new mongodbatlas.MongodbEmployeeAccessGrant("example", {
|
|
22
|
+
* projectId: projectId,
|
|
23
|
+
* clusterName: clusterName,
|
|
24
|
+
* grantType: "CLUSTER_INFRASTRUCTURE_AND_APP_SERVICES_SYNC_DATA",
|
|
25
|
+
* expirationTime: "2025-01-01T12:00:00Z",
|
|
26
|
+
* });
|
|
27
|
+
* const dsExample = mongodbatlas.getMongodbEmployeeAccessGrant({
|
|
28
|
+
* projectId: projectId,
|
|
29
|
+
* clusterName: clusterName,
|
|
30
|
+
* });
|
|
31
|
+
* export const grantType = dsExample.then(dsExample => dsExample.grantType);
|
|
32
|
+
* export const expirationTime = dsExample.then(dsExample => dsExample.expirationTime);
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
class MongodbEmployeeAccessGrant extends pulumi.CustomResource {
|
|
36
|
+
/**
|
|
37
|
+
* Get an existing MongodbEmployeeAccessGrant resource's state with the given name, ID, and optional extra
|
|
38
|
+
* properties used to qualify the lookup.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resulting resource.
|
|
41
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
42
|
+
* @param state Any extra arguments used during the lookup.
|
|
43
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
44
|
+
*/
|
|
45
|
+
static get(name, id, state, opts) {
|
|
46
|
+
return new MongodbEmployeeAccessGrant(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Returns true if the given object is an instance of MongodbEmployeeAccessGrant. This is designed to work even
|
|
50
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
51
|
+
*/
|
|
52
|
+
static isInstance(obj) {
|
|
53
|
+
if (obj === undefined || obj === null) {
|
|
54
|
+
return false;
|
|
55
|
+
}
|
|
56
|
+
return obj['__pulumiType'] === MongodbEmployeeAccessGrant.__pulumiType;
|
|
57
|
+
}
|
|
58
|
+
constructor(name, argsOrState, opts) {
|
|
59
|
+
let resourceInputs = {};
|
|
60
|
+
opts = opts || {};
|
|
61
|
+
if (opts.id) {
|
|
62
|
+
const state = argsOrState;
|
|
63
|
+
resourceInputs["clusterName"] = state ? state.clusterName : undefined;
|
|
64
|
+
resourceInputs["expirationTime"] = state ? state.expirationTime : undefined;
|
|
65
|
+
resourceInputs["grantType"] = state ? state.grantType : undefined;
|
|
66
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
67
|
+
}
|
|
68
|
+
else {
|
|
69
|
+
const args = argsOrState;
|
|
70
|
+
if ((!args || args.clusterName === undefined) && !opts.urn) {
|
|
71
|
+
throw new Error("Missing required property 'clusterName'");
|
|
72
|
+
}
|
|
73
|
+
if ((!args || args.expirationTime === undefined) && !opts.urn) {
|
|
74
|
+
throw new Error("Missing required property 'expirationTime'");
|
|
75
|
+
}
|
|
76
|
+
if ((!args || args.grantType === undefined) && !opts.urn) {
|
|
77
|
+
throw new Error("Missing required property 'grantType'");
|
|
78
|
+
}
|
|
79
|
+
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
80
|
+
throw new Error("Missing required property 'projectId'");
|
|
81
|
+
}
|
|
82
|
+
resourceInputs["clusterName"] = args ? args.clusterName : undefined;
|
|
83
|
+
resourceInputs["expirationTime"] = args ? args.expirationTime : undefined;
|
|
84
|
+
resourceInputs["grantType"] = args ? args.grantType : undefined;
|
|
85
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
86
|
+
}
|
|
87
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
88
|
+
super(MongodbEmployeeAccessGrant.__pulumiType, name, resourceInputs, opts);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
exports.MongodbEmployeeAccessGrant = MongodbEmployeeAccessGrant;
|
|
92
|
+
/** @internal */
|
|
93
|
+
MongodbEmployeeAccessGrant.__pulumiType = 'mongodbatlas:index/mongodbEmployeeAccessGrant:MongodbEmployeeAccessGrant';
|
|
94
|
+
//# sourceMappingURL=mongodbEmployeeAccessGrant.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mongodbEmployeeAccessGrant.js","sourceRoot":"","sources":["../mongodbEmployeeAccessGrant.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/mongodbatlas",
|
|
3
|
-
"version": "3.19.0
|
|
3
|
+
"version": "3.19.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing mongodbatlas cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "mongodbatlas",
|
|
26
|
-
"version": "3.19.0
|
|
26
|
+
"version": "3.19.0"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
3
|
export interface AdvancedClusterAdvancedConfiguration {
|
|
4
4
|
/**
|
|
5
|
-
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively
|
|
5
|
+
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively. `expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
6
6
|
*/
|
|
7
7
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: pulumi.Input<number>;
|
|
8
8
|
/**
|
|
@@ -862,7 +862,7 @@ export interface CloudProviderAccessSetupAzureConfig {
|
|
|
862
862
|
}
|
|
863
863
|
export interface ClusterAdvancedConfiguration {
|
|
864
864
|
/**
|
|
865
|
-
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively.`expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing.
|
|
865
|
+
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively.`expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
866
866
|
*/
|
|
867
867
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: pulumi.Input<number>;
|
|
868
868
|
/**
|
|
@@ -1450,10 +1450,6 @@ export interface FederatedDatabaseInstanceStorageStore {
|
|
|
1450
1450
|
additionalStorageClasses?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1451
1451
|
allowInsecure?: pulumi.Input<boolean>;
|
|
1452
1452
|
bucket?: pulumi.Input<string>;
|
|
1453
|
-
/**
|
|
1454
|
-
* @deprecated This parameter is deprecated and will be removed by September 2024.
|
|
1455
|
-
*/
|
|
1456
|
-
clusterId?: pulumi.Input<string>;
|
|
1457
1453
|
clusterName?: pulumi.Input<string>;
|
|
1458
1454
|
defaultFormat?: pulumi.Input<string>;
|
|
1459
1455
|
delimiter?: pulumi.Input<string>;
|
package/types/output.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as outputs from "../types/output";
|
|
2
2
|
export interface AdvancedClusterAdvancedConfiguration {
|
|
3
3
|
/**
|
|
4
|
-
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively
|
|
4
|
+
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively. `expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
5
5
|
*/
|
|
6
6
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: number;
|
|
7
7
|
/**
|
|
@@ -407,7 +407,7 @@ export interface AlertConfigurationNotification {
|
|
|
407
407
|
/**
|
|
408
408
|
* The ID of the associated integration, the credentials of which to use for requests.
|
|
409
409
|
*/
|
|
410
|
-
integrationId
|
|
410
|
+
integrationId: string;
|
|
411
411
|
/**
|
|
412
412
|
* Number of minutes to wait between successive notifications for unacknowledged alerts that are not resolved. The minimum value is 5. **NOTE** `PAGER_DUTY`, `VICTOR_OPS`, and `OPS_GENIE` notifications do not return this value. The notification interval must be configured and managed within each external service.
|
|
413
413
|
*/
|
|
@@ -861,7 +861,7 @@ export interface CloudProviderAccessSetupAzureConfig {
|
|
|
861
861
|
}
|
|
862
862
|
export interface ClusterAdvancedConfiguration {
|
|
863
863
|
/**
|
|
864
|
-
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively.`expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing.
|
|
864
|
+
* The minimum pre- and post-image retention time in seconds. This option corresponds to the `changeStreamOptions.preAndPostImages.expireAfterSeconds` cluster parameter. Defaults to `-1`(off). This setting controls the retention policy of change stream pre- and post-images. Pre- and post-images are the versions of a document before and after document modification, respectively.`expireAfterSeconds` controls how long MongoDB retains pre- and post-images. When set to -1 (off), MongoDB uses the default retention policy: pre- and post-images are retained until the corresponding change stream events are removed from the oplog. To set the minimum pre- and post-image retention time, specify an integer value greater than zero. Setting this too low could increase the risk of interrupting Realm sync or triggers processing. This parameter is only supported for MongoDB version 6.0 and above.
|
|
865
865
|
*/
|
|
866
866
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds?: number;
|
|
867
867
|
/**
|
|
@@ -1449,10 +1449,6 @@ export interface FederatedDatabaseInstanceStorageStore {
|
|
|
1449
1449
|
additionalStorageClasses: string[];
|
|
1450
1450
|
allowInsecure: boolean;
|
|
1451
1451
|
bucket: string;
|
|
1452
|
-
/**
|
|
1453
|
-
* @deprecated This parameter is deprecated and will be removed by September 2024.
|
|
1454
|
-
*/
|
|
1455
|
-
clusterId: string;
|
|
1456
1452
|
clusterName: string;
|
|
1457
1453
|
defaultFormat: string;
|
|
1458
1454
|
delimiter: string;
|
|
@@ -1547,7 +1543,7 @@ export interface GetAccessListApiKeysResult {
|
|
|
1547
1543
|
}
|
|
1548
1544
|
export interface GetAdvancedClusterAdvancedConfiguration {
|
|
1549
1545
|
/**
|
|
1550
|
-
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
1546
|
+
* (Optional) The minimum pre- and post-image retention time in seconds This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
1551
1547
|
*/
|
|
1552
1548
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
1553
1549
|
/**
|
|
@@ -1948,7 +1944,7 @@ export interface GetAdvancedClustersResult {
|
|
|
1948
1944
|
}
|
|
1949
1945
|
export interface GetAdvancedClustersResultAdvancedConfiguration {
|
|
1950
1946
|
/**
|
|
1951
|
-
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
1947
|
+
* (Optional) The minimum pre- and post-image retention time in seconds. This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
1952
1948
|
*/
|
|
1953
1949
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
1954
1950
|
/**
|
|
@@ -3137,12 +3133,6 @@ export interface GetCloudBackupSnapshotExportJobsResult {
|
|
|
3137
3133
|
* Custom data to include in the metadata file named `.complete` that Atlas uploads to the bucket when the export job finishes. Custom data can be specified as key and value pairs.
|
|
3138
3134
|
*/
|
|
3139
3135
|
customDatas: outputs.GetCloudBackupSnapshotExportJobsResultCustomData[];
|
|
3140
|
-
/**
|
|
3141
|
-
* Error message, only if the export job failed. **Note:** This attribute is deprecated as it is not being used.
|
|
3142
|
-
*
|
|
3143
|
-
* @deprecated This parameter is deprecated and will be removed in version 1.20.0.
|
|
3144
|
-
*/
|
|
3145
|
-
errMsg: string;
|
|
3146
3136
|
/**
|
|
3147
3137
|
* Unique identifier of the AWS bucket to export the Cloud Backup snapshot to.
|
|
3148
3138
|
*/
|
|
@@ -3356,7 +3346,7 @@ export interface GetCloudProviderAccessSetupAzureConfig {
|
|
|
3356
3346
|
}
|
|
3357
3347
|
export interface GetClusterAdvancedConfiguration {
|
|
3358
3348
|
/**
|
|
3359
|
-
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
3349
|
+
* (Optional) The minimum pre- and post-image retention time in seconds. This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
3360
3350
|
*/
|
|
3361
3351
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
3362
3352
|
/**
|
|
@@ -3744,7 +3734,7 @@ export interface GetClustersResult {
|
|
|
3744
3734
|
}
|
|
3745
3735
|
export interface GetClustersResultAdvancedConfiguration {
|
|
3746
3736
|
/**
|
|
3747
|
-
* (Optional) The minimum pre- and post-image retention time in seconds.
|
|
3737
|
+
* (Optional) The minimum pre- and post-image retention time in seconds. This parameter is only supported for MongoDB version 6.0 and above. Defaults to `-1`(off).
|
|
3748
3738
|
*/
|
|
3749
3739
|
changeStreamOptionsPreAndPostImagesExpireAfterSeconds: number;
|
|
3750
3740
|
/**
|
|
@@ -4683,10 +4673,6 @@ export interface GetFederatedDatabaseInstanceStorageStore {
|
|
|
4683
4673
|
additionalStorageClasses: string[];
|
|
4684
4674
|
allowInsecure: boolean;
|
|
4685
4675
|
bucket: string;
|
|
4686
|
-
/**
|
|
4687
|
-
* @deprecated This parameter is deprecated and will be removed by September 2024.
|
|
4688
|
-
*/
|
|
4689
|
-
clusterId: string;
|
|
4690
4676
|
clusterName: string;
|
|
4691
4677
|
defaultFormat: string;
|
|
4692
4678
|
delimiter: string;
|
|
@@ -4776,7 +4762,6 @@ export interface GetFederatedDatabaseInstancesResult {
|
|
|
4776
4762
|
* * `storage_stores.#.delimiter` - The delimiter that separates `storage_databases.#.collections.#.data_sources.#.path` segments in the data store.
|
|
4777
4763
|
* * `storage_stores.#.include_tags` - Determines whether or not to use S3 tags on the files in the given path as additional partition attributes.
|
|
4778
4764
|
* * `storage_stores.#.cluster_name` - Human-readable label of the MongoDB Cloud cluster on which the store is based.
|
|
4779
|
-
* * `storage_stores.#.cluster_id` - ID of the Cluster the Online Archive belongs to.
|
|
4780
4765
|
* * `storage_stores.#.allow_insecure` - Flag that validates the scheme in the specified URLs.
|
|
4781
4766
|
* * `storage_stores.#.public` - Flag that indicates whether the bucket is public.
|
|
4782
4767
|
* * `storage_stores.#.default_format` - Default format that Data Lake assumes if it encounters a file without an extension while searching the storeName.
|
|
@@ -4859,10 +4844,6 @@ export interface GetFederatedDatabaseInstancesResultStorageStore {
|
|
|
4859
4844
|
additionalStorageClasses: string[];
|
|
4860
4845
|
allowInsecure: boolean;
|
|
4861
4846
|
bucket: string;
|
|
4862
|
-
/**
|
|
4863
|
-
* @deprecated This parameter is deprecated and will be removed by September 2024.
|
|
4864
|
-
*/
|
|
4865
|
-
clusterId: string;
|
|
4866
4847
|
clusterName: string;
|
|
4867
4848
|
defaultFormat: string;
|
|
4868
4849
|
delimiter: string;
|