@pulumi/mongodbatlas 3.11.0 → 3.11.1
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 +9 -4
- package/alertConfiguration.js +3 -1
- package/alertConfiguration.js.map +1 -1
- package/cloudProviderAccess.d.ts +1 -1
- package/cloudProviderAccess.js +1 -1
- package/get509AuthenticationDatabaseUser.d.ts +2 -58
- package/get509AuthenticationDatabaseUser.js +3 -58
- package/get509AuthenticationDatabaseUser.js.map +1 -1
- package/getAlertConfiguration.d.ts +9 -0
- package/getAlertConfiguration.js.map +1 -1
- package/getOnlineArchive.d.ts +19 -2
- package/getOnlineArchive.js +18 -2
- package/getOnlineArchive.js.map +1 -1
- package/getOnlineArchives.d.ts +44 -28
- package/getOnlineArchives.js +44 -28
- package/getOnlineArchives.js.map +1 -1
- package/getX509AuthenticationDatabaseUser.d.ts +64 -0
- package/getX509AuthenticationDatabaseUser.js +38 -0
- package/getX509AuthenticationDatabaseUser.js.map +1 -0
- package/index.d.ts +3 -18
- package/index.js +8 -27
- package/index.js.map +1 -1
- package/onlineArchive.d.ts +33 -12
- package/onlineArchive.js +2 -0
- package/onlineArchive.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +10 -53
- package/types/output.d.ts +151 -227
- package/dataLake.d.ts +0 -204
- package/dataLake.js +0 -107
- package/dataLake.js.map +0 -1
- package/getDataLake.d.ts +0 -100
- package/getDataLake.js +0 -30
- package/getDataLake.js.map +0 -1
- package/getDataLakes.d.ts +0 -68
- package/getDataLakes.js +0 -51
- package/getDataLakes.js.map +0 -1
- package/getPrivatelinkEndpointServiceAdl.d.ts +0 -66
- package/getPrivatelinkEndpointServiceAdl.js +0 -34
- package/getPrivatelinkEndpointServiceAdl.js.map +0 -1
- package/getPrivatelinkEndpointsServiceAdl.d.ts +0 -89
- package/getPrivatelinkEndpointsServiceAdl.js +0 -65
- package/getPrivatelinkEndpointsServiceAdl.js.map +0 -1
- package/privatelinkEndpointServiceAdl.d.ts +0 -125
- package/privatelinkEndpointServiceAdl.js +0 -98
- package/privatelinkEndpointServiceAdl.js.map +0 -1
package/getOnlineArchives.js
CHANGED
|
@@ -23,27 +23,35 @@ const utilities = require("./utilities");
|
|
|
23
23
|
* ```
|
|
24
24
|
* ## Attributes reference
|
|
25
25
|
*
|
|
26
|
-
* * `dbName`
|
|
27
|
-
* * `collName`
|
|
28
|
-
* * `collectionType`
|
|
29
|
-
* * `
|
|
26
|
+
* * `dbName` - Name of the database that contains the collection.
|
|
27
|
+
* * `collName` - Name of the collection.
|
|
28
|
+
* * `collectionType` - Type of MongoDB collection that you want to return. This value can be "TIMESERIES" or "STANDARD". Default is "STANDARD".
|
|
29
|
+
* * `criteria` - Criteria to use for archiving data. See criteria.
|
|
30
|
+
* * `dataExpirationRule` - Rule for specifying when data should be deleted from the archive. See data expiration rule.
|
|
31
|
+
* * `schedule` - Regular frequency and duration when archiving process occurs. See schedule.
|
|
32
|
+
* * `partitionFields` - Fields to use to partition data. You can specify up to two frequently queried fields to use for partitioning data. Queries that don’t contain the specified fields require a full collection scan of all archived documents, which takes longer and increases your costs. To learn more about how partition improves query performance, see [Data Structure in S3](https://docs.mongodb.com/datalake/admin/optimize-query-performance/#data-structure-in-s3). The value of a partition field can be up to a maximum of 700 characters. Documents with values exceeding 700 characters are not archived. See partition fields.
|
|
33
|
+
* * `paused` - State of the online archive. This is required for pausing an active online archive or resuming a paused online archive. If the collection has another active online archive, the resume request fails.
|
|
34
|
+
* * `state` - Status of the online archive. Valid values are: Pending, Archiving, Idle, Pausing, Paused, Orphaned and Deleted
|
|
30
35
|
*
|
|
31
36
|
* ### Criteria
|
|
32
|
-
* * `type`
|
|
33
|
-
* * `dateField`
|
|
34
|
-
* * `dateFormat`
|
|
37
|
+
* * `type` - Type of criteria (DATE, CUSTOM)
|
|
38
|
+
* * `dateField` - Indexed database parameter that stores the date that determines when data moves to the online archive. MongoDB Cloud archives the data when the current date exceeds the date in this database parameter plus the number of days specified through the expireAfterDays parameter. Set this parameter when `type` is `DATE`.
|
|
39
|
+
* * `dateFormat` - Syntax used to write the date after which data moves to the online archive. Date can be expressed as ISO 8601 or Epoch timestamps. The Epoch timestamp can be expressed as nanoseconds, milliseconds, or seconds. Set this parameter when `type` is `DATE`. You must set `type` to `DATE` if `collectionType` is `TIMESERIES`. Valid values: ISODATE (default), EPOCH_SECONDS, EPOCH_MILLIS, EPOCH_NANOSECONDS.
|
|
35
40
|
* * `expireAfterDays` - Number of days after the value in the criteria.dateField when MongoDB Cloud archives data in the specified cluster. Set this parameter when `type` is `DATE`.
|
|
36
41
|
* * `query` - JSON query to use to select documents for archiving. Atlas uses the specified query with the db.collection.find(query) command. The empty document {} to return all documents is not supported. Set this parameter when `type` is `CUSTOM`.
|
|
37
42
|
*
|
|
43
|
+
* ### Data Expiration Rule
|
|
44
|
+
* * `expireAfterDays` - Number of days used in the date criteria for nominating documents for deletion. Value must be between 7 and 9215.
|
|
45
|
+
*
|
|
38
46
|
* ### Schedule
|
|
39
47
|
*
|
|
40
|
-
* * `type`
|
|
41
|
-
* * `startHour`
|
|
42
|
-
* * `endHour`
|
|
43
|
-
* * `startMinute`
|
|
44
|
-
* * `endMinute`
|
|
45
|
-
* * `dayOfMonth`
|
|
46
|
-
* * `dayOfWeek`
|
|
48
|
+
* * `type` - Type of schedule (`DAILY`, `MONTHLY`, `WEEKLY`).
|
|
49
|
+
* * `startHour` - Hour of the day when the when the scheduled window to run one online archive starts.
|
|
50
|
+
* * `endHour` - Hour of the day when the scheduled window to run one online archive ends.
|
|
51
|
+
* * `startMinute` - Minute of the hour when the scheduled window to run one online archive starts.
|
|
52
|
+
* * `endMinute` - Minute of the hour when the scheduled window to run one online archive ends.
|
|
53
|
+
* * `dayOfMonth` - Day of the month when the scheduled archive starts.
|
|
54
|
+
* * `dayOfWeek` - Day of the week when the scheduled archive starts. The week starts with Monday (1) and ends with Sunday (7).
|
|
47
55
|
*
|
|
48
56
|
* ### Partition
|
|
49
57
|
* * `fieldName` - Human-readable label that identifies the parameter that MongoDB Cloud uses to partition data. To specify a nested parameter, use the dot notation.
|
|
@@ -76,27 +84,35 @@ exports.getOnlineArchives = getOnlineArchives;
|
|
|
76
84
|
* ```
|
|
77
85
|
* ## Attributes reference
|
|
78
86
|
*
|
|
79
|
-
* * `dbName`
|
|
80
|
-
* * `collName`
|
|
81
|
-
* * `collectionType`
|
|
82
|
-
* * `
|
|
87
|
+
* * `dbName` - Name of the database that contains the collection.
|
|
88
|
+
* * `collName` - Name of the collection.
|
|
89
|
+
* * `collectionType` - Type of MongoDB collection that you want to return. This value can be "TIMESERIES" or "STANDARD". Default is "STANDARD".
|
|
90
|
+
* * `criteria` - Criteria to use for archiving data. See criteria.
|
|
91
|
+
* * `dataExpirationRule` - Rule for specifying when data should be deleted from the archive. See data expiration rule.
|
|
92
|
+
* * `schedule` - Regular frequency and duration when archiving process occurs. See schedule.
|
|
93
|
+
* * `partitionFields` - Fields to use to partition data. You can specify up to two frequently queried fields to use for partitioning data. Queries that don’t contain the specified fields require a full collection scan of all archived documents, which takes longer and increases your costs. To learn more about how partition improves query performance, see [Data Structure in S3](https://docs.mongodb.com/datalake/admin/optimize-query-performance/#data-structure-in-s3). The value of a partition field can be up to a maximum of 700 characters. Documents with values exceeding 700 characters are not archived. See partition fields.
|
|
94
|
+
* * `paused` - State of the online archive. This is required for pausing an active online archive or resuming a paused online archive. If the collection has another active online archive, the resume request fails.
|
|
95
|
+
* * `state` - Status of the online archive. Valid values are: Pending, Archiving, Idle, Pausing, Paused, Orphaned and Deleted
|
|
83
96
|
*
|
|
84
97
|
* ### Criteria
|
|
85
|
-
* * `type`
|
|
86
|
-
* * `dateField`
|
|
87
|
-
* * `dateFormat`
|
|
98
|
+
* * `type` - Type of criteria (DATE, CUSTOM)
|
|
99
|
+
* * `dateField` - Indexed database parameter that stores the date that determines when data moves to the online archive. MongoDB Cloud archives the data when the current date exceeds the date in this database parameter plus the number of days specified through the expireAfterDays parameter. Set this parameter when `type` is `DATE`.
|
|
100
|
+
* * `dateFormat` - Syntax used to write the date after which data moves to the online archive. Date can be expressed as ISO 8601 or Epoch timestamps. The Epoch timestamp can be expressed as nanoseconds, milliseconds, or seconds. Set this parameter when `type` is `DATE`. You must set `type` to `DATE` if `collectionType` is `TIMESERIES`. Valid values: ISODATE (default), EPOCH_SECONDS, EPOCH_MILLIS, EPOCH_NANOSECONDS.
|
|
88
101
|
* * `expireAfterDays` - Number of days after the value in the criteria.dateField when MongoDB Cloud archives data in the specified cluster. Set this parameter when `type` is `DATE`.
|
|
89
102
|
* * `query` - JSON query to use to select documents for archiving. Atlas uses the specified query with the db.collection.find(query) command. The empty document {} to return all documents is not supported. Set this parameter when `type` is `CUSTOM`.
|
|
90
103
|
*
|
|
104
|
+
* ### Data Expiration Rule
|
|
105
|
+
* * `expireAfterDays` - Number of days used in the date criteria for nominating documents for deletion. Value must be between 7 and 9215.
|
|
106
|
+
*
|
|
91
107
|
* ### Schedule
|
|
92
108
|
*
|
|
93
|
-
* * `type`
|
|
94
|
-
* * `startHour`
|
|
95
|
-
* * `endHour`
|
|
96
|
-
* * `startMinute`
|
|
97
|
-
* * `endMinute`
|
|
98
|
-
* * `dayOfMonth`
|
|
99
|
-
* * `dayOfWeek`
|
|
109
|
+
* * `type` - Type of schedule (`DAILY`, `MONTHLY`, `WEEKLY`).
|
|
110
|
+
* * `startHour` - Hour of the day when the when the scheduled window to run one online archive starts.
|
|
111
|
+
* * `endHour` - Hour of the day when the scheduled window to run one online archive ends.
|
|
112
|
+
* * `startMinute` - Minute of the hour when the scheduled window to run one online archive starts.
|
|
113
|
+
* * `endMinute` - Minute of the hour when the scheduled window to run one online archive ends.
|
|
114
|
+
* * `dayOfMonth` - Day of the month when the scheduled archive starts.
|
|
115
|
+
* * `dayOfWeek` - Day of the week when the scheduled archive starts. The week starts with Monday (1) and ends with Sunday (7).
|
|
100
116
|
*
|
|
101
117
|
* ### Partition
|
|
102
118
|
* * `fieldName` - Human-readable label that identifies the parameter that MongoDB Cloud uses to partition data. To specify a nested parameter, use the dot notation.
|
package/getOnlineArchives.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOnlineArchives.js","sourceRoot":"","sources":["../getOnlineArchives.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getOnlineArchives.js","sourceRoot":"","sources":["../getOnlineArchives.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IAEtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;AAiCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoDG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iBAAiB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5E,CAAC;AAFD,0DAEC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* `mongodbatlas.X509AuthenticationDatabaseUser` describe a X509 Authentication Database User. This represents a X509 Authentication Database User.
|
|
5
|
+
*
|
|
6
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ### S
|
|
11
|
+
*/
|
|
12
|
+
export declare function getX509AuthenticationDatabaseUser(args: GetX509AuthenticationDatabaseUserArgs, opts?: pulumi.InvokeOptions): Promise<GetX509AuthenticationDatabaseUserResult>;
|
|
13
|
+
/**
|
|
14
|
+
* A collection of arguments for invoking getX509AuthenticationDatabaseUser.
|
|
15
|
+
*/
|
|
16
|
+
export interface GetX509AuthenticationDatabaseUserArgs {
|
|
17
|
+
/**
|
|
18
|
+
* Identifier for the Atlas project associated with the X.509 configuration.
|
|
19
|
+
*/
|
|
20
|
+
projectId: string;
|
|
21
|
+
/**
|
|
22
|
+
* Username of the database user to create a certificate for.
|
|
23
|
+
*/
|
|
24
|
+
username?: string;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* A collection of values returned by getX509AuthenticationDatabaseUser.
|
|
28
|
+
*/
|
|
29
|
+
export interface GetX509AuthenticationDatabaseUserResult {
|
|
30
|
+
/**
|
|
31
|
+
* Array of objects where each details one unexpired database user certificate.
|
|
32
|
+
*/
|
|
33
|
+
readonly certificates: outputs.GetX509AuthenticationDatabaseUserCertificate[];
|
|
34
|
+
readonly customerX509Cas: string;
|
|
35
|
+
/**
|
|
36
|
+
* The provider-assigned unique ID for this managed resource.
|
|
37
|
+
*/
|
|
38
|
+
readonly id: string;
|
|
39
|
+
readonly projectId: string;
|
|
40
|
+
readonly username?: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* `mongodbatlas.X509AuthenticationDatabaseUser` describe a X509 Authentication Database User. This represents a X509 Authentication Database User.
|
|
44
|
+
*
|
|
45
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
46
|
+
*
|
|
47
|
+
* ## Example Usage
|
|
48
|
+
*
|
|
49
|
+
* ### S
|
|
50
|
+
*/
|
|
51
|
+
export declare function getX509AuthenticationDatabaseUserOutput(args: GetX509AuthenticationDatabaseUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetX509AuthenticationDatabaseUserResult>;
|
|
52
|
+
/**
|
|
53
|
+
* A collection of arguments for invoking getX509AuthenticationDatabaseUser.
|
|
54
|
+
*/
|
|
55
|
+
export interface GetX509AuthenticationDatabaseUserOutputArgs {
|
|
56
|
+
/**
|
|
57
|
+
* Identifier for the Atlas project associated with the X.509 configuration.
|
|
58
|
+
*/
|
|
59
|
+
projectId: pulumi.Input<string>;
|
|
60
|
+
/**
|
|
61
|
+
* Username of the database user to create a certificate for.
|
|
62
|
+
*/
|
|
63
|
+
username?: pulumi.Input<string>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
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.getX509AuthenticationDatabaseUserOutput = exports.getX509AuthenticationDatabaseUser = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* `mongodbatlas.X509AuthenticationDatabaseUser` describe a X509 Authentication Database User. This represents a X509 Authentication Database User.
|
|
10
|
+
*
|
|
11
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ### S
|
|
16
|
+
*/
|
|
17
|
+
function getX509AuthenticationDatabaseUser(args, opts) {
|
|
18
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
19
|
+
return pulumi.runtime.invoke("mongodbatlas:index/getX509AuthenticationDatabaseUser:getX509AuthenticationDatabaseUser", {
|
|
20
|
+
"projectId": args.projectId,
|
|
21
|
+
"username": args.username,
|
|
22
|
+
}, opts);
|
|
23
|
+
}
|
|
24
|
+
exports.getX509AuthenticationDatabaseUser = getX509AuthenticationDatabaseUser;
|
|
25
|
+
/**
|
|
26
|
+
* `mongodbatlas.X509AuthenticationDatabaseUser` describe a X509 Authentication Database User. This represents a X509 Authentication Database User.
|
|
27
|
+
*
|
|
28
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find groupId in the official documentation.
|
|
29
|
+
*
|
|
30
|
+
* ## Example Usage
|
|
31
|
+
*
|
|
32
|
+
* ### S
|
|
33
|
+
*/
|
|
34
|
+
function getX509AuthenticationDatabaseUserOutput(args, opts) {
|
|
35
|
+
return pulumi.output(args).apply((a) => getX509AuthenticationDatabaseUser(a, opts));
|
|
36
|
+
}
|
|
37
|
+
exports.getX509AuthenticationDatabaseUserOutput = getX509AuthenticationDatabaseUserOutput;
|
|
38
|
+
//# sourceMappingURL=getX509AuthenticationDatabaseUser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getX509AuthenticationDatabaseUser.js","sourceRoot":"","sources":["../getX509AuthenticationDatabaseUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IAEtH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wFAAwF,EAAE;QACnH,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8EAOC;AAgCD;;;;;;;;GAQG;AACH,SAAgB,uCAAuC,CAAC,IAAiD,EAAE,IAA2B;IAClI,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,iCAAiC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5F,CAAC;AAFD,0FAEC"}
|
package/index.d.ts
CHANGED
|
@@ -52,9 +52,6 @@ export declare const CustomDbRole: typeof import("./customDbRole").CustomDbRole;
|
|
|
52
52
|
export { CustomDnsConfigurationClusterAwsArgs, CustomDnsConfigurationClusterAwsState } from "./customDnsConfigurationClusterAws";
|
|
53
53
|
export type CustomDnsConfigurationClusterAws = import("./customDnsConfigurationClusterAws").CustomDnsConfigurationClusterAws;
|
|
54
54
|
export declare const CustomDnsConfigurationClusterAws: typeof import("./customDnsConfigurationClusterAws").CustomDnsConfigurationClusterAws;
|
|
55
|
-
export { DataLakeArgs, DataLakeState } from "./dataLake";
|
|
56
|
-
export type DataLake = import("./dataLake").DataLake;
|
|
57
|
-
export declare const DataLake: typeof import("./dataLake").DataLake;
|
|
58
55
|
export { DataLakePipelineArgs, DataLakePipelineState } from "./dataLakePipeline";
|
|
59
56
|
export type DataLakePipeline = import("./dataLakePipeline").DataLakePipeline;
|
|
60
57
|
export declare const DataLakePipeline: typeof import("./dataLakePipeline").DataLakePipeline;
|
|
@@ -172,9 +169,6 @@ export declare const getCustomDbRolesOutput: typeof import("./getCustomDbRoles")
|
|
|
172
169
|
export { GetCustomDnsConfigurationClusterAwsArgs, GetCustomDnsConfigurationClusterAwsResult, GetCustomDnsConfigurationClusterAwsOutputArgs } from "./getCustomDnsConfigurationClusterAws";
|
|
173
170
|
export declare const getCustomDnsConfigurationClusterAws: typeof import("./getCustomDnsConfigurationClusterAws").getCustomDnsConfigurationClusterAws;
|
|
174
171
|
export declare const getCustomDnsConfigurationClusterAwsOutput: typeof import("./getCustomDnsConfigurationClusterAws").getCustomDnsConfigurationClusterAwsOutput;
|
|
175
|
-
export { GetDataLakeArgs, GetDataLakeResult, GetDataLakeOutputArgs } from "./getDataLake";
|
|
176
|
-
export declare const getDataLake: typeof import("./getDataLake").getDataLake;
|
|
177
|
-
export declare const getDataLakeOutput: typeof import("./getDataLake").getDataLakeOutput;
|
|
178
172
|
export { GetDataLakePipelineArgs, GetDataLakePipelineResult, GetDataLakePipelineOutputArgs } from "./getDataLakePipeline";
|
|
179
173
|
export declare const getDataLakePipeline: typeof import("./getDataLakePipeline").getDataLakePipeline;
|
|
180
174
|
export declare const getDataLakePipelineOutput: typeof import("./getDataLakePipeline").getDataLakePipelineOutput;
|
|
@@ -187,9 +181,6 @@ export declare const getDataLakePipelineRunsOutput: typeof import("./getDataLake
|
|
|
187
181
|
export { GetDataLakePipelinesArgs, GetDataLakePipelinesResult, GetDataLakePipelinesOutputArgs } from "./getDataLakePipelines";
|
|
188
182
|
export declare const getDataLakePipelines: typeof import("./getDataLakePipelines").getDataLakePipelines;
|
|
189
183
|
export declare const getDataLakePipelinesOutput: typeof import("./getDataLakePipelines").getDataLakePipelinesOutput;
|
|
190
|
-
export { GetDataLakesArgs, GetDataLakesResult, GetDataLakesOutputArgs } from "./getDataLakes";
|
|
191
|
-
export declare const getDataLakes: typeof import("./getDataLakes").getDataLakes;
|
|
192
|
-
export declare const getDataLakesOutput: typeof import("./getDataLakes").getDataLakesOutput;
|
|
193
184
|
export { GetDatabaseUserArgs, GetDatabaseUserResult, GetDatabaseUserOutputArgs } from "./getDatabaseUser";
|
|
194
185
|
export declare const getDatabaseUser: typeof import("./getDatabaseUser").getDatabaseUser;
|
|
195
186
|
export declare const getDatabaseUserOutput: typeof import("./getDatabaseUser").getDatabaseUserOutput;
|
|
@@ -283,9 +274,6 @@ export declare const getPrivateLinkEndpointOutput: typeof import("./getPrivateLi
|
|
|
283
274
|
export { GetPrivateLinkEndpointServiceArgs, GetPrivateLinkEndpointServiceResult, GetPrivateLinkEndpointServiceOutputArgs } from "./getPrivateLinkEndpointService";
|
|
284
275
|
export declare const getPrivateLinkEndpointService: typeof import("./getPrivateLinkEndpointService").getPrivateLinkEndpointService;
|
|
285
276
|
export declare const getPrivateLinkEndpointServiceOutput: typeof import("./getPrivateLinkEndpointService").getPrivateLinkEndpointServiceOutput;
|
|
286
|
-
export { GetPrivatelinkEndpointServiceAdlArgs, GetPrivatelinkEndpointServiceAdlResult, GetPrivatelinkEndpointServiceAdlOutputArgs } from "./getPrivatelinkEndpointServiceAdl";
|
|
287
|
-
export declare const getPrivatelinkEndpointServiceAdl: typeof import("./getPrivatelinkEndpointServiceAdl").getPrivatelinkEndpointServiceAdl;
|
|
288
|
-
export declare const getPrivatelinkEndpointServiceAdlOutput: typeof import("./getPrivatelinkEndpointServiceAdl").getPrivatelinkEndpointServiceAdlOutput;
|
|
289
277
|
export { GetPrivatelinkEndpointServiceDataFederationOnlineArchiveArgs, GetPrivatelinkEndpointServiceDataFederationOnlineArchiveResult, GetPrivatelinkEndpointServiceDataFederationOnlineArchiveOutputArgs } from "./getPrivatelinkEndpointServiceDataFederationOnlineArchive";
|
|
290
278
|
export declare const getPrivatelinkEndpointServiceDataFederationOnlineArchive: typeof import("./getPrivatelinkEndpointServiceDataFederationOnlineArchive").getPrivatelinkEndpointServiceDataFederationOnlineArchive;
|
|
291
279
|
export declare const getPrivatelinkEndpointServiceDataFederationOnlineArchiveOutput: typeof import("./getPrivatelinkEndpointServiceDataFederationOnlineArchive").getPrivatelinkEndpointServiceDataFederationOnlineArchiveOutput;
|
|
@@ -295,9 +283,6 @@ export declare const getPrivatelinkEndpointServiceDataFederationOnlineArchivesOu
|
|
|
295
283
|
export { GetPrivatelinkEndpointServiceServerlessArgs, GetPrivatelinkEndpointServiceServerlessResult, GetPrivatelinkEndpointServiceServerlessOutputArgs } from "./getPrivatelinkEndpointServiceServerless";
|
|
296
284
|
export declare const getPrivatelinkEndpointServiceServerless: typeof import("./getPrivatelinkEndpointServiceServerless").getPrivatelinkEndpointServiceServerless;
|
|
297
285
|
export declare const getPrivatelinkEndpointServiceServerlessOutput: typeof import("./getPrivatelinkEndpointServiceServerless").getPrivatelinkEndpointServiceServerlessOutput;
|
|
298
|
-
export { GetPrivatelinkEndpointsServiceAdlArgs, GetPrivatelinkEndpointsServiceAdlResult, GetPrivatelinkEndpointsServiceAdlOutputArgs } from "./getPrivatelinkEndpointsServiceAdl";
|
|
299
|
-
export declare const getPrivatelinkEndpointsServiceAdl: typeof import("./getPrivatelinkEndpointsServiceAdl").getPrivatelinkEndpointsServiceAdl;
|
|
300
|
-
export declare const getPrivatelinkEndpointsServiceAdlOutput: typeof import("./getPrivatelinkEndpointsServiceAdl").getPrivatelinkEndpointsServiceAdlOutput;
|
|
301
286
|
export { GetPrivatelinkEndpointsServiceServerlessArgs, GetPrivatelinkEndpointsServiceServerlessResult, GetPrivatelinkEndpointsServiceServerlessOutputArgs } from "./getPrivatelinkEndpointsServiceServerless";
|
|
302
287
|
export declare const getPrivatelinkEndpointsServiceServerless: typeof import("./getPrivatelinkEndpointsServiceServerless").getPrivatelinkEndpointsServiceServerless;
|
|
303
288
|
export declare const getPrivatelinkEndpointsServiceServerlessOutput: typeof import("./getPrivatelinkEndpointsServiceServerless").getPrivatelinkEndpointsServiceServerlessOutput;
|
|
@@ -358,6 +343,9 @@ export declare const getThirdPartyIntegrationOutput: typeof import("./getThirdPa
|
|
|
358
343
|
export { GetThirdPartyIntegrationsArgs, GetThirdPartyIntegrationsResult, GetThirdPartyIntegrationsOutputArgs } from "./getThirdPartyIntegrations";
|
|
359
344
|
export declare const getThirdPartyIntegrations: typeof import("./getThirdPartyIntegrations").getThirdPartyIntegrations;
|
|
360
345
|
export declare const getThirdPartyIntegrationsOutput: typeof import("./getThirdPartyIntegrations").getThirdPartyIntegrationsOutput;
|
|
346
|
+
export { GetX509AuthenticationDatabaseUserArgs, GetX509AuthenticationDatabaseUserResult, GetX509AuthenticationDatabaseUserOutputArgs } from "./getX509AuthenticationDatabaseUser";
|
|
347
|
+
export declare const getX509AuthenticationDatabaseUser: typeof import("./getX509AuthenticationDatabaseUser").getX509AuthenticationDatabaseUser;
|
|
348
|
+
export declare const getX509AuthenticationDatabaseUserOutput: typeof import("./getX509AuthenticationDatabaseUser").getX509AuthenticationDatabaseUserOutput;
|
|
361
349
|
export { GlobalClusterConfigArgs, GlobalClusterConfigState } from "./globalClusterConfig";
|
|
362
350
|
export type GlobalClusterConfig = import("./globalClusterConfig").GlobalClusterConfig;
|
|
363
351
|
export declare const GlobalClusterConfig: typeof import("./globalClusterConfig").GlobalClusterConfig;
|
|
@@ -397,9 +385,6 @@ export declare const PrivateLinkEndpointService: typeof import("./privateLinkEnd
|
|
|
397
385
|
export { PrivatelinkEndpointServerlessArgs, PrivatelinkEndpointServerlessState } from "./privatelinkEndpointServerless";
|
|
398
386
|
export type PrivatelinkEndpointServerless = import("./privatelinkEndpointServerless").PrivatelinkEndpointServerless;
|
|
399
387
|
export declare const PrivatelinkEndpointServerless: typeof import("./privatelinkEndpointServerless").PrivatelinkEndpointServerless;
|
|
400
|
-
export { PrivatelinkEndpointServiceAdlArgs, PrivatelinkEndpointServiceAdlState } from "./privatelinkEndpointServiceAdl";
|
|
401
|
-
export type PrivatelinkEndpointServiceAdl = import("./privatelinkEndpointServiceAdl").PrivatelinkEndpointServiceAdl;
|
|
402
|
-
export declare const PrivatelinkEndpointServiceAdl: typeof import("./privatelinkEndpointServiceAdl").PrivatelinkEndpointServiceAdl;
|
|
403
388
|
export { PrivatelinkEndpointServiceDataFederationOnlineArchiveArgs, PrivatelinkEndpointServiceDataFederationOnlineArchiveState } from "./privatelinkEndpointServiceDataFederationOnlineArchive";
|
|
404
389
|
export type PrivatelinkEndpointServiceDataFederationOnlineArchive = import("./privatelinkEndpointServiceDataFederationOnlineArchive").PrivatelinkEndpointServiceDataFederationOnlineArchive;
|
|
405
390
|
export declare const PrivatelinkEndpointServiceDataFederationOnlineArchive: typeof import("./privatelinkEndpointServiceDataFederationOnlineArchive").PrivatelinkEndpointServiceDataFederationOnlineArchive;
|
package/index.js
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.getAtlasUsersOutput = exports.getAtlasUsers = exports.getAtlasUserOutput = exports.getAtlasUser = exports.getApiKeysOutput = exports.getApiKeys = 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.FederatedSettingsOrgRoleMapping = exports.FederatedSettingsOrgConfig = exports.FederatedSettingsIdentityProvider = exports.FederatedQueryLimit = exports.FederatedDatabaseInstance = exports.EventTrigger = exports.EncryptionAtRest = exports.DatabaseUser = exports.DataLakePipeline = exports.
|
|
6
|
-
exports.
|
|
7
|
-
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.getMaintenanceWindowOutput = exports.getMaintenanceWindow = exports.getLdapVerifyOutput = exports.getLdapVerify = exports.getLdapConfigurationOutput = exports.getLdapConfiguration = exports.getGlobalClusterConfigOutput = exports.getGlobalClusterConfig = 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 =
|
|
8
|
-
exports.
|
|
9
|
-
exports.types = exports.config = exports.X509AuthenticationDatabaseUser = exports.ThirdPartyIntegration = exports.Teams = exports.Team = exports.ServerlessInstance = exports.SearchIndex = exports.Provider = exports.ProjectIpAccessList = exports.ProjectInvitation = exports.ProjectApiKey = exports.Project = exports.PrivatelinkEndpointServiceServerless = exports.PrivatelinkEndpointServiceDataFederationOnlineArchive = exports.
|
|
5
|
+
exports.getAuditing = exports.getAtlasUsersOutput = exports.getAtlasUsers = exports.getAtlasUserOutput = exports.getAtlasUser = exports.getApiKeysOutput = exports.getApiKeys = 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.FederatedSettingsOrgRoleMapping = exports.FederatedSettingsOrgConfig = exports.FederatedSettingsIdentityProvider = exports.FederatedQueryLimit = exports.FederatedDatabaseInstance = exports.EventTrigger = exports.EncryptionAtRest = exports.DatabaseUser = exports.DataLakePipeline = exports.CustomDnsConfigurationClusterAws = exports.CustomDbRole = exports.ClusterOutageSimulation = exports.Cluster = exports.CloudProviderAccessSetup = exports.CloudProviderAccessAuthorization = exports.CloudProviderAccess = exports.CloudBackupSnapshotRestoreJob = exports.CloudBackupSnapshotExportJob = exports.CloudBackupSnapshotExportBucket = exports.CloudBackupSnapshot = exports.CloudBackupSchedule = exports.BackupCompliancePolicy = exports.Auditing = exports.ApiKey = exports.AlertConfiguration = exports.AdvancedCluster = exports.AccessListApiKey = void 0;
|
|
6
|
+
exports.getEventTrigger = exports.getDatabaseUsersOutput = exports.getDatabaseUsers = exports.getDatabaseUserOutput = exports.getDatabaseUser = exports.getDataLakePipelinesOutput = 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.getClustersOutput = exports.getClusters = exports.getClusterOutageSimulationOutput = exports.getClusterOutageSimulation = exports.getClusterOutput = exports.getCluster = exports.getCloudProviderAccessSetupOutput = exports.getCloudProviderAccessSetup = exports.getCloudProviderAccessOutput = exports.getCloudProviderAccess = 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 = void 0;
|
|
7
|
+
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.getMaintenanceWindowOutput = exports.getMaintenanceWindow = exports.getLdapVerifyOutput = exports.getLdapVerify = exports.getLdapConfigurationOutput = exports.getLdapConfiguration = exports.getGlobalClusterConfigOutput = exports.getGlobalClusterConfig = 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 = void 0;
|
|
8
|
+
exports.getThirdPartyIntegration = exports.getTeamsOutput = exports.getTeams = exports.getTeamOutput = exports.getTeam = 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.getRolesOrgIdOutput = exports.getRolesOrgId = exports.getProjectsOutput = exports.getProjects = exports.getProjectIpAccessListOutput = 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 = void 0;
|
|
9
|
+
exports.types = exports.config = exports.X509AuthenticationDatabaseUser = exports.ThirdPartyIntegration = exports.Teams = exports.Team = exports.ServerlessInstance = exports.SearchIndex = exports.Provider = 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.MaintenanceWindow = exports.LdapVerify = exports.LdapConfiguration = exports.GlobalClusterConfig = exports.getX509AuthenticationDatabaseUserOutput = exports.getX509AuthenticationDatabaseUser = exports.getThirdPartyIntegrationsOutput = exports.getThirdPartyIntegrations = exports.getThirdPartyIntegrationOutput = void 0;
|
|
10
10
|
const pulumi = require("@pulumi/pulumi");
|
|
11
11
|
const utilities = require("./utilities");
|
|
12
12
|
exports.AccessListApiKey = null;
|
|
@@ -45,8 +45,6 @@ exports.CustomDbRole = null;
|
|
|
45
45
|
utilities.lazyLoad(exports, ["CustomDbRole"], () => require("./customDbRole"));
|
|
46
46
|
exports.CustomDnsConfigurationClusterAws = null;
|
|
47
47
|
utilities.lazyLoad(exports, ["CustomDnsConfigurationClusterAws"], () => require("./customDnsConfigurationClusterAws"));
|
|
48
|
-
exports.DataLake = null;
|
|
49
|
-
utilities.lazyLoad(exports, ["DataLake"], () => require("./dataLake"));
|
|
50
48
|
exports.DataLakePipeline = null;
|
|
51
49
|
utilities.lazyLoad(exports, ["DataLakePipeline"], () => require("./dataLakePipeline"));
|
|
52
50
|
exports.DatabaseUser = null;
|
|
@@ -155,9 +153,6 @@ utilities.lazyLoad(exports, ["getCustomDbRoles", "getCustomDbRolesOutput"], () =
|
|
|
155
153
|
exports.getCustomDnsConfigurationClusterAws = null;
|
|
156
154
|
exports.getCustomDnsConfigurationClusterAwsOutput = null;
|
|
157
155
|
utilities.lazyLoad(exports, ["getCustomDnsConfigurationClusterAws", "getCustomDnsConfigurationClusterAwsOutput"], () => require("./getCustomDnsConfigurationClusterAws"));
|
|
158
|
-
exports.getDataLake = null;
|
|
159
|
-
exports.getDataLakeOutput = null;
|
|
160
|
-
utilities.lazyLoad(exports, ["getDataLake", "getDataLakeOutput"], () => require("./getDataLake"));
|
|
161
156
|
exports.getDataLakePipeline = null;
|
|
162
157
|
exports.getDataLakePipelineOutput = null;
|
|
163
158
|
utilities.lazyLoad(exports, ["getDataLakePipeline", "getDataLakePipelineOutput"], () => require("./getDataLakePipeline"));
|
|
@@ -170,9 +165,6 @@ utilities.lazyLoad(exports, ["getDataLakePipelineRuns", "getDataLakePipelineRuns
|
|
|
170
165
|
exports.getDataLakePipelines = null;
|
|
171
166
|
exports.getDataLakePipelinesOutput = null;
|
|
172
167
|
utilities.lazyLoad(exports, ["getDataLakePipelines", "getDataLakePipelinesOutput"], () => require("./getDataLakePipelines"));
|
|
173
|
-
exports.getDataLakes = null;
|
|
174
|
-
exports.getDataLakesOutput = null;
|
|
175
|
-
utilities.lazyLoad(exports, ["getDataLakes", "getDataLakesOutput"], () => require("./getDataLakes"));
|
|
176
168
|
exports.getDatabaseUser = null;
|
|
177
169
|
exports.getDatabaseUserOutput = null;
|
|
178
170
|
utilities.lazyLoad(exports, ["getDatabaseUser", "getDatabaseUserOutput"], () => require("./getDatabaseUser"));
|
|
@@ -266,9 +258,6 @@ utilities.lazyLoad(exports, ["getPrivateLinkEndpoint", "getPrivateLinkEndpointOu
|
|
|
266
258
|
exports.getPrivateLinkEndpointService = null;
|
|
267
259
|
exports.getPrivateLinkEndpointServiceOutput = null;
|
|
268
260
|
utilities.lazyLoad(exports, ["getPrivateLinkEndpointService", "getPrivateLinkEndpointServiceOutput"], () => require("./getPrivateLinkEndpointService"));
|
|
269
|
-
exports.getPrivatelinkEndpointServiceAdl = null;
|
|
270
|
-
exports.getPrivatelinkEndpointServiceAdlOutput = null;
|
|
271
|
-
utilities.lazyLoad(exports, ["getPrivatelinkEndpointServiceAdl", "getPrivatelinkEndpointServiceAdlOutput"], () => require("./getPrivatelinkEndpointServiceAdl"));
|
|
272
261
|
exports.getPrivatelinkEndpointServiceDataFederationOnlineArchive = null;
|
|
273
262
|
exports.getPrivatelinkEndpointServiceDataFederationOnlineArchiveOutput = null;
|
|
274
263
|
utilities.lazyLoad(exports, ["getPrivatelinkEndpointServiceDataFederationOnlineArchive", "getPrivatelinkEndpointServiceDataFederationOnlineArchiveOutput"], () => require("./getPrivatelinkEndpointServiceDataFederationOnlineArchive"));
|
|
@@ -278,9 +267,6 @@ utilities.lazyLoad(exports, ["getPrivatelinkEndpointServiceDataFederationOnlineA
|
|
|
278
267
|
exports.getPrivatelinkEndpointServiceServerless = null;
|
|
279
268
|
exports.getPrivatelinkEndpointServiceServerlessOutput = null;
|
|
280
269
|
utilities.lazyLoad(exports, ["getPrivatelinkEndpointServiceServerless", "getPrivatelinkEndpointServiceServerlessOutput"], () => require("./getPrivatelinkEndpointServiceServerless"));
|
|
281
|
-
exports.getPrivatelinkEndpointsServiceAdl = null;
|
|
282
|
-
exports.getPrivatelinkEndpointsServiceAdlOutput = null;
|
|
283
|
-
utilities.lazyLoad(exports, ["getPrivatelinkEndpointsServiceAdl", "getPrivatelinkEndpointsServiceAdlOutput"], () => require("./getPrivatelinkEndpointsServiceAdl"));
|
|
284
270
|
exports.getPrivatelinkEndpointsServiceServerless = null;
|
|
285
271
|
exports.getPrivatelinkEndpointsServiceServerlessOutput = null;
|
|
286
272
|
utilities.lazyLoad(exports, ["getPrivatelinkEndpointsServiceServerless", "getPrivatelinkEndpointsServiceServerlessOutput"], () => require("./getPrivatelinkEndpointsServiceServerless"));
|
|
@@ -341,6 +327,9 @@ utilities.lazyLoad(exports, ["getThirdPartyIntegration", "getThirdPartyIntegrati
|
|
|
341
327
|
exports.getThirdPartyIntegrations = null;
|
|
342
328
|
exports.getThirdPartyIntegrationsOutput = null;
|
|
343
329
|
utilities.lazyLoad(exports, ["getThirdPartyIntegrations", "getThirdPartyIntegrationsOutput"], () => require("./getThirdPartyIntegrations"));
|
|
330
|
+
exports.getX509AuthenticationDatabaseUser = null;
|
|
331
|
+
exports.getX509AuthenticationDatabaseUserOutput = null;
|
|
332
|
+
utilities.lazyLoad(exports, ["getX509AuthenticationDatabaseUser", "getX509AuthenticationDatabaseUserOutput"], () => require("./getX509AuthenticationDatabaseUser"));
|
|
344
333
|
exports.GlobalClusterConfig = null;
|
|
345
334
|
utilities.lazyLoad(exports, ["GlobalClusterConfig"], () => require("./globalClusterConfig"));
|
|
346
335
|
exports.LdapConfiguration = null;
|
|
@@ -367,8 +356,6 @@ exports.PrivateLinkEndpointService = null;
|
|
|
367
356
|
utilities.lazyLoad(exports, ["PrivateLinkEndpointService"], () => require("./privateLinkEndpointService"));
|
|
368
357
|
exports.PrivatelinkEndpointServerless = null;
|
|
369
358
|
utilities.lazyLoad(exports, ["PrivatelinkEndpointServerless"], () => require("./privatelinkEndpointServerless"));
|
|
370
|
-
exports.PrivatelinkEndpointServiceAdl = null;
|
|
371
|
-
utilities.lazyLoad(exports, ["PrivatelinkEndpointServiceAdl"], () => require("./privatelinkEndpointServiceAdl"));
|
|
372
359
|
exports.PrivatelinkEndpointServiceDataFederationOnlineArchive = null;
|
|
373
360
|
utilities.lazyLoad(exports, ["PrivatelinkEndpointServiceDataFederationOnlineArchive"], () => require("./privatelinkEndpointServiceDataFederationOnlineArchive"));
|
|
374
361
|
exports.PrivatelinkEndpointServiceServerless = null;
|
|
@@ -440,8 +427,6 @@ const _module = {
|
|
|
440
427
|
return new exports.CustomDbRole(name, undefined, { urn });
|
|
441
428
|
case "mongodbatlas:index/customDnsConfigurationClusterAws:CustomDnsConfigurationClusterAws":
|
|
442
429
|
return new exports.CustomDnsConfigurationClusterAws(name, undefined, { urn });
|
|
443
|
-
case "mongodbatlas:index/dataLake:DataLake":
|
|
444
|
-
return new exports.DataLake(name, undefined, { urn });
|
|
445
430
|
case "mongodbatlas:index/dataLakePipeline:DataLakePipeline":
|
|
446
431
|
return new exports.DataLakePipeline(name, undefined, { urn });
|
|
447
432
|
case "mongodbatlas:index/databaseUser:DatabaseUser":
|
|
@@ -486,8 +471,6 @@ const _module = {
|
|
|
486
471
|
return new exports.PrivateLinkEndpointService(name, undefined, { urn });
|
|
487
472
|
case "mongodbatlas:index/privatelinkEndpointServerless:PrivatelinkEndpointServerless":
|
|
488
473
|
return new exports.PrivatelinkEndpointServerless(name, undefined, { urn });
|
|
489
|
-
case "mongodbatlas:index/privatelinkEndpointServiceAdl:PrivatelinkEndpointServiceAdl":
|
|
490
|
-
return new exports.PrivatelinkEndpointServiceAdl(name, undefined, { urn });
|
|
491
474
|
case "mongodbatlas:index/privatelinkEndpointServiceDataFederationOnlineArchive:PrivatelinkEndpointServiceDataFederationOnlineArchive":
|
|
492
475
|
return new exports.PrivatelinkEndpointServiceDataFederationOnlineArchive(name, undefined, { urn });
|
|
493
476
|
case "mongodbatlas:index/privatelinkEndpointServiceServerless:PrivatelinkEndpointServiceServerless":
|
|
@@ -535,7 +518,6 @@ pulumi.runtime.registerResourceModule("mongodbatlas", "index/cluster", _module);
|
|
|
535
518
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/clusterOutageSimulation", _module);
|
|
536
519
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/customDbRole", _module);
|
|
537
520
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/customDnsConfigurationClusterAws", _module);
|
|
538
|
-
pulumi.runtime.registerResourceModule("mongodbatlas", "index/dataLake", _module);
|
|
539
521
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/dataLakePipeline", _module);
|
|
540
522
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/databaseUser", _module);
|
|
541
523
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/encryptionAtRest", _module);
|
|
@@ -558,7 +540,6 @@ pulumi.runtime.registerResourceModule("mongodbatlas", "index/privateEndpointRegi
|
|
|
558
540
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/privateLinkEndpoint", _module);
|
|
559
541
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/privateLinkEndpointService", _module);
|
|
560
542
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/privatelinkEndpointServerless", _module);
|
|
561
|
-
pulumi.runtime.registerResourceModule("mongodbatlas", "index/privatelinkEndpointServiceAdl", _module);
|
|
562
543
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/privatelinkEndpointServiceDataFederationOnlineArchive", _module);
|
|
563
544
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/privatelinkEndpointServiceServerless", _module);
|
|
564
545
|
pulumi.runtime.registerResourceModule("mongodbatlas", "index/project", _module);
|