@pulumi/mongodbatlas 3.37.0-alpha.1762842753 → 3.37.0-alpha.1763072353
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/dataLakePipeline.d.ts +54 -0
- package/dataLakePipeline.js +54 -0
- package/dataLakePipeline.js.map +1 -1
- package/eventTrigger.d.ts +2 -2
- package/eventTrigger.js +2 -2
- package/flexCluster.d.ts +26 -0
- package/flexCluster.js +26 -0
- package/flexCluster.js.map +1 -1
- package/get509AuthenticationDatabaseUser.d.ts +58 -2
- package/get509AuthenticationDatabaseUser.js +58 -2
- package/get509AuthenticationDatabaseUser.js.map +1 -1
- package/getAccessListApiKey.d.ts +30 -0
- package/getAccessListApiKey.js +30 -0
- package/getAccessListApiKey.js.map +1 -1
- package/getAccessListApiKeys.d.ts +30 -0
- package/getAccessListApiKeys.js +30 -0
- package/getAccessListApiKeys.js.map +1 -1
- package/getCloudBackupSchedule.d.ts +108 -0
- package/getCloudBackupSchedule.js +108 -0
- package/getCloudBackupSchedule.js.map +1 -1
- package/getCloudBackupSnapshotRestoreJob.d.ts +54 -0
- package/getCloudBackupSnapshotRestoreJob.js +54 -0
- package/getCloudBackupSnapshotRestoreJob.js.map +1 -1
- package/getCustomDbRoles.d.ts +50 -0
- package/getCustomDbRoles.js +50 -0
- package/getCustomDbRoles.js.map +1 -1
- package/getDataLakePipeline.d.ts +116 -0
- package/getDataLakePipeline.js +116 -0
- package/getDataLakePipeline.js.map +1 -1
- package/getDataLakePipelineRuns.d.ts +74 -0
- package/getDataLakePipelineRuns.js +74 -0
- package/getDataLakePipelineRuns.js.map +1 -1
- package/getFederatedSettingsOrgRoleMappings.d.ts +68 -0
- package/getFederatedSettingsOrgRoleMappings.js +68 -0
- package/getFederatedSettingsOrgRoleMappings.js.map +1 -1
- package/getFlexCluster.d.ts +50 -0
- package/getFlexCluster.js +50 -0
- package/getFlexCluster.js.map +1 -1
- package/getFlexClusters.d.ts +50 -0
- package/getFlexClusters.js +50 -0
- package/getFlexClusters.js.map +1 -1
- package/getSearchDeployment.d.ts +78 -0
- package/getSearchDeployment.js +78 -0
- package/getSearchDeployment.js.map +1 -1
- package/getStreamPrivatelinkEndpoint.d.ts +140 -0
- package/getStreamPrivatelinkEndpoint.js +140 -0
- package/getStreamPrivatelinkEndpoint.js.map +1 -1
- package/getStreamPrivatelinkEndpoints.d.ts +140 -0
- package/getStreamPrivatelinkEndpoints.js +140 -0
- package/getStreamPrivatelinkEndpoints.js.map +1 -1
- package/getStreamProcessor.d.ts +264 -0
- package/getStreamProcessor.js +264 -0
- package/getStreamProcessor.js.map +1 -1
- package/getStreamProcessors.d.ts +264 -0
- package/getStreamProcessors.js +264 -0
- package/getStreamProcessors.js.map +1 -1
- package/getX509AuthenticationDatabaseUser.d.ts +58 -2
- package/getX509AuthenticationDatabaseUser.js +58 -2
- package/getX509AuthenticationDatabaseUser.js.map +1 -1
- package/package.json +2 -2
- package/searchDeployment.d.ts +40 -0
- package/searchDeployment.js +40 -0
- package/searchDeployment.js.map +1 -1
- package/searchIndex.d.ts +39 -39
- package/searchIndex.js +39 -39
- package/streamConnection.d.ts +40 -0
- package/streamConnection.js +40 -0
- package/streamConnection.js.map +1 -1
- package/streamInstance.d.ts +14 -0
- package/streamInstance.js +14 -0
- package/streamInstance.js.map +1 -1
- package/streamPrivatelinkEndpoint.d.ts +70 -0
- package/streamPrivatelinkEndpoint.js +70 -0
- package/streamPrivatelinkEndpoint.js.map +1 -1
- package/streamProcessor.d.ts +133 -0
- package/streamProcessor.js +133 -0
- package/streamProcessor.js.map +1 -1
- package/x509authenticationDatabaseUser.d.ts +63 -0
- package/x509authenticationDatabaseUser.js +63 -0
- package/x509authenticationDatabaseUser.js.map +1 -1
package/getFlexClusters.d.ts
CHANGED
|
@@ -8,6 +8,31 @@ import * as outputs from "./types/output";
|
|
|
8
8
|
* **RECOMMENDATION:** We recommend using the `mongodbatlas.getAdvancedClusters` data source instead of the `mongodbatlas.getFlexClusters` data source to retrieve Flex clusters. The `mongodbatlas.getAdvancedClusters` data source not only supports Flex clusters, but also supports free and dedicated clusters, providing easier migration between different cluster types. For more information, see the Advanced Clusters data source.
|
|
9
9
|
*
|
|
10
10
|
* ## Example Usage
|
|
11
|
+
*
|
|
12
|
+
* ### S
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
16
|
+
*
|
|
17
|
+
* const example_clusterFlexCluster = new mongodbatlas.FlexCluster("example-cluster", {
|
|
18
|
+
* projectId: projectId,
|
|
19
|
+
* name: clusterName,
|
|
20
|
+
* providerSettings: {
|
|
21
|
+
* backingProviderName: "AWS",
|
|
22
|
+
* regionName: "US_EAST_1",
|
|
23
|
+
* },
|
|
24
|
+
* terminationProtectionEnabled: true,
|
|
25
|
+
* });
|
|
26
|
+
* const example_cluster = example_clusterFlexCluster.name.apply(name => mongodbatlas.getFlexClusterOutput({
|
|
27
|
+
* projectId: projectId,
|
|
28
|
+
* name: name,
|
|
29
|
+
* }));
|
|
30
|
+
* const example_clusters = mongodbatlas.getFlexClusters({
|
|
31
|
+
* projectId: projectId,
|
|
32
|
+
* });
|
|
33
|
+
* export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
|
|
34
|
+
* export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
|
|
35
|
+
* ```
|
|
11
36
|
*/
|
|
12
37
|
export declare function getFlexClusters(args: GetFlexClustersArgs, opts?: pulumi.InvokeOptions): Promise<GetFlexClustersResult>;
|
|
13
38
|
/**
|
|
@@ -44,6 +69,31 @@ export interface GetFlexClustersResult {
|
|
|
44
69
|
* **RECOMMENDATION:** We recommend using the `mongodbatlas.getAdvancedClusters` data source instead of the `mongodbatlas.getFlexClusters` data source to retrieve Flex clusters. The `mongodbatlas.getAdvancedClusters` data source not only supports Flex clusters, but also supports free and dedicated clusters, providing easier migration between different cluster types. For more information, see the Advanced Clusters data source.
|
|
45
70
|
*
|
|
46
71
|
* ## Example Usage
|
|
72
|
+
*
|
|
73
|
+
* ### S
|
|
74
|
+
* ```typescript
|
|
75
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
76
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
77
|
+
*
|
|
78
|
+
* const example_clusterFlexCluster = new mongodbatlas.FlexCluster("example-cluster", {
|
|
79
|
+
* projectId: projectId,
|
|
80
|
+
* name: clusterName,
|
|
81
|
+
* providerSettings: {
|
|
82
|
+
* backingProviderName: "AWS",
|
|
83
|
+
* regionName: "US_EAST_1",
|
|
84
|
+
* },
|
|
85
|
+
* terminationProtectionEnabled: true,
|
|
86
|
+
* });
|
|
87
|
+
* const example_cluster = example_clusterFlexCluster.name.apply(name => mongodbatlas.getFlexClusterOutput({
|
|
88
|
+
* projectId: projectId,
|
|
89
|
+
* name: name,
|
|
90
|
+
* }));
|
|
91
|
+
* const example_clusters = mongodbatlas.getFlexClusters({
|
|
92
|
+
* projectId: projectId,
|
|
93
|
+
* });
|
|
94
|
+
* export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
|
|
95
|
+
* export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
|
|
96
|
+
* ```
|
|
47
97
|
*/
|
|
48
98
|
export declare function getFlexClustersOutput(args: GetFlexClustersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFlexClustersResult>;
|
|
49
99
|
/**
|
package/getFlexClusters.js
CHANGED
|
@@ -13,6 +13,31 @@ const utilities = require("./utilities");
|
|
|
13
13
|
* **RECOMMENDATION:** We recommend using the `mongodbatlas.getAdvancedClusters` data source instead of the `mongodbatlas.getFlexClusters` data source to retrieve Flex clusters. The `mongodbatlas.getAdvancedClusters` data source not only supports Flex clusters, but also supports free and dedicated clusters, providing easier migration between different cluster types. For more information, see the Advanced Clusters data source.
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ### S
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
21
|
+
*
|
|
22
|
+
* const example_clusterFlexCluster = new mongodbatlas.FlexCluster("example-cluster", {
|
|
23
|
+
* projectId: projectId,
|
|
24
|
+
* name: clusterName,
|
|
25
|
+
* providerSettings: {
|
|
26
|
+
* backingProviderName: "AWS",
|
|
27
|
+
* regionName: "US_EAST_1",
|
|
28
|
+
* },
|
|
29
|
+
* terminationProtectionEnabled: true,
|
|
30
|
+
* });
|
|
31
|
+
* const example_cluster = example_clusterFlexCluster.name.apply(name => mongodbatlas.getFlexClusterOutput({
|
|
32
|
+
* projectId: projectId,
|
|
33
|
+
* name: name,
|
|
34
|
+
* }));
|
|
35
|
+
* const example_clusters = mongodbatlas.getFlexClusters({
|
|
36
|
+
* projectId: projectId,
|
|
37
|
+
* });
|
|
38
|
+
* export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
|
|
39
|
+
* export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
|
|
40
|
+
* ```
|
|
16
41
|
*/
|
|
17
42
|
function getFlexClusters(args, opts) {
|
|
18
43
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -29,6 +54,31 @@ exports.getFlexClusters = getFlexClusters;
|
|
|
29
54
|
* **RECOMMENDATION:** We recommend using the `mongodbatlas.getAdvancedClusters` data source instead of the `mongodbatlas.getFlexClusters` data source to retrieve Flex clusters. The `mongodbatlas.getAdvancedClusters` data source not only supports Flex clusters, but also supports free and dedicated clusters, providing easier migration between different cluster types. For more information, see the Advanced Clusters data source.
|
|
30
55
|
*
|
|
31
56
|
* ## Example Usage
|
|
57
|
+
*
|
|
58
|
+
* ### S
|
|
59
|
+
* ```typescript
|
|
60
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
61
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
62
|
+
*
|
|
63
|
+
* const example_clusterFlexCluster = new mongodbatlas.FlexCluster("example-cluster", {
|
|
64
|
+
* projectId: projectId,
|
|
65
|
+
* name: clusterName,
|
|
66
|
+
* providerSettings: {
|
|
67
|
+
* backingProviderName: "AWS",
|
|
68
|
+
* regionName: "US_EAST_1",
|
|
69
|
+
* },
|
|
70
|
+
* terminationProtectionEnabled: true,
|
|
71
|
+
* });
|
|
72
|
+
* const example_cluster = example_clusterFlexCluster.name.apply(name => mongodbatlas.getFlexClusterOutput({
|
|
73
|
+
* projectId: projectId,
|
|
74
|
+
* name: name,
|
|
75
|
+
* }));
|
|
76
|
+
* const example_clusters = mongodbatlas.getFlexClusters({
|
|
77
|
+
* projectId: projectId,
|
|
78
|
+
* });
|
|
79
|
+
* export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
|
|
80
|
+
* export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
|
|
81
|
+
* ```
|
|
32
82
|
*/
|
|
33
83
|
function getFlexClustersOutput(args, opts) {
|
|
34
84
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
package/getFlexClusters.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFlexClusters.js","sourceRoot":"","sources":["../getFlexClusters.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getFlexClusters.js","sourceRoot":"","sources":["../getFlexClusters.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0CAKC;AA6BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oDAAoD,EAAE;QACrF,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sDAKC"}
|
package/getSearchDeployment.d.ts
CHANGED
|
@@ -8,6 +8,45 @@ import * as outputs from "./types/output";
|
|
|
8
8
|
* ## Example Usage
|
|
9
9
|
*
|
|
10
10
|
* ### S
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
14
|
+
*
|
|
15
|
+
* const exampleProject = new mongodbatlas.Project("example", {
|
|
16
|
+
* name: "project-name",
|
|
17
|
+
* orgId: orgId,
|
|
18
|
+
* });
|
|
19
|
+
* const exampleAdvancedCluster = new mongodbatlas.AdvancedCluster("example", {
|
|
20
|
+
* projectId: exampleProject.id,
|
|
21
|
+
* name: "ClusterExample",
|
|
22
|
+
* clusterType: "REPLICASET",
|
|
23
|
+
* replicationSpecs: [{
|
|
24
|
+
* regionConfigs: [{
|
|
25
|
+
* electableSpecs: {
|
|
26
|
+
* instanceSize: "M10",
|
|
27
|
+
* nodeCount: 3,
|
|
28
|
+
* },
|
|
29
|
+
* providerName: "AWS",
|
|
30
|
+
* priority: 7,
|
|
31
|
+
* regionName: "US_EAST_1",
|
|
32
|
+
* }],
|
|
33
|
+
* }],
|
|
34
|
+
* });
|
|
35
|
+
* const exampleSearchDeployment = new mongodbatlas.SearchDeployment("example", {
|
|
36
|
+
* projectId: exampleProject.id,
|
|
37
|
+
* clusterName: exampleAdvancedCluster.name,
|
|
38
|
+
* specs: [{
|
|
39
|
+
* instanceSize: "S20_HIGHCPU_NVME",
|
|
40
|
+
* nodeCount: 2,
|
|
41
|
+
* }],
|
|
42
|
+
* });
|
|
43
|
+
* const example = mongodbatlas.getSearchDeploymentOutput({
|
|
44
|
+
* projectId: exampleSearchDeployment.projectId,
|
|
45
|
+
* clusterName: exampleSearchDeployment.clusterName,
|
|
46
|
+
* });
|
|
47
|
+
* export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
|
|
48
|
+
* export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
|
|
49
|
+
* ```
|
|
11
50
|
*/
|
|
12
51
|
export declare function getSearchDeployment(args: GetSearchDeploymentArgs, opts?: pulumi.InvokeOptions): Promise<GetSearchDeploymentResult>;
|
|
13
52
|
/**
|
|
@@ -60,6 +99,45 @@ export interface GetSearchDeploymentResult {
|
|
|
60
99
|
* ## Example Usage
|
|
61
100
|
*
|
|
62
101
|
* ### S
|
|
102
|
+
* ```typescript
|
|
103
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
104
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
105
|
+
*
|
|
106
|
+
* const exampleProject = new mongodbatlas.Project("example", {
|
|
107
|
+
* name: "project-name",
|
|
108
|
+
* orgId: orgId,
|
|
109
|
+
* });
|
|
110
|
+
* const exampleAdvancedCluster = new mongodbatlas.AdvancedCluster("example", {
|
|
111
|
+
* projectId: exampleProject.id,
|
|
112
|
+
* name: "ClusterExample",
|
|
113
|
+
* clusterType: "REPLICASET",
|
|
114
|
+
* replicationSpecs: [{
|
|
115
|
+
* regionConfigs: [{
|
|
116
|
+
* electableSpecs: {
|
|
117
|
+
* instanceSize: "M10",
|
|
118
|
+
* nodeCount: 3,
|
|
119
|
+
* },
|
|
120
|
+
* providerName: "AWS",
|
|
121
|
+
* priority: 7,
|
|
122
|
+
* regionName: "US_EAST_1",
|
|
123
|
+
* }],
|
|
124
|
+
* }],
|
|
125
|
+
* });
|
|
126
|
+
* const exampleSearchDeployment = new mongodbatlas.SearchDeployment("example", {
|
|
127
|
+
* projectId: exampleProject.id,
|
|
128
|
+
* clusterName: exampleAdvancedCluster.name,
|
|
129
|
+
* specs: [{
|
|
130
|
+
* instanceSize: "S20_HIGHCPU_NVME",
|
|
131
|
+
* nodeCount: 2,
|
|
132
|
+
* }],
|
|
133
|
+
* });
|
|
134
|
+
* const example = mongodbatlas.getSearchDeploymentOutput({
|
|
135
|
+
* projectId: exampleSearchDeployment.projectId,
|
|
136
|
+
* clusterName: exampleSearchDeployment.clusterName,
|
|
137
|
+
* });
|
|
138
|
+
* export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
|
|
139
|
+
* export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
|
|
140
|
+
* ```
|
|
63
141
|
*/
|
|
64
142
|
export declare function getSearchDeploymentOutput(args: GetSearchDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSearchDeploymentResult>;
|
|
65
143
|
/**
|
package/getSearchDeployment.js
CHANGED
|
@@ -13,6 +13,45 @@ const utilities = require("./utilities");
|
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
15
15
|
* ### S
|
|
16
|
+
* ```typescript
|
|
17
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
18
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
19
|
+
*
|
|
20
|
+
* const exampleProject = new mongodbatlas.Project("example", {
|
|
21
|
+
* name: "project-name",
|
|
22
|
+
* orgId: orgId,
|
|
23
|
+
* });
|
|
24
|
+
* const exampleAdvancedCluster = new mongodbatlas.AdvancedCluster("example", {
|
|
25
|
+
* projectId: exampleProject.id,
|
|
26
|
+
* name: "ClusterExample",
|
|
27
|
+
* clusterType: "REPLICASET",
|
|
28
|
+
* replicationSpecs: [{
|
|
29
|
+
* regionConfigs: [{
|
|
30
|
+
* electableSpecs: {
|
|
31
|
+
* instanceSize: "M10",
|
|
32
|
+
* nodeCount: 3,
|
|
33
|
+
* },
|
|
34
|
+
* providerName: "AWS",
|
|
35
|
+
* priority: 7,
|
|
36
|
+
* regionName: "US_EAST_1",
|
|
37
|
+
* }],
|
|
38
|
+
* }],
|
|
39
|
+
* });
|
|
40
|
+
* const exampleSearchDeployment = new mongodbatlas.SearchDeployment("example", {
|
|
41
|
+
* projectId: exampleProject.id,
|
|
42
|
+
* clusterName: exampleAdvancedCluster.name,
|
|
43
|
+
* specs: [{
|
|
44
|
+
* instanceSize: "S20_HIGHCPU_NVME",
|
|
45
|
+
* nodeCount: 2,
|
|
46
|
+
* }],
|
|
47
|
+
* });
|
|
48
|
+
* const example = mongodbatlas.getSearchDeploymentOutput({
|
|
49
|
+
* projectId: exampleSearchDeployment.projectId,
|
|
50
|
+
* clusterName: exampleSearchDeployment.clusterName,
|
|
51
|
+
* });
|
|
52
|
+
* export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
|
|
53
|
+
* export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
|
|
54
|
+
* ```
|
|
16
55
|
*/
|
|
17
56
|
function getSearchDeployment(args, opts) {
|
|
18
57
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -30,6 +69,45 @@ exports.getSearchDeployment = getSearchDeployment;
|
|
|
30
69
|
* ## Example Usage
|
|
31
70
|
*
|
|
32
71
|
* ### S
|
|
72
|
+
* ```typescript
|
|
73
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
74
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
75
|
+
*
|
|
76
|
+
* const exampleProject = new mongodbatlas.Project("example", {
|
|
77
|
+
* name: "project-name",
|
|
78
|
+
* orgId: orgId,
|
|
79
|
+
* });
|
|
80
|
+
* const exampleAdvancedCluster = new mongodbatlas.AdvancedCluster("example", {
|
|
81
|
+
* projectId: exampleProject.id,
|
|
82
|
+
* name: "ClusterExample",
|
|
83
|
+
* clusterType: "REPLICASET",
|
|
84
|
+
* replicationSpecs: [{
|
|
85
|
+
* regionConfigs: [{
|
|
86
|
+
* electableSpecs: {
|
|
87
|
+
* instanceSize: "M10",
|
|
88
|
+
* nodeCount: 3,
|
|
89
|
+
* },
|
|
90
|
+
* providerName: "AWS",
|
|
91
|
+
* priority: 7,
|
|
92
|
+
* regionName: "US_EAST_1",
|
|
93
|
+
* }],
|
|
94
|
+
* }],
|
|
95
|
+
* });
|
|
96
|
+
* const exampleSearchDeployment = new mongodbatlas.SearchDeployment("example", {
|
|
97
|
+
* projectId: exampleProject.id,
|
|
98
|
+
* clusterName: exampleAdvancedCluster.name,
|
|
99
|
+
* specs: [{
|
|
100
|
+
* instanceSize: "S20_HIGHCPU_NVME",
|
|
101
|
+
* nodeCount: 2,
|
|
102
|
+
* }],
|
|
103
|
+
* });
|
|
104
|
+
* const example = mongodbatlas.getSearchDeploymentOutput({
|
|
105
|
+
* projectId: exampleSearchDeployment.projectId,
|
|
106
|
+
* clusterName: exampleSearchDeployment.clusterName,
|
|
107
|
+
* });
|
|
108
|
+
* export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
|
|
109
|
+
* export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
|
|
110
|
+
* ```
|
|
33
111
|
*/
|
|
34
112
|
function getSearchDeploymentOutput(args, opts) {
|
|
35
113
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSearchDeployment.js","sourceRoot":"","sources":["../getSearchDeployment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getSearchDeployment.js","sourceRoot":"","sources":["../getSearchDeployment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC;AA6CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAAiC;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8DAMC"}
|
|
@@ -8,6 +8,76 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
*
|
|
9
9
|
* ### S
|
|
10
10
|
*
|
|
11
|
+
* ### AWS Confluent Privatelink
|
|
12
|
+
* ```typescript
|
|
13
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
14
|
+
* import * as confluent from "@pulumi/confluent";
|
|
15
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
16
|
+
* import * as std from "@pulumi/std";
|
|
17
|
+
*
|
|
18
|
+
* const staging = new confluent.index.Environment("staging", {displayName: "Staging"});
|
|
19
|
+
* const privateLink = new confluent.index.Network("private_link", {
|
|
20
|
+
* displayName: "terraform-test-private-link-network-manual",
|
|
21
|
+
* cloud: "AWS",
|
|
22
|
+
* region: awsRegion,
|
|
23
|
+
* connectionTypes: ["PRIVATELINK"],
|
|
24
|
+
* zones: std.index.keys({
|
|
25
|
+
* input: subnetsToPrivatelink,
|
|
26
|
+
* }).result,
|
|
27
|
+
* environment: [{
|
|
28
|
+
* id: staging.id,
|
|
29
|
+
* }],
|
|
30
|
+
* dnsConfig: [{
|
|
31
|
+
* resolution: "PRIVATE",
|
|
32
|
+
* }],
|
|
33
|
+
* });
|
|
34
|
+
* const aws = new confluent.index.PrivateLinkAccess("aws", {
|
|
35
|
+
* displayName: "example-private-link-access",
|
|
36
|
+
* aws: [{
|
|
37
|
+
* account: awsAccountId,
|
|
38
|
+
* }],
|
|
39
|
+
* environment: [{
|
|
40
|
+
* id: staging.id,
|
|
41
|
+
* }],
|
|
42
|
+
* network: [{
|
|
43
|
+
* id: privateLink.id,
|
|
44
|
+
* }],
|
|
45
|
+
* });
|
|
46
|
+
* const dedicated = new confluent.index.KafkaCluster("dedicated", {
|
|
47
|
+
* displayName: "example-dedicated-cluster",
|
|
48
|
+
* availability: "MULTI_ZONE",
|
|
49
|
+
* cloud: privateLink.cloud,
|
|
50
|
+
* region: privateLink.region,
|
|
51
|
+
* dedicated: [{
|
|
52
|
+
* cku: 2,
|
|
53
|
+
* }],
|
|
54
|
+
* environment: [{
|
|
55
|
+
* id: staging.id,
|
|
56
|
+
* }],
|
|
57
|
+
* network: [{
|
|
58
|
+
* id: privateLink.id,
|
|
59
|
+
* }],
|
|
60
|
+
* });
|
|
61
|
+
* const test = new mongodbatlas.StreamPrivatelinkEndpoint("test", {
|
|
62
|
+
* projectId: projectId,
|
|
63
|
+
* dnsDomain: privateLink.dnsDomain,
|
|
64
|
+
* providerName: "AWS",
|
|
65
|
+
* region: awsRegion,
|
|
66
|
+
* vendor: "CONFLUENT",
|
|
67
|
+
* serviceEndpointId: privateLink.aws[0].privateLinkEndpointService,
|
|
68
|
+
* dnsSubDomains: privateLink.zonalSubdomains,
|
|
69
|
+
* });
|
|
70
|
+
* const singularDatasource = test.id.apply(id => mongodbatlas.getStreamPrivatelinkEndpointOutput({
|
|
71
|
+
* projectId: projectId,
|
|
72
|
+
* id: id,
|
|
73
|
+
* }));
|
|
74
|
+
* const pluralDatasource = mongodbatlas.getStreamPrivatelinkEndpoints({
|
|
75
|
+
* projectId: projectId,
|
|
76
|
+
* });
|
|
77
|
+
* export const interfaceEndpointId = singularDatasource.apply(singularDatasource => singularDatasource.interfaceEndpointId);
|
|
78
|
+
* export const interfaceEndpointIds = pluralDatasource.then(pluralDatasource => pluralDatasource.results.map(__item => __item.interfaceEndpointId));
|
|
79
|
+
* ```
|
|
80
|
+
*
|
|
11
81
|
* ### AWS S3 Privatelink
|
|
12
82
|
* ```typescript
|
|
13
83
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -80,6 +150,76 @@ export interface GetStreamPrivatelinkEndpointResult {
|
|
|
80
150
|
*
|
|
81
151
|
* ### S
|
|
82
152
|
*
|
|
153
|
+
* ### AWS Confluent Privatelink
|
|
154
|
+
* ```typescript
|
|
155
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
156
|
+
* import * as confluent from "@pulumi/confluent";
|
|
157
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
158
|
+
* import * as std from "@pulumi/std";
|
|
159
|
+
*
|
|
160
|
+
* const staging = new confluent.index.Environment("staging", {displayName: "Staging"});
|
|
161
|
+
* const privateLink = new confluent.index.Network("private_link", {
|
|
162
|
+
* displayName: "terraform-test-private-link-network-manual",
|
|
163
|
+
* cloud: "AWS",
|
|
164
|
+
* region: awsRegion,
|
|
165
|
+
* connectionTypes: ["PRIVATELINK"],
|
|
166
|
+
* zones: std.index.keys({
|
|
167
|
+
* input: subnetsToPrivatelink,
|
|
168
|
+
* }).result,
|
|
169
|
+
* environment: [{
|
|
170
|
+
* id: staging.id,
|
|
171
|
+
* }],
|
|
172
|
+
* dnsConfig: [{
|
|
173
|
+
* resolution: "PRIVATE",
|
|
174
|
+
* }],
|
|
175
|
+
* });
|
|
176
|
+
* const aws = new confluent.index.PrivateLinkAccess("aws", {
|
|
177
|
+
* displayName: "example-private-link-access",
|
|
178
|
+
* aws: [{
|
|
179
|
+
* account: awsAccountId,
|
|
180
|
+
* }],
|
|
181
|
+
* environment: [{
|
|
182
|
+
* id: staging.id,
|
|
183
|
+
* }],
|
|
184
|
+
* network: [{
|
|
185
|
+
* id: privateLink.id,
|
|
186
|
+
* }],
|
|
187
|
+
* });
|
|
188
|
+
* const dedicated = new confluent.index.KafkaCluster("dedicated", {
|
|
189
|
+
* displayName: "example-dedicated-cluster",
|
|
190
|
+
* availability: "MULTI_ZONE",
|
|
191
|
+
* cloud: privateLink.cloud,
|
|
192
|
+
* region: privateLink.region,
|
|
193
|
+
* dedicated: [{
|
|
194
|
+
* cku: 2,
|
|
195
|
+
* }],
|
|
196
|
+
* environment: [{
|
|
197
|
+
* id: staging.id,
|
|
198
|
+
* }],
|
|
199
|
+
* network: [{
|
|
200
|
+
* id: privateLink.id,
|
|
201
|
+
* }],
|
|
202
|
+
* });
|
|
203
|
+
* const test = new mongodbatlas.StreamPrivatelinkEndpoint("test", {
|
|
204
|
+
* projectId: projectId,
|
|
205
|
+
* dnsDomain: privateLink.dnsDomain,
|
|
206
|
+
* providerName: "AWS",
|
|
207
|
+
* region: awsRegion,
|
|
208
|
+
* vendor: "CONFLUENT",
|
|
209
|
+
* serviceEndpointId: privateLink.aws[0].privateLinkEndpointService,
|
|
210
|
+
* dnsSubDomains: privateLink.zonalSubdomains,
|
|
211
|
+
* });
|
|
212
|
+
* const singularDatasource = test.id.apply(id => mongodbatlas.getStreamPrivatelinkEndpointOutput({
|
|
213
|
+
* projectId: projectId,
|
|
214
|
+
* id: id,
|
|
215
|
+
* }));
|
|
216
|
+
* const pluralDatasource = mongodbatlas.getStreamPrivatelinkEndpoints({
|
|
217
|
+
* projectId: projectId,
|
|
218
|
+
* });
|
|
219
|
+
* export const interfaceEndpointId = singularDatasource.apply(singularDatasource => singularDatasource.interfaceEndpointId);
|
|
220
|
+
* export const interfaceEndpointIds = pluralDatasource.then(pluralDatasource => pluralDatasource.results.map(__item => __item.interfaceEndpointId));
|
|
221
|
+
* ```
|
|
222
|
+
*
|
|
83
223
|
* ### AWS S3 Privatelink
|
|
84
224
|
* ```typescript
|
|
85
225
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -14,6 +14,76 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* ### S
|
|
16
16
|
*
|
|
17
|
+
* ### AWS Confluent Privatelink
|
|
18
|
+
* ```typescript
|
|
19
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
20
|
+
* import * as confluent from "@pulumi/confluent";
|
|
21
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
22
|
+
* import * as std from "@pulumi/std";
|
|
23
|
+
*
|
|
24
|
+
* const staging = new confluent.index.Environment("staging", {displayName: "Staging"});
|
|
25
|
+
* const privateLink = new confluent.index.Network("private_link", {
|
|
26
|
+
* displayName: "terraform-test-private-link-network-manual",
|
|
27
|
+
* cloud: "AWS",
|
|
28
|
+
* region: awsRegion,
|
|
29
|
+
* connectionTypes: ["PRIVATELINK"],
|
|
30
|
+
* zones: std.index.keys({
|
|
31
|
+
* input: subnetsToPrivatelink,
|
|
32
|
+
* }).result,
|
|
33
|
+
* environment: [{
|
|
34
|
+
* id: staging.id,
|
|
35
|
+
* }],
|
|
36
|
+
* dnsConfig: [{
|
|
37
|
+
* resolution: "PRIVATE",
|
|
38
|
+
* }],
|
|
39
|
+
* });
|
|
40
|
+
* const aws = new confluent.index.PrivateLinkAccess("aws", {
|
|
41
|
+
* displayName: "example-private-link-access",
|
|
42
|
+
* aws: [{
|
|
43
|
+
* account: awsAccountId,
|
|
44
|
+
* }],
|
|
45
|
+
* environment: [{
|
|
46
|
+
* id: staging.id,
|
|
47
|
+
* }],
|
|
48
|
+
* network: [{
|
|
49
|
+
* id: privateLink.id,
|
|
50
|
+
* }],
|
|
51
|
+
* });
|
|
52
|
+
* const dedicated = new confluent.index.KafkaCluster("dedicated", {
|
|
53
|
+
* displayName: "example-dedicated-cluster",
|
|
54
|
+
* availability: "MULTI_ZONE",
|
|
55
|
+
* cloud: privateLink.cloud,
|
|
56
|
+
* region: privateLink.region,
|
|
57
|
+
* dedicated: [{
|
|
58
|
+
* cku: 2,
|
|
59
|
+
* }],
|
|
60
|
+
* environment: [{
|
|
61
|
+
* id: staging.id,
|
|
62
|
+
* }],
|
|
63
|
+
* network: [{
|
|
64
|
+
* id: privateLink.id,
|
|
65
|
+
* }],
|
|
66
|
+
* });
|
|
67
|
+
* const test = new mongodbatlas.StreamPrivatelinkEndpoint("test", {
|
|
68
|
+
* projectId: projectId,
|
|
69
|
+
* dnsDomain: privateLink.dnsDomain,
|
|
70
|
+
* providerName: "AWS",
|
|
71
|
+
* region: awsRegion,
|
|
72
|
+
* vendor: "CONFLUENT",
|
|
73
|
+
* serviceEndpointId: privateLink.aws[0].privateLinkEndpointService,
|
|
74
|
+
* dnsSubDomains: privateLink.zonalSubdomains,
|
|
75
|
+
* });
|
|
76
|
+
* const singularDatasource = test.id.apply(id => mongodbatlas.getStreamPrivatelinkEndpointOutput({
|
|
77
|
+
* projectId: projectId,
|
|
78
|
+
* id: id,
|
|
79
|
+
* }));
|
|
80
|
+
* const pluralDatasource = mongodbatlas.getStreamPrivatelinkEndpoints({
|
|
81
|
+
* projectId: projectId,
|
|
82
|
+
* });
|
|
83
|
+
* export const interfaceEndpointId = singularDatasource.apply(singularDatasource => singularDatasource.interfaceEndpointId);
|
|
84
|
+
* export const interfaceEndpointIds = pluralDatasource.then(pluralDatasource => pluralDatasource.results.map(__item => __item.interfaceEndpointId));
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
17
87
|
* ### AWS S3 Privatelink
|
|
18
88
|
* ```typescript
|
|
19
89
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -67,6 +137,76 @@ exports.getStreamPrivatelinkEndpoint = getStreamPrivatelinkEndpoint;
|
|
|
67
137
|
*
|
|
68
138
|
* ### S
|
|
69
139
|
*
|
|
140
|
+
* ### AWS Confluent Privatelink
|
|
141
|
+
* ```typescript
|
|
142
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
143
|
+
* import * as confluent from "@pulumi/confluent";
|
|
144
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
145
|
+
* import * as std from "@pulumi/std";
|
|
146
|
+
*
|
|
147
|
+
* const staging = new confluent.index.Environment("staging", {displayName: "Staging"});
|
|
148
|
+
* const privateLink = new confluent.index.Network("private_link", {
|
|
149
|
+
* displayName: "terraform-test-private-link-network-manual",
|
|
150
|
+
* cloud: "AWS",
|
|
151
|
+
* region: awsRegion,
|
|
152
|
+
* connectionTypes: ["PRIVATELINK"],
|
|
153
|
+
* zones: std.index.keys({
|
|
154
|
+
* input: subnetsToPrivatelink,
|
|
155
|
+
* }).result,
|
|
156
|
+
* environment: [{
|
|
157
|
+
* id: staging.id,
|
|
158
|
+
* }],
|
|
159
|
+
* dnsConfig: [{
|
|
160
|
+
* resolution: "PRIVATE",
|
|
161
|
+
* }],
|
|
162
|
+
* });
|
|
163
|
+
* const aws = new confluent.index.PrivateLinkAccess("aws", {
|
|
164
|
+
* displayName: "example-private-link-access",
|
|
165
|
+
* aws: [{
|
|
166
|
+
* account: awsAccountId,
|
|
167
|
+
* }],
|
|
168
|
+
* environment: [{
|
|
169
|
+
* id: staging.id,
|
|
170
|
+
* }],
|
|
171
|
+
* network: [{
|
|
172
|
+
* id: privateLink.id,
|
|
173
|
+
* }],
|
|
174
|
+
* });
|
|
175
|
+
* const dedicated = new confluent.index.KafkaCluster("dedicated", {
|
|
176
|
+
* displayName: "example-dedicated-cluster",
|
|
177
|
+
* availability: "MULTI_ZONE",
|
|
178
|
+
* cloud: privateLink.cloud,
|
|
179
|
+
* region: privateLink.region,
|
|
180
|
+
* dedicated: [{
|
|
181
|
+
* cku: 2,
|
|
182
|
+
* }],
|
|
183
|
+
* environment: [{
|
|
184
|
+
* id: staging.id,
|
|
185
|
+
* }],
|
|
186
|
+
* network: [{
|
|
187
|
+
* id: privateLink.id,
|
|
188
|
+
* }],
|
|
189
|
+
* });
|
|
190
|
+
* const test = new mongodbatlas.StreamPrivatelinkEndpoint("test", {
|
|
191
|
+
* projectId: projectId,
|
|
192
|
+
* dnsDomain: privateLink.dnsDomain,
|
|
193
|
+
* providerName: "AWS",
|
|
194
|
+
* region: awsRegion,
|
|
195
|
+
* vendor: "CONFLUENT",
|
|
196
|
+
* serviceEndpointId: privateLink.aws[0].privateLinkEndpointService,
|
|
197
|
+
* dnsSubDomains: privateLink.zonalSubdomains,
|
|
198
|
+
* });
|
|
199
|
+
* const singularDatasource = test.id.apply(id => mongodbatlas.getStreamPrivatelinkEndpointOutput({
|
|
200
|
+
* projectId: projectId,
|
|
201
|
+
* id: id,
|
|
202
|
+
* }));
|
|
203
|
+
* const pluralDatasource = mongodbatlas.getStreamPrivatelinkEndpoints({
|
|
204
|
+
* projectId: projectId,
|
|
205
|
+
* });
|
|
206
|
+
* export const interfaceEndpointId = singularDatasource.apply(singularDatasource => singularDatasource.interfaceEndpointId);
|
|
207
|
+
* export const interfaceEndpointIds = pluralDatasource.then(pluralDatasource => pluralDatasource.results.map(__item => __item.interfaceEndpointId));
|
|
208
|
+
* ```
|
|
209
|
+
*
|
|
70
210
|
* ### AWS S3 Privatelink
|
|
71
211
|
* ```typescript
|
|
72
212
|
* import * as pulumi from "@pulumi/pulumi";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getStreamPrivatelinkEndpoint.js","sourceRoot":"","sources":["../getStreamPrivatelinkEndpoint.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getStreamPrivatelinkEndpoint.js","sourceRoot":"","sources":["../getStreamPrivatelinkEndpoint.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkHG;AACH,SAAgB,4BAA4B,CAAC,IAAsC,EAAE,IAA2B;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8EAA8E,EAAE;QACzG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oEAMC;AA6BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkHG;AACH,SAAgB,kCAAkC,CAAC,IAA4C,EAAE,IAAiC;IAC9H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8EAA8E,EAAE;QAC/G,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gFAMC"}
|