@pulumi/mongodbatlas 3.6.0-alpha.1663014864 → 3.6.0-alpha.1663203196

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/mongodbatlas",
3
- "version": "v3.6.0-alpha.1663014864+505ddb6b",
3
+ "version": "v3.6.0-alpha.1663203196+27b3447e",
4
4
  "description": "A Pulumi package for creating and managing mongodbatlas cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource mongodbatlas v3.6.0-alpha.1663014864+505ddb6b"
14
+ "install": "node scripts/install-pulumi-plugin.js resource mongodbatlas v3.6.0-alpha.1663203196+27b3447e"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/package.json.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/mongodbatlas",
3
- "version": "v3.6.0-alpha.1663014864+505ddb6b",
3
+ "version": "v3.6.0-alpha.1663203196+27b3447e",
4
4
  "description": "A Pulumi package for creating and managing mongodbatlas cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -11,7 +11,7 @@
11
11
  "license": "Apache-2.0",
12
12
  "scripts": {
13
13
  "build": "tsc",
14
- "install": "node scripts/install-pulumi-plugin.js resource mongodbatlas v3.6.0-alpha.1663014864+505ddb6b"
14
+ "install": "node scripts/install-pulumi-plugin.js resource mongodbatlas v3.6.0-alpha.1663203196+27b3447e"
15
15
  },
16
16
  "dependencies": {
17
17
  "@pulumi/pulumi": "^3.0.0"
package/types/input.d.ts CHANGED
@@ -102,6 +102,7 @@ export interface AdvancedClusterReplicationSpec {
102
102
  containerId?: pulumi.Input<{
103
103
  [key: string]: pulumi.Input<string>;
104
104
  }>;
105
+ id?: pulumi.Input<string>;
105
106
  /**
106
107
  * Provide this value if you set a `clusterType` of SHARDED or GEOSHARDED. Omit this value if you selected a `clusterType` of REPLICASET. This API resource accepts 1 through 50, inclusive. This parameter defaults to 1. If you specify a `numShards` value of 1 and a `clusterType` of SHARDED, Atlas deploys a single-shard [sharded cluster](https://docs.atlas.mongodb.com/reference/glossary/#std-term-sharded-cluster). Don't create a sharded cluster with a single shard for production environments. Single-shard sharded clusters don't provide the same benefits as multi-shard configurations.
107
108
  */
@@ -444,6 +445,7 @@ export interface CloudBackupSchedulePolicyItemDaily {
444
445
  * Frequency associated with the export snapshot item.
445
446
  */
446
447
  frequencyType?: pulumi.Input<string>;
448
+ id?: pulumi.Input<string>;
447
449
  /**
448
450
  * Scope of the backup policy item: days, weeks, or months.
449
451
  */
@@ -481,6 +483,7 @@ export interface CloudBackupSchedulePolicyItemMonthly {
481
483
  * Frequency associated with the export snapshot item.
482
484
  */
483
485
  frequencyType?: pulumi.Input<string>;
486
+ id?: pulumi.Input<string>;
484
487
  /**
485
488
  * Scope of the backup policy item: days, weeks, or months.
486
489
  */
@@ -499,6 +502,7 @@ export interface CloudBackupSchedulePolicyItemWeekly {
499
502
  * Frequency associated with the export snapshot item.
500
503
  */
501
504
  frequencyType?: pulumi.Input<string>;
505
+ id?: pulumi.Input<string>;
502
506
  /**
503
507
  * Scope of the backup policy item: days, weeks, or months.
504
508
  */
@@ -533,6 +537,10 @@ export interface CloudBackupSnapshotMember {
533
537
  * Cloud provider that stores this snapshot.
534
538
  */
535
539
  cloudProvider?: pulumi.Input<string>;
540
+ /**
541
+ * Unique identifier for the sharded cluster snapshot.
542
+ */
543
+ id?: pulumi.Input<string>;
536
544
  /**
537
545
  * Label given to a shard or config server from which Atlas took this snapshot.
538
546
  */
@@ -574,11 +582,13 @@ export interface CloudProviderAccessSetupAwsConfig {
574
582
  atlasAwsAccountArn?: pulumi.Input<string>;
575
583
  }
576
584
  export interface CloudProviderSnapshotBackupPolicyPolicy {
585
+ id: pulumi.Input<string>;
577
586
  policyItems: pulumi.Input<pulumi.Input<inputs.CloudProviderSnapshotBackupPolicyPolicyPolicyItem>[]>;
578
587
  }
579
588
  export interface CloudProviderSnapshotBackupPolicyPolicyPolicyItem {
580
589
  frequencyInterval: pulumi.Input<number>;
581
590
  frequencyType: pulumi.Input<string>;
591
+ id: pulumi.Input<string>;
582
592
  retentionUnit: pulumi.Input<string>;
583
593
  retentionValue: pulumi.Input<number>;
584
594
  }
@@ -752,11 +762,19 @@ export interface ClusterSnapshotBackupPolicy {
752
762
  updateSnapshots?: pulumi.Input<boolean>;
753
763
  }
754
764
  export interface ClusterSnapshotBackupPolicyPolicy {
765
+ /**
766
+ * Unique identifer of the replication document for a zone in a Global Cluster.
767
+ */
768
+ id?: pulumi.Input<string>;
755
769
  policyItems?: pulumi.Input<pulumi.Input<inputs.ClusterSnapshotBackupPolicyPolicyPolicyItem>[]>;
756
770
  }
757
771
  export interface ClusterSnapshotBackupPolicyPolicyPolicyItem {
758
772
  frequencyInterval?: pulumi.Input<number>;
759
773
  frequencyType?: pulumi.Input<string>;
774
+ /**
775
+ * Unique identifer of the replication document for a zone in a Global Cluster.
776
+ */
777
+ id?: pulumi.Input<string>;
760
778
  retentionUnit?: pulumi.Input<string>;
761
779
  retentionValue?: pulumi.Input<number>;
762
780
  }
@@ -1172,6 +1190,7 @@ export interface ServerlessInstanceLink {
1172
1190
  export interface X509AuthenticationDatabaseUserCertificate {
1173
1191
  createdAt?: pulumi.Input<string>;
1174
1192
  groupId?: pulumi.Input<string>;
1193
+ id?: pulumi.Input<number>;
1175
1194
  notAfter?: pulumi.Input<string>;
1176
1195
  subject?: pulumi.Input<string>;
1177
1196
  }
package/types/output.d.ts CHANGED
@@ -101,6 +101,7 @@ export interface AdvancedClusterReplicationSpec {
101
101
  containerId: {
102
102
  [key: string]: string;
103
103
  };
104
+ id: string;
104
105
  /**
105
106
  * Provide this value if you set a `clusterType` of SHARDED or GEOSHARDED. Omit this value if you selected a `clusterType` of REPLICASET. This API resource accepts 1 through 50, inclusive. This parameter defaults to 1. If you specify a `numShards` value of 1 and a `clusterType` of SHARDED, Atlas deploys a single-shard [sharded cluster](https://docs.atlas.mongodb.com/reference/glossary/#std-term-sharded-cluster). Don't create a sharded cluster with a single shard for production environments. Single-shard sharded clusters don't provide the same benefits as multi-shard configurations.
106
107
  */
@@ -443,6 +444,7 @@ export interface CloudBackupSchedulePolicyItemDaily {
443
444
  * Frequency associated with the export snapshot item.
444
445
  */
445
446
  frequencyType: string;
447
+ id: string;
446
448
  /**
447
449
  * Scope of the backup policy item: days, weeks, or months.
448
450
  */
@@ -480,6 +482,7 @@ export interface CloudBackupSchedulePolicyItemMonthly {
480
482
  * Frequency associated with the export snapshot item.
481
483
  */
482
484
  frequencyType: string;
485
+ id: string;
483
486
  /**
484
487
  * Scope of the backup policy item: days, weeks, or months.
485
488
  */
@@ -498,6 +501,7 @@ export interface CloudBackupSchedulePolicyItemWeekly {
498
501
  * Frequency associated with the export snapshot item.
499
502
  */
500
503
  frequencyType: string;
504
+ id: string;
501
505
  /**
502
506
  * Scope of the backup policy item: days, weeks, or months.
503
507
  */
@@ -532,6 +536,10 @@ export interface CloudBackupSnapshotMember {
532
536
  * Cloud provider that stores this snapshot.
533
537
  */
534
538
  cloudProvider: string;
539
+ /**
540
+ * Unique identifier for the sharded cluster snapshot.
541
+ */
542
+ id: string;
535
543
  /**
536
544
  * Label given to a shard or config server from which Atlas took this snapshot.
537
545
  */
@@ -573,11 +581,13 @@ export interface CloudProviderAccessSetupAwsConfig {
573
581
  atlasAwsAccountArn: string;
574
582
  }
575
583
  export interface CloudProviderSnapshotBackupPolicyPolicy {
584
+ id: string;
576
585
  policyItems: outputs.CloudProviderSnapshotBackupPolicyPolicyPolicyItem[];
577
586
  }
578
587
  export interface CloudProviderSnapshotBackupPolicyPolicyPolicyItem {
579
588
  frequencyInterval: number;
580
589
  frequencyType: string;
590
+ id: string;
581
591
  retentionUnit: string;
582
592
  retentionValue: number;
583
593
  }
@@ -751,11 +761,19 @@ export interface ClusterSnapshotBackupPolicy {
751
761
  updateSnapshots: boolean;
752
762
  }
753
763
  export interface ClusterSnapshotBackupPolicyPolicy {
764
+ /**
765
+ * Unique identifer of the replication document for a zone in a Global Cluster.
766
+ */
767
+ id: string;
754
768
  policyItems: outputs.ClusterSnapshotBackupPolicyPolicyPolicyItem[];
755
769
  }
756
770
  export interface ClusterSnapshotBackupPolicyPolicyPolicyItem {
757
771
  frequencyInterval: number;
758
772
  frequencyType: string;
773
+ /**
774
+ * Unique identifer of the replication document for a zone in a Global Cluster.
775
+ */
776
+ id: string;
759
777
  retentionUnit: string;
760
778
  retentionValue: number;
761
779
  }
@@ -2331,11 +2349,19 @@ export interface GetClusterSnapshotBackupPolicy {
2331
2349
  updateSnapshots: boolean;
2332
2350
  }
2333
2351
  export interface GetClusterSnapshotBackupPolicyPolicy {
2352
+ /**
2353
+ * Unique identifer of the replication document for a zone in a Global Cluster.
2354
+ */
2355
+ id: string;
2334
2356
  policyItems: outputs.GetClusterSnapshotBackupPolicyPolicyPolicyItem[];
2335
2357
  }
2336
2358
  export interface GetClusterSnapshotBackupPolicyPolicyPolicyItem {
2337
2359
  frequencyInterval: number;
2338
2360
  frequencyType: string;
2361
+ /**
2362
+ * Unique identifer of the replication document for a zone in a Global Cluster.
2363
+ */
2364
+ id: string;
2339
2365
  retentionUnit: string;
2340
2366
  retentionValue: number;
2341
2367
  }
@@ -2653,11 +2679,19 @@ export interface GetClustersResultSnapshotBackupPolicy {
2653
2679
  updateSnapshots: boolean;
2654
2680
  }
2655
2681
  export interface GetClustersResultSnapshotBackupPolicyPolicy {
2682
+ /**
2683
+ * Unique identifer of the replication document for a zone in a Global Cluster.
2684
+ */
2685
+ id: string;
2656
2686
  policyItems: outputs.GetClustersResultSnapshotBackupPolicyPolicyPolicyItem[];
2657
2687
  }
2658
2688
  export interface GetClustersResultSnapshotBackupPolicyPolicyPolicyItem {
2659
2689
  frequencyInterval: number;
2660
2690
  frequencyType: string;
2691
+ /**
2692
+ * Unique identifer of the replication document for a zone in a Global Cluster.
2693
+ */
2694
+ id: string;
2661
2695
  retentionUnit: string;
2662
2696
  retentionValue: number;
2663
2697
  }
@@ -4108,6 +4142,7 @@ export interface ServerlessInstanceLink {
4108
4142
  export interface X509AuthenticationDatabaseUserCertificate {
4109
4143
  createdAt: string;
4110
4144
  groupId: string;
4145
+ id: number;
4111
4146
  notAfter: string;
4112
4147
  subject: string;
4113
4148
  }