@pulumi/mongodbatlas 3.14.0 → 3.14.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.
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* `mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchives` describes Private Endpoint Service resources for Data Federation and Online Archive.
|
|
5
|
+
*
|
|
6
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
7
|
+
*
|
|
8
|
+
* ## Example Usage
|
|
9
|
+
*
|
|
10
|
+
* ```typescript
|
|
11
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
12
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
13
|
+
*
|
|
14
|
+
* const atlas_project = new mongodbatlas.Project("atlas-project", {orgId: _var.atlas_org_id});
|
|
15
|
+
* const test = new mongodbatlas.PrivatelinkEndpointServiceDataFederationOnlineArchive("test", {
|
|
16
|
+
* projectId: atlas_project.id,
|
|
17
|
+
* endpointId: "<PRIVATE-ENDPOINT-SERVICE-ID>",
|
|
18
|
+
* providerName: "AWS",
|
|
19
|
+
* comment: "Test",
|
|
20
|
+
* });
|
|
21
|
+
* const testDataSource = mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput({
|
|
22
|
+
* projectId: atlas_project.id,
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*/
|
|
3
26
|
export declare function getPrivatelinkEndpointServiceDataFederationOnlineArchives(args: GetPrivatelinkEndpointServiceDataFederationOnlineArchivesArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivatelinkEndpointServiceDataFederationOnlineArchivesResult>;
|
|
4
27
|
/**
|
|
5
28
|
* A collection of arguments for invoking getPrivatelinkEndpointServiceDataFederationOnlineArchives.
|
|
@@ -24,6 +47,29 @@ export interface GetPrivatelinkEndpointServiceDataFederationOnlineArchivesResult
|
|
|
24
47
|
*/
|
|
25
48
|
readonly results: outputs.GetPrivatelinkEndpointServiceDataFederationOnlineArchivesResult[];
|
|
26
49
|
}
|
|
50
|
+
/**
|
|
51
|
+
* `mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchives` describes Private Endpoint Service resources for Data Federation and Online Archive.
|
|
52
|
+
*
|
|
53
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
60
|
+
*
|
|
61
|
+
* const atlas_project = new mongodbatlas.Project("atlas-project", {orgId: _var.atlas_org_id});
|
|
62
|
+
* const test = new mongodbatlas.PrivatelinkEndpointServiceDataFederationOnlineArchive("test", {
|
|
63
|
+
* projectId: atlas_project.id,
|
|
64
|
+
* endpointId: "<PRIVATE-ENDPOINT-SERVICE-ID>",
|
|
65
|
+
* providerName: "AWS",
|
|
66
|
+
* comment: "Test",
|
|
67
|
+
* });
|
|
68
|
+
* const testDataSource = mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput({
|
|
69
|
+
* projectId: atlas_project.id,
|
|
70
|
+
* });
|
|
71
|
+
* ```
|
|
72
|
+
*/
|
|
27
73
|
export declare function getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput(args: GetPrivatelinkEndpointServiceDataFederationOnlineArchivesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPrivatelinkEndpointServiceDataFederationOnlineArchivesResult>;
|
|
28
74
|
/**
|
|
29
75
|
* A collection of arguments for invoking getPrivatelinkEndpointServiceDataFederationOnlineArchives.
|
|
@@ -5,6 +5,29 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput = exports.getPrivatelinkEndpointServiceDataFederationOnlineArchives = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* `mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchives` describes Private Endpoint Service resources for Data Federation and Online Archive.
|
|
10
|
+
*
|
|
11
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
18
|
+
*
|
|
19
|
+
* const atlas_project = new mongodbatlas.Project("atlas-project", {orgId: _var.atlas_org_id});
|
|
20
|
+
* const test = new mongodbatlas.PrivatelinkEndpointServiceDataFederationOnlineArchive("test", {
|
|
21
|
+
* projectId: atlas_project.id,
|
|
22
|
+
* endpointId: "<PRIVATE-ENDPOINT-SERVICE-ID>",
|
|
23
|
+
* providerName: "AWS",
|
|
24
|
+
* comment: "Test",
|
|
25
|
+
* });
|
|
26
|
+
* const testDataSource = mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput({
|
|
27
|
+
* projectId: atlas_project.id,
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*/
|
|
8
31
|
function getPrivatelinkEndpointServiceDataFederationOnlineArchives(args, opts) {
|
|
9
32
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
10
33
|
return pulumi.runtime.invoke("mongodbatlas:index/getPrivatelinkEndpointServiceDataFederationOnlineArchives:getPrivatelinkEndpointServiceDataFederationOnlineArchives", {
|
|
@@ -12,6 +35,29 @@ function getPrivatelinkEndpointServiceDataFederationOnlineArchives(args, opts) {
|
|
|
12
35
|
}, opts);
|
|
13
36
|
}
|
|
14
37
|
exports.getPrivatelinkEndpointServiceDataFederationOnlineArchives = getPrivatelinkEndpointServiceDataFederationOnlineArchives;
|
|
38
|
+
/**
|
|
39
|
+
* `mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchives` describes Private Endpoint Service resources for Data Federation and Online Archive.
|
|
40
|
+
*
|
|
41
|
+
* > **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
42
|
+
*
|
|
43
|
+
* ## Example Usage
|
|
44
|
+
*
|
|
45
|
+
* ```typescript
|
|
46
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
47
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
48
|
+
*
|
|
49
|
+
* const atlas_project = new mongodbatlas.Project("atlas-project", {orgId: _var.atlas_org_id});
|
|
50
|
+
* const test = new mongodbatlas.PrivatelinkEndpointServiceDataFederationOnlineArchive("test", {
|
|
51
|
+
* projectId: atlas_project.id,
|
|
52
|
+
* endpointId: "<PRIVATE-ENDPOINT-SERVICE-ID>",
|
|
53
|
+
* providerName: "AWS",
|
|
54
|
+
* comment: "Test",
|
|
55
|
+
* });
|
|
56
|
+
* const testDataSource = mongodbatlas.getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput({
|
|
57
|
+
* projectId: atlas_project.id,
|
|
58
|
+
* });
|
|
59
|
+
* ```
|
|
60
|
+
*/
|
|
15
61
|
function getPrivatelinkEndpointServiceDataFederationOnlineArchivesOutput(args, opts) {
|
|
16
62
|
return pulumi.output(args).apply((a) => getPrivatelinkEndpointServiceDataFederationOnlineArchives(a, opts));
|
|
17
63
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPrivatelinkEndpointServiceDataFederationOnlineArchives.js","sourceRoot":"","sources":["../getPrivatelinkEndpointServiceDataFederationOnlineArchives.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,yDAAyD,CAAC,IAAmE,EAAE,IAA2B;IAEtK,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wIAAwI,EAAE;QACnK,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8HAMC;AA0BD,SAAgB,+DAA+D,CAAC,IAAyE,EAAE,IAA2B;IAClL,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,yDAAyD,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpH,CAAC;AAFD,0IAEC"}
|
|
1
|
+
{"version":3,"file":"getPrivatelinkEndpointServiceDataFederationOnlineArchives.js","sourceRoot":"","sources":["../getPrivatelinkEndpointServiceDataFederationOnlineArchives.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,yDAAyD,CAAC,IAAmE,EAAE,IAA2B;IAEtK,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wIAAwI,EAAE;QACnK,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8HAMC;AA0BD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,+DAA+D,CAAC,IAAyE,EAAE,IAA2B;IAClL,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,yDAAyD,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACpH,CAAC;AAFD,0IAEC"}
|