@pulumi/mongodbatlas 3.18.0-alpha.1725947451 → 3.18.0-alpha.1726175162
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/advancedCluster.d.ts +15 -3
- package/advancedCluster.js +2 -0
- package/advancedCluster.js.map +1 -1
- package/cluster.d.ts +3 -3
- package/encryptionAtRest.d.ts +30 -13
- package/encryptionAtRest.js +0 -10
- package/encryptionAtRest.js.map +1 -1
- package/encryptionAtRestPrivateEndpoint.d.ts +161 -0
- package/encryptionAtRestPrivateEndpoint.js +133 -0
- package/encryptionAtRestPrivateEndpoint.js.map +1 -0
- package/getAdvancedCluster.d.ts +5 -1
- package/getAdvancedCluster.js.map +1 -1
- package/getCluster.d.ts +1 -1
- package/getEncryptionAtRest.d.ts +275 -0
- package/getEncryptionAtRest.js +247 -0
- package/getEncryptionAtRest.js.map +1 -0
- package/getEncryptionAtRestPrivateEndpoint.d.ts +122 -0
- package/getEncryptionAtRestPrivateEndpoint.js +73 -0
- package/getEncryptionAtRestPrivateEndpoint.js.map +1 -0
- package/getEncryptionAtRestPrivateEndpoints.d.ts +101 -0
- package/getEncryptionAtRestPrivateEndpoints.js +70 -0
- package/getEncryptionAtRestPrivateEndpoints.js.map +1 -0
- package/getProject.d.ts +3 -1
- package/getProject.js.map +1 -1
- package/getProjectIpAddresses.d.ts +75 -0
- package/getProjectIpAddresses.js +55 -0
- package/getProjectIpAddresses.js.map +1 -0
- package/getStreamProcessor.d.ts +74 -0
- package/getStreamProcessor.js +35 -0
- package/getStreamProcessor.js.map +1 -0
- package/getStreamProcessors.d.ts +62 -0
- package/getStreamProcessors.js +34 -0
- package/getStreamProcessors.js.map +1 -0
- package/index.d.ts +24 -0
- package/index.js +34 -5
- package/index.js.map +1 -1
- package/onlineArchive.d.ts +9 -0
- package/onlineArchive.js.map +1 -1
- package/package.json +2 -2
- package/project.d.ts +6 -2
- package/project.js.map +1 -1
- package/streamProcessor.d.ts +137 -0
- package/streamProcessor.js +76 -0
- package/streamProcessor.js.map +1 -0
- package/types/input.d.ts +66 -16
- package/types/output.d.ts +304 -19
package/advancedCluster.d.ts
CHANGED
|
@@ -412,7 +412,7 @@ export declare class AdvancedCluster extends pulumi.CustomResource {
|
|
|
412
412
|
/**
|
|
413
413
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
414
414
|
*
|
|
415
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
415
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
416
416
|
*/
|
|
417
417
|
readonly labels: pulumi.Output<outputs.AdvancedClusterLabel[] | undefined>;
|
|
418
418
|
/**
|
|
@@ -436,6 +436,10 @@ export declare class AdvancedCluster extends pulumi.CustomResource {
|
|
|
436
436
|
* Unique ID for the project to create the database user.
|
|
437
437
|
*/
|
|
438
438
|
readonly projectId: pulumi.Output<string>;
|
|
439
|
+
/**
|
|
440
|
+
* Replica set scaling mode for your cluster. Valid values are `WORKLOAD_TYPE`, `SEQUENTIAL` and `NODE_TYPE`. By default, Atlas scales under `WORKLOAD_TYPE`. This mode allows Atlas to scale your analytics nodes in parallel to your operational nodes. When configured as `SEQUENTIAL`, Atlas scales all nodes sequentially. This mode is intended for steady-state workloads and applications performing latency-sensitive secondary reads. When configured as `NODE_TYPE`, Atlas scales your electable nodes in parallel with your read-only and analytics nodes. This mode is intended for large, dynamic workloads requiring frequent and timely cluster tier scaling. This is the fastest scaling strategy, but it might impact latency of workloads when performing extensive secondary reads. [Modify the Replica Set Scaling Mode](https://dochub.mongodb.org/core/scale-nodes)
|
|
441
|
+
*/
|
|
442
|
+
readonly replicaSetScalingStrategy: pulumi.Output<string>;
|
|
439
443
|
/**
|
|
440
444
|
* List of settings that configure your cluster regions. This attribute has one object per shard representing node configurations in each shard. For replica sets there is only one object representing node configurations. If for each replicationSpec `numShards` is configured with a value greater than 1 (using deprecated sharding configurations), then each object represents a zone with one or more shards. See below
|
|
441
445
|
*/
|
|
@@ -541,7 +545,7 @@ export interface AdvancedClusterState {
|
|
|
541
545
|
/**
|
|
542
546
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
543
547
|
*
|
|
544
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
548
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
545
549
|
*/
|
|
546
550
|
labels?: pulumi.Input<pulumi.Input<inputs.AdvancedClusterLabel>[]>;
|
|
547
551
|
/**
|
|
@@ -565,6 +569,10 @@ export interface AdvancedClusterState {
|
|
|
565
569
|
* Unique ID for the project to create the database user.
|
|
566
570
|
*/
|
|
567
571
|
projectId?: pulumi.Input<string>;
|
|
572
|
+
/**
|
|
573
|
+
* Replica set scaling mode for your cluster. Valid values are `WORKLOAD_TYPE`, `SEQUENTIAL` and `NODE_TYPE`. By default, Atlas scales under `WORKLOAD_TYPE`. This mode allows Atlas to scale your analytics nodes in parallel to your operational nodes. When configured as `SEQUENTIAL`, Atlas scales all nodes sequentially. This mode is intended for steady-state workloads and applications performing latency-sensitive secondary reads. When configured as `NODE_TYPE`, Atlas scales your electable nodes in parallel with your read-only and analytics nodes. This mode is intended for large, dynamic workloads requiring frequent and timely cluster tier scaling. This is the fastest scaling strategy, but it might impact latency of workloads when performing extensive secondary reads. [Modify the Replica Set Scaling Mode](https://dochub.mongodb.org/core/scale-nodes)
|
|
574
|
+
*/
|
|
575
|
+
replicaSetScalingStrategy?: pulumi.Input<string>;
|
|
568
576
|
/**
|
|
569
577
|
* List of settings that configure your cluster regions. This attribute has one object per shard representing node configurations in each shard. For replica sets there is only one object representing node configurations. If for each replicationSpec `numShards` is configured with a value greater than 1 (using deprecated sharding configurations), then each object represents a zone with one or more shards. See below
|
|
570
578
|
*/
|
|
@@ -653,7 +661,7 @@ export interface AdvancedClusterArgs {
|
|
|
653
661
|
/**
|
|
654
662
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
655
663
|
*
|
|
656
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
664
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
657
665
|
*/
|
|
658
666
|
labels?: pulumi.Input<pulumi.Input<inputs.AdvancedClusterLabel>[]>;
|
|
659
667
|
/**
|
|
@@ -673,6 +681,10 @@ export interface AdvancedClusterArgs {
|
|
|
673
681
|
* Unique ID for the project to create the database user.
|
|
674
682
|
*/
|
|
675
683
|
projectId: pulumi.Input<string>;
|
|
684
|
+
/**
|
|
685
|
+
* Replica set scaling mode for your cluster. Valid values are `WORKLOAD_TYPE`, `SEQUENTIAL` and `NODE_TYPE`. By default, Atlas scales under `WORKLOAD_TYPE`. This mode allows Atlas to scale your analytics nodes in parallel to your operational nodes. When configured as `SEQUENTIAL`, Atlas scales all nodes sequentially. This mode is intended for steady-state workloads and applications performing latency-sensitive secondary reads. When configured as `NODE_TYPE`, Atlas scales your electable nodes in parallel with your read-only and analytics nodes. This mode is intended for large, dynamic workloads requiring frequent and timely cluster tier scaling. This is the fastest scaling strategy, but it might impact latency of workloads when performing extensive secondary reads. [Modify the Replica Set Scaling Mode](https://dochub.mongodb.org/core/scale-nodes)
|
|
686
|
+
*/
|
|
687
|
+
replicaSetScalingStrategy?: pulumi.Input<string>;
|
|
676
688
|
/**
|
|
677
689
|
* List of settings that configure your cluster regions. This attribute has one object per shard representing node configurations in each shard. For replica sets there is only one object representing node configurations. If for each replicationSpec `numShards` is configured with a value greater than 1 (using deprecated sharding configurations), then each object represents a zone with one or more shards. See below
|
|
678
690
|
*/
|
package/advancedCluster.js
CHANGED
|
@@ -391,6 +391,7 @@ class AdvancedCluster extends pulumi.CustomResource {
|
|
|
391
391
|
resourceInputs["paused"] = state ? state.paused : undefined;
|
|
392
392
|
resourceInputs["pitEnabled"] = state ? state.pitEnabled : undefined;
|
|
393
393
|
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
394
|
+
resourceInputs["replicaSetScalingStrategy"] = state ? state.replicaSetScalingStrategy : undefined;
|
|
394
395
|
resourceInputs["replicationSpecs"] = state ? state.replicationSpecs : undefined;
|
|
395
396
|
resourceInputs["retainBackupsEnabled"] = state ? state.retainBackupsEnabled : undefined;
|
|
396
397
|
resourceInputs["rootCertType"] = state ? state.rootCertType : undefined;
|
|
@@ -424,6 +425,7 @@ class AdvancedCluster extends pulumi.CustomResource {
|
|
|
424
425
|
resourceInputs["paused"] = args ? args.paused : undefined;
|
|
425
426
|
resourceInputs["pitEnabled"] = args ? args.pitEnabled : undefined;
|
|
426
427
|
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
428
|
+
resourceInputs["replicaSetScalingStrategy"] = args ? args.replicaSetScalingStrategy : undefined;
|
|
427
429
|
resourceInputs["replicationSpecs"] = args ? args.replicationSpecs : undefined;
|
|
428
430
|
resourceInputs["retainBackupsEnabled"] = args ? args.retainBackupsEnabled : undefined;
|
|
429
431
|
resourceInputs["rootCertType"] = args ? args.rootCertType : undefined;
|
package/advancedCluster.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"advancedCluster.js","sourceRoot":"","sources":["../advancedCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmVG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"advancedCluster.js","sourceRoot":"","sources":["../advancedCluster.ts"],"names":[],"mappings":"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"}
|
package/cluster.d.ts
CHANGED
|
@@ -311,7 +311,7 @@ export declare class Cluster extends pulumi.CustomResource {
|
|
|
311
311
|
/**
|
|
312
312
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
313
313
|
*
|
|
314
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
314
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
315
315
|
*/
|
|
316
316
|
readonly labels: pulumi.Output<outputs.ClusterLabel[] | undefined>;
|
|
317
317
|
/**
|
|
@@ -537,7 +537,7 @@ export interface ClusterState {
|
|
|
537
537
|
/**
|
|
538
538
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
539
539
|
*
|
|
540
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
540
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
541
541
|
*/
|
|
542
542
|
labels?: pulumi.Input<pulumi.Input<inputs.ClusterLabel>[]>;
|
|
543
543
|
/**
|
|
@@ -743,7 +743,7 @@ export interface ClusterArgs {
|
|
|
743
743
|
/**
|
|
744
744
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
745
745
|
*
|
|
746
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
746
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
747
747
|
*/
|
|
748
748
|
labels?: pulumi.Input<pulumi.Input<inputs.ClusterLabel>[]>;
|
|
749
749
|
/**
|
package/encryptionAtRest.d.ts
CHANGED
|
@@ -1,16 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
|
-
/**
|
|
5
|
-
* ## Import
|
|
6
|
-
*
|
|
7
|
-
* Encryption at Rest Settings can be imported using project ID, in the format `project_id`, e.g.
|
|
8
|
-
*
|
|
9
|
-
* ```sh
|
|
10
|
-
* $ pulumi import mongodbatlas:index/encryptionAtRest:EncryptionAtRest example 1112222b3bf99403840e8934
|
|
11
|
-
* ```
|
|
12
|
-
* For more information see: [MongoDB Atlas API Reference for Encryption at Rest using Customer Key Management.](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Encryption-at-Rest-using-Customer-Key-Management)
|
|
13
|
-
*/
|
|
14
4
|
export declare class EncryptionAtRest extends pulumi.CustomResource {
|
|
15
5
|
/**
|
|
16
6
|
* Get an existing EncryptionAtRest resource's state with the given name, ID, and optional extra
|
|
@@ -27,11 +17,20 @@ export declare class EncryptionAtRest extends pulumi.CustomResource {
|
|
|
27
17
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
28
18
|
*/
|
|
29
19
|
static isInstance(obj: any): obj is EncryptionAtRest;
|
|
20
|
+
/**
|
|
21
|
+
* Amazon Web Services (AWS) KMS configuration details and encryption at rest configuration set for the specified project.
|
|
22
|
+
*/
|
|
30
23
|
readonly awsKmsConfig: pulumi.Output<outputs.EncryptionAtRestAwsKmsConfig | undefined>;
|
|
24
|
+
/**
|
|
25
|
+
* Details that define the configuration of Encryption at Rest using Azure Key Vault (AKV).
|
|
26
|
+
*/
|
|
31
27
|
readonly azureKeyVaultConfig: pulumi.Output<outputs.EncryptionAtRestAzureKeyVaultConfig | undefined>;
|
|
28
|
+
/**
|
|
29
|
+
* Details that define the configuration of Encryption at Rest using Google Cloud Key Management Service (KMS).
|
|
30
|
+
*/
|
|
32
31
|
readonly googleCloudKmsConfig: pulumi.Output<outputs.EncryptionAtRestGoogleCloudKmsConfig | undefined>;
|
|
33
32
|
/**
|
|
34
|
-
*
|
|
33
|
+
* Unique 24-hexadecimal digit string that identifies your project.
|
|
35
34
|
*/
|
|
36
35
|
readonly projectId: pulumi.Output<string>;
|
|
37
36
|
/**
|
|
@@ -47,11 +46,20 @@ export declare class EncryptionAtRest extends pulumi.CustomResource {
|
|
|
47
46
|
* Input properties used for looking up and filtering EncryptionAtRest resources.
|
|
48
47
|
*/
|
|
49
48
|
export interface EncryptionAtRestState {
|
|
49
|
+
/**
|
|
50
|
+
* Amazon Web Services (AWS) KMS configuration details and encryption at rest configuration set for the specified project.
|
|
51
|
+
*/
|
|
50
52
|
awsKmsConfig?: pulumi.Input<inputs.EncryptionAtRestAwsKmsConfig>;
|
|
53
|
+
/**
|
|
54
|
+
* Details that define the configuration of Encryption at Rest using Azure Key Vault (AKV).
|
|
55
|
+
*/
|
|
51
56
|
azureKeyVaultConfig?: pulumi.Input<inputs.EncryptionAtRestAzureKeyVaultConfig>;
|
|
57
|
+
/**
|
|
58
|
+
* Details that define the configuration of Encryption at Rest using Google Cloud Key Management Service (KMS).
|
|
59
|
+
*/
|
|
52
60
|
googleCloudKmsConfig?: pulumi.Input<inputs.EncryptionAtRestGoogleCloudKmsConfig>;
|
|
53
61
|
/**
|
|
54
|
-
*
|
|
62
|
+
* Unique 24-hexadecimal digit string that identifies your project.
|
|
55
63
|
*/
|
|
56
64
|
projectId?: pulumi.Input<string>;
|
|
57
65
|
}
|
|
@@ -59,11 +67,20 @@ export interface EncryptionAtRestState {
|
|
|
59
67
|
* The set of arguments for constructing a EncryptionAtRest resource.
|
|
60
68
|
*/
|
|
61
69
|
export interface EncryptionAtRestArgs {
|
|
70
|
+
/**
|
|
71
|
+
* Amazon Web Services (AWS) KMS configuration details and encryption at rest configuration set for the specified project.
|
|
72
|
+
*/
|
|
62
73
|
awsKmsConfig?: pulumi.Input<inputs.EncryptionAtRestAwsKmsConfig>;
|
|
74
|
+
/**
|
|
75
|
+
* Details that define the configuration of Encryption at Rest using Azure Key Vault (AKV).
|
|
76
|
+
*/
|
|
63
77
|
azureKeyVaultConfig?: pulumi.Input<inputs.EncryptionAtRestAzureKeyVaultConfig>;
|
|
78
|
+
/**
|
|
79
|
+
* Details that define the configuration of Encryption at Rest using Google Cloud Key Management Service (KMS).
|
|
80
|
+
*/
|
|
64
81
|
googleCloudKmsConfig?: pulumi.Input<inputs.EncryptionAtRestGoogleCloudKmsConfig>;
|
|
65
82
|
/**
|
|
66
|
-
*
|
|
83
|
+
* Unique 24-hexadecimal digit string that identifies your project.
|
|
67
84
|
*/
|
|
68
85
|
projectId: pulumi.Input<string>;
|
|
69
86
|
}
|
package/encryptionAtRest.js
CHANGED
|
@@ -5,16 +5,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
5
5
|
exports.EncryptionAtRest = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
|
-
/**
|
|
9
|
-
* ## Import
|
|
10
|
-
*
|
|
11
|
-
* Encryption at Rest Settings can be imported using project ID, in the format `project_id`, e.g.
|
|
12
|
-
*
|
|
13
|
-
* ```sh
|
|
14
|
-
* $ pulumi import mongodbatlas:index/encryptionAtRest:EncryptionAtRest example 1112222b3bf99403840e8934
|
|
15
|
-
* ```
|
|
16
|
-
* For more information see: [MongoDB Atlas API Reference for Encryption at Rest using Customer Key Management.](https://www.mongodb.com/docs/atlas/reference/api-resources-spec/#tag/Encryption-at-Rest-using-Customer-Key-Management)
|
|
17
|
-
*/
|
|
18
8
|
class EncryptionAtRest extends pulumi.CustomResource {
|
|
19
9
|
/**
|
|
20
10
|
* Get an existing EncryptionAtRest resource's state with the given name, ID, and optional extra
|
package/encryptionAtRest.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"encryptionAtRest.js","sourceRoot":"","sources":["../encryptionAtRest.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"encryptionAtRest.js","sourceRoot":"","sources":["../encryptionAtRest.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;IA2BD,YAAY,IAAY,EAAE,WAA0D,EAAE,IAAmC;QACrH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAgD,CAAC;YAC/D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAA+C,CAAC;YAC7D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,gBAAgB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACrE,CAAC;;AA1EL,4CA2EC;AA7DG,gBAAgB;AACO,6BAAY,GAAG,sDAAsD,CAAC"}
|
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* ## # Resource: mongodbatlas.EncryptionAtRestPrivateEndpoint
|
|
4
|
+
*
|
|
5
|
+
* `mongodbatlas.EncryptionAtRestPrivateEndpoint` provides a resource for managing a private endpoint used for encryption at rest with customer-managed keys. This ensures all traffic between Atlas and customer key management systems take place over private network interfaces.
|
|
6
|
+
*
|
|
7
|
+
* > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
|
|
8
|
+
* To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
|
|
9
|
+
*
|
|
10
|
+
* > **NOTE:** As a prerequisite to configuring a private endpoint for Azure Key Vault, the corresponding `mongodbatlas.EncryptionAtRest` resource has to be adjust by configuring `azure_key_vault_config.require_private_networking` to true. This attribute should be updated in place, ensuring the customer-managed keys encryption is never disabled.
|
|
11
|
+
*
|
|
12
|
+
* > **NOTE:** This resource does not support update operations. To modify values of a private endpoint the existing resource must be deleted and a new one can be created with the modified values.
|
|
13
|
+
*
|
|
14
|
+
* ## Example Usage
|
|
15
|
+
*
|
|
16
|
+
* ### S
|
|
17
|
+
*
|
|
18
|
+
* > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
|
|
19
|
+
*
|
|
20
|
+
* ### Configuring Atlas Encryption at Rest using Azure Key Vault with Azure Private Link
|
|
21
|
+
*
|
|
22
|
+
* Make sure to reference the complete example section for detailed steps and considerations.
|
|
23
|
+
*
|
|
24
|
+
* ```typescript
|
|
25
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
26
|
+
* import * as azapi from "@pulumi/azapi";
|
|
27
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
28
|
+
*
|
|
29
|
+
* const ear = new mongodbatlas.EncryptionAtRest("ear", {
|
|
30
|
+
* projectId: atlasProjectId,
|
|
31
|
+
* azureKeyVaultConfig: {
|
|
32
|
+
* requirePrivateNetworking: true,
|
|
33
|
+
* enabled: true,
|
|
34
|
+
* azureEnvironment: "AZURE",
|
|
35
|
+
* tenantId: azureTenantId,
|
|
36
|
+
* subscriptionId: azureSubscriptionId,
|
|
37
|
+
* clientId: azureClientId,
|
|
38
|
+
* secret: azureClientSecret,
|
|
39
|
+
* resourceGroupName: azureResourceGroupName,
|
|
40
|
+
* keyVaultName: azureKeyVaultName,
|
|
41
|
+
* keyIdentifier: azureKeyIdentifier,
|
|
42
|
+
* },
|
|
43
|
+
* });
|
|
44
|
+
* // Creates private endpoint
|
|
45
|
+
* const endpoint = new mongodbatlas.EncryptionAtRestPrivateEndpoint("endpoint", {
|
|
46
|
+
* projectId: ear.projectId,
|
|
47
|
+
* cloudProvider: "AZURE",
|
|
48
|
+
* regionName: azureRegionName,
|
|
49
|
+
* });
|
|
50
|
+
* const keyVaultResourceId = `/subscriptions/${azureSubscriptionId}/resourceGroups/${azureResourceGroupName}/providers/Microsoft.KeyVault/vaults/${azureKeyVaultName}`;
|
|
51
|
+
* // Approves private endpoint connection from Azure Key Vault
|
|
52
|
+
* const approval = new azapi.index.UpdateResource("approval", {
|
|
53
|
+
* type: "Microsoft.KeyVault/Vaults/PrivateEndpointConnections@2023-07-01",
|
|
54
|
+
* name: endpoint.privateEndpointConnectionName,
|
|
55
|
+
* parentId: keyVaultResourceId,
|
|
56
|
+
* body: JSON.stringify({
|
|
57
|
+
* properties: {
|
|
58
|
+
* privateLinkServiceConnectionState: {
|
|
59
|
+
* description: "Approved via Terraform",
|
|
60
|
+
* status: "Approved",
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* }),
|
|
64
|
+
* });
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
67
|
+
export declare class EncryptionAtRestPrivateEndpoint extends pulumi.CustomResource {
|
|
68
|
+
/**
|
|
69
|
+
* Get an existing EncryptionAtRestPrivateEndpoint resource's state with the given name, ID, and optional extra
|
|
70
|
+
* properties used to qualify the lookup.
|
|
71
|
+
*
|
|
72
|
+
* @param name The _unique_ name of the resulting resource.
|
|
73
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
74
|
+
* @param state Any extra arguments used during the lookup.
|
|
75
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
76
|
+
*/
|
|
77
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: EncryptionAtRestPrivateEndpointState, opts?: pulumi.CustomResourceOptions): EncryptionAtRestPrivateEndpoint;
|
|
78
|
+
/**
|
|
79
|
+
* Returns true if the given object is an instance of EncryptionAtRestPrivateEndpoint. This is designed to work even
|
|
80
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
81
|
+
*/
|
|
82
|
+
static isInstance(obj: any): obj is EncryptionAtRestPrivateEndpoint;
|
|
83
|
+
/**
|
|
84
|
+
* Label that identifies the cloud provider for the Encryption At Rest private endpoint.
|
|
85
|
+
*/
|
|
86
|
+
readonly cloudProvider: pulumi.Output<string>;
|
|
87
|
+
/**
|
|
88
|
+
* Error message for failures associated with the Encryption At Rest private endpoint.
|
|
89
|
+
*/
|
|
90
|
+
readonly errorMessage: pulumi.Output<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Connection name of the Azure Private Endpoint.
|
|
93
|
+
*/
|
|
94
|
+
readonly privateEndpointConnectionName: pulumi.Output<string>;
|
|
95
|
+
/**
|
|
96
|
+
* Unique 24-hexadecimal digit string that identifies your project.
|
|
97
|
+
*/
|
|
98
|
+
readonly projectId: pulumi.Output<string>;
|
|
99
|
+
/**
|
|
100
|
+
* Cloud provider region in which the Encryption At Rest private endpoint is located.
|
|
101
|
+
*/
|
|
102
|
+
readonly regionName: pulumi.Output<string>;
|
|
103
|
+
/**
|
|
104
|
+
* State of the Encryption At Rest private endpoint.
|
|
105
|
+
*/
|
|
106
|
+
readonly status: pulumi.Output<string>;
|
|
107
|
+
/**
|
|
108
|
+
* Create a EncryptionAtRestPrivateEndpoint resource with the given unique name, arguments, and options.
|
|
109
|
+
*
|
|
110
|
+
* @param name The _unique_ name of the resource.
|
|
111
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
112
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
113
|
+
*/
|
|
114
|
+
constructor(name: string, args: EncryptionAtRestPrivateEndpointArgs, opts?: pulumi.CustomResourceOptions);
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Input properties used for looking up and filtering EncryptionAtRestPrivateEndpoint resources.
|
|
118
|
+
*/
|
|
119
|
+
export interface EncryptionAtRestPrivateEndpointState {
|
|
120
|
+
/**
|
|
121
|
+
* Label that identifies the cloud provider for the Encryption At Rest private endpoint.
|
|
122
|
+
*/
|
|
123
|
+
cloudProvider?: pulumi.Input<string>;
|
|
124
|
+
/**
|
|
125
|
+
* Error message for failures associated with the Encryption At Rest private endpoint.
|
|
126
|
+
*/
|
|
127
|
+
errorMessage?: pulumi.Input<string>;
|
|
128
|
+
/**
|
|
129
|
+
* Connection name of the Azure Private Endpoint.
|
|
130
|
+
*/
|
|
131
|
+
privateEndpointConnectionName?: pulumi.Input<string>;
|
|
132
|
+
/**
|
|
133
|
+
* Unique 24-hexadecimal digit string that identifies your project.
|
|
134
|
+
*/
|
|
135
|
+
projectId?: pulumi.Input<string>;
|
|
136
|
+
/**
|
|
137
|
+
* Cloud provider region in which the Encryption At Rest private endpoint is located.
|
|
138
|
+
*/
|
|
139
|
+
regionName?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* State of the Encryption At Rest private endpoint.
|
|
142
|
+
*/
|
|
143
|
+
status?: pulumi.Input<string>;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* The set of arguments for constructing a EncryptionAtRestPrivateEndpoint resource.
|
|
147
|
+
*/
|
|
148
|
+
export interface EncryptionAtRestPrivateEndpointArgs {
|
|
149
|
+
/**
|
|
150
|
+
* Label that identifies the cloud provider for the Encryption At Rest private endpoint.
|
|
151
|
+
*/
|
|
152
|
+
cloudProvider: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* Unique 24-hexadecimal digit string that identifies your project.
|
|
155
|
+
*/
|
|
156
|
+
projectId: pulumi.Input<string>;
|
|
157
|
+
/**
|
|
158
|
+
* Cloud provider region in which the Encryption At Rest private endpoint is located.
|
|
159
|
+
*/
|
|
160
|
+
regionName: pulumi.Input<string>;
|
|
161
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
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.EncryptionAtRestPrivateEndpoint = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## # Resource: mongodbatlas.EncryptionAtRestPrivateEndpoint
|
|
10
|
+
*
|
|
11
|
+
* `mongodbatlas.EncryptionAtRestPrivateEndpoint` provides a resource for managing a private endpoint used for encryption at rest with customer-managed keys. This ensures all traffic between Atlas and customer key management systems take place over private network interfaces.
|
|
12
|
+
*
|
|
13
|
+
* > **IMPORTANT** The Encryption at Rest using Azure Key Vault over Private Endpoints feature is available by request. To request this functionality for your Atlas deployments, contact your Account Manager.
|
|
14
|
+
* To learn more about existing limitations, see [Manage Customer Keys with Azure Key Vault Over Private Endpoints](https://www.mongodb.com/docs/atlas/security/azure-kms-over-private-endpoint/#manage-customer-keys-with-azure-key-vault-over-private-endpoints).
|
|
15
|
+
*
|
|
16
|
+
* > **NOTE:** As a prerequisite to configuring a private endpoint for Azure Key Vault, the corresponding `mongodbatlas.EncryptionAtRest` resource has to be adjust by configuring `azure_key_vault_config.require_private_networking` to true. This attribute should be updated in place, ensuring the customer-managed keys encryption is never disabled.
|
|
17
|
+
*
|
|
18
|
+
* > **NOTE:** This resource does not support update operations. To modify values of a private endpoint the existing resource must be deleted and a new one can be created with the modified values.
|
|
19
|
+
*
|
|
20
|
+
* ## Example Usage
|
|
21
|
+
*
|
|
22
|
+
* ### S
|
|
23
|
+
*
|
|
24
|
+
* > **NOTE:** Only Azure Key Vault with Azure Private Link is supported at this time.
|
|
25
|
+
*
|
|
26
|
+
* ### Configuring Atlas Encryption at Rest using Azure Key Vault with Azure Private Link
|
|
27
|
+
*
|
|
28
|
+
* Make sure to reference the complete example section for detailed steps and considerations.
|
|
29
|
+
*
|
|
30
|
+
* ```typescript
|
|
31
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
32
|
+
* import * as azapi from "@pulumi/azapi";
|
|
33
|
+
* import * as mongodbatlas from "@pulumi/mongodbatlas";
|
|
34
|
+
*
|
|
35
|
+
* const ear = new mongodbatlas.EncryptionAtRest("ear", {
|
|
36
|
+
* projectId: atlasProjectId,
|
|
37
|
+
* azureKeyVaultConfig: {
|
|
38
|
+
* requirePrivateNetworking: true,
|
|
39
|
+
* enabled: true,
|
|
40
|
+
* azureEnvironment: "AZURE",
|
|
41
|
+
* tenantId: azureTenantId,
|
|
42
|
+
* subscriptionId: azureSubscriptionId,
|
|
43
|
+
* clientId: azureClientId,
|
|
44
|
+
* secret: azureClientSecret,
|
|
45
|
+
* resourceGroupName: azureResourceGroupName,
|
|
46
|
+
* keyVaultName: azureKeyVaultName,
|
|
47
|
+
* keyIdentifier: azureKeyIdentifier,
|
|
48
|
+
* },
|
|
49
|
+
* });
|
|
50
|
+
* // Creates private endpoint
|
|
51
|
+
* const endpoint = new mongodbatlas.EncryptionAtRestPrivateEndpoint("endpoint", {
|
|
52
|
+
* projectId: ear.projectId,
|
|
53
|
+
* cloudProvider: "AZURE",
|
|
54
|
+
* regionName: azureRegionName,
|
|
55
|
+
* });
|
|
56
|
+
* const keyVaultResourceId = `/subscriptions/${azureSubscriptionId}/resourceGroups/${azureResourceGroupName}/providers/Microsoft.KeyVault/vaults/${azureKeyVaultName}`;
|
|
57
|
+
* // Approves private endpoint connection from Azure Key Vault
|
|
58
|
+
* const approval = new azapi.index.UpdateResource("approval", {
|
|
59
|
+
* type: "Microsoft.KeyVault/Vaults/PrivateEndpointConnections@2023-07-01",
|
|
60
|
+
* name: endpoint.privateEndpointConnectionName,
|
|
61
|
+
* parentId: keyVaultResourceId,
|
|
62
|
+
* body: JSON.stringify({
|
|
63
|
+
* properties: {
|
|
64
|
+
* privateLinkServiceConnectionState: {
|
|
65
|
+
* description: "Approved via Terraform",
|
|
66
|
+
* status: "Approved",
|
|
67
|
+
* },
|
|
68
|
+
* },
|
|
69
|
+
* }),
|
|
70
|
+
* });
|
|
71
|
+
* ```
|
|
72
|
+
*/
|
|
73
|
+
class EncryptionAtRestPrivateEndpoint extends pulumi.CustomResource {
|
|
74
|
+
/**
|
|
75
|
+
* Get an existing EncryptionAtRestPrivateEndpoint resource's state with the given name, ID, and optional extra
|
|
76
|
+
* properties used to qualify the lookup.
|
|
77
|
+
*
|
|
78
|
+
* @param name The _unique_ name of the resulting resource.
|
|
79
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
80
|
+
* @param state Any extra arguments used during the lookup.
|
|
81
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
82
|
+
*/
|
|
83
|
+
static get(name, id, state, opts) {
|
|
84
|
+
return new EncryptionAtRestPrivateEndpoint(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Returns true if the given object is an instance of EncryptionAtRestPrivateEndpoint. This is designed to work even
|
|
88
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
89
|
+
*/
|
|
90
|
+
static isInstance(obj) {
|
|
91
|
+
if (obj === undefined || obj === null) {
|
|
92
|
+
return false;
|
|
93
|
+
}
|
|
94
|
+
return obj['__pulumiType'] === EncryptionAtRestPrivateEndpoint.__pulumiType;
|
|
95
|
+
}
|
|
96
|
+
constructor(name, argsOrState, opts) {
|
|
97
|
+
let resourceInputs = {};
|
|
98
|
+
opts = opts || {};
|
|
99
|
+
if (opts.id) {
|
|
100
|
+
const state = argsOrState;
|
|
101
|
+
resourceInputs["cloudProvider"] = state ? state.cloudProvider : undefined;
|
|
102
|
+
resourceInputs["errorMessage"] = state ? state.errorMessage : undefined;
|
|
103
|
+
resourceInputs["privateEndpointConnectionName"] = state ? state.privateEndpointConnectionName : undefined;
|
|
104
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
105
|
+
resourceInputs["regionName"] = state ? state.regionName : undefined;
|
|
106
|
+
resourceInputs["status"] = state ? state.status : undefined;
|
|
107
|
+
}
|
|
108
|
+
else {
|
|
109
|
+
const args = argsOrState;
|
|
110
|
+
if ((!args || args.cloudProvider === undefined) && !opts.urn) {
|
|
111
|
+
throw new Error("Missing required property 'cloudProvider'");
|
|
112
|
+
}
|
|
113
|
+
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
114
|
+
throw new Error("Missing required property 'projectId'");
|
|
115
|
+
}
|
|
116
|
+
if ((!args || args.regionName === undefined) && !opts.urn) {
|
|
117
|
+
throw new Error("Missing required property 'regionName'");
|
|
118
|
+
}
|
|
119
|
+
resourceInputs["cloudProvider"] = args ? args.cloudProvider : undefined;
|
|
120
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
121
|
+
resourceInputs["regionName"] = args ? args.regionName : undefined;
|
|
122
|
+
resourceInputs["errorMessage"] = undefined /*out*/;
|
|
123
|
+
resourceInputs["privateEndpointConnectionName"] = undefined /*out*/;
|
|
124
|
+
resourceInputs["status"] = undefined /*out*/;
|
|
125
|
+
}
|
|
126
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
127
|
+
super(EncryptionAtRestPrivateEndpoint.__pulumiType, name, resourceInputs, opts);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
exports.EncryptionAtRestPrivateEndpoint = EncryptionAtRestPrivateEndpoint;
|
|
131
|
+
/** @internal */
|
|
132
|
+
EncryptionAtRestPrivateEndpoint.__pulumiType = 'mongodbatlas:index/encryptionAtRestPrivateEndpoint:EncryptionAtRestPrivateEndpoint';
|
|
133
|
+
//# sourceMappingURL=encryptionAtRestPrivateEndpoint.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"encryptionAtRestPrivateEndpoint.js","sourceRoot":"","sources":["../encryptionAtRestPrivateEndpoint.ts"],"names":[],"mappings":"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"}
|
package/getAdvancedCluster.d.ts
CHANGED
|
@@ -149,7 +149,7 @@ export interface GetAdvancedClusterResult {
|
|
|
149
149
|
/**
|
|
150
150
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **(DEPRECATED.)** Use `tags` instead.
|
|
151
151
|
*
|
|
152
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
152
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
153
153
|
*/
|
|
154
154
|
readonly labels: outputs.GetAdvancedClusterLabel[];
|
|
155
155
|
/**
|
|
@@ -170,6 +170,10 @@ export interface GetAdvancedClusterResult {
|
|
|
170
170
|
*/
|
|
171
171
|
readonly pitEnabled: boolean;
|
|
172
172
|
readonly projectId: string;
|
|
173
|
+
/**
|
|
174
|
+
* (Optional) Replica set scaling mode for your cluster.
|
|
175
|
+
*/
|
|
176
|
+
readonly replicaSetScalingStrategy: string;
|
|
173
177
|
/**
|
|
174
178
|
* List of settings that configure your cluster regions. If `useReplicationSpecPerShard = true`, this array has one object per shard representing node configurations in each shard. For replica sets there is only one object representing node configurations. See below.
|
|
175
179
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAdvancedCluster.js","sourceRoot":"","sources":["../getAdvancedCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmFG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gDASC;
|
|
1
|
+
{"version":3,"file":"getAdvancedCluster.js","sourceRoot":"","sources":["../getAdvancedCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmFG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IAExF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,4BAA4B,EAAE,IAAI,CAAC,0BAA0B;KAChE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gDASC;AAsHD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmFG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC7E,CAAC;AAFD,4DAEC"}
|
package/getCluster.d.ts
CHANGED
|
@@ -115,7 +115,7 @@ export interface GetClusterResult {
|
|
|
115
115
|
/**
|
|
116
116
|
* Set that contains key-value pairs between 1 to 255 characters in length for tagging and categorizing the cluster. See below. **DEPRECATED** Use `tags` instead.
|
|
117
117
|
*
|
|
118
|
-
* @deprecated This parameter is deprecated and will be removed
|
|
118
|
+
* @deprecated This parameter is deprecated and will be removed in the future. Please transition to tags
|
|
119
119
|
*/
|
|
120
120
|
readonly labels: outputs.GetClusterLabel[];
|
|
121
121
|
/**
|