@pulumi/mongodbatlas 4.13.0 → 4.14.0-alpha.1786015913

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.
Files changed (61) hide show
  1. package/apiKeyProjectAssignment.d.ts +1 -1
  2. package/apiKeyProjectAssignment.js +1 -1
  3. package/flexCluster.d.ts +1 -1
  4. package/flexCluster.js +1 -1
  5. package/getApiKeyProjectAssignment.d.ts +2 -2
  6. package/getApiKeyProjectAssignment.js +2 -2
  7. package/getApiKeyProjectAssignments.d.ts +2 -2
  8. package/getApiKeyProjectAssignments.js +2 -2
  9. package/getFlexCluster.d.ts +2 -2
  10. package/getFlexCluster.js +2 -2
  11. package/getFlexClusters.d.ts +2 -2
  12. package/getFlexClusters.js +2 -2
  13. package/getProjectServiceAccountAccessListEntries.d.ts +2 -2
  14. package/getProjectServiceAccountAccessListEntries.js +2 -2
  15. package/getProjectServiceAccountAccessListEntry.d.ts +2 -2
  16. package/getProjectServiceAccountAccessListEntry.js +2 -2
  17. package/getProjectServiceAccountSecret.d.ts +2 -2
  18. package/getProjectServiceAccountSecret.js +2 -2
  19. package/getPushBasedLogExport.d.ts +2 -2
  20. package/getPushBasedLogExport.js +2 -2
  21. package/getSearchDeployment.d.ts +4 -4
  22. package/getSearchDeployment.js +4 -4
  23. package/getServiceAccountAccessListEntries.d.ts +2 -2
  24. package/getServiceAccountAccessListEntries.js +2 -2
  25. package/getServiceAccountAccessListEntry.d.ts +2 -2
  26. package/getServiceAccountAccessListEntry.js +2 -2
  27. package/getServiceAccountProjectAssignment.d.ts +2 -2
  28. package/getServiceAccountProjectAssignment.js +2 -2
  29. package/getServiceAccountProjectAssignments.d.ts +2 -2
  30. package/getServiceAccountProjectAssignments.js +2 -2
  31. package/getServiceAccountSecret.d.ts +2 -2
  32. package/getServiceAccountSecret.js +2 -2
  33. package/getStreamPrivatelinkEndpoint.d.ts +4 -4
  34. package/getStreamPrivatelinkEndpoint.js +4 -4
  35. package/getStreamPrivatelinkEndpoints.d.ts +4 -4
  36. package/getStreamPrivatelinkEndpoints.js +4 -4
  37. package/getStreamProcessor.d.ts +2 -2
  38. package/getStreamProcessor.js +2 -2
  39. package/getStreamProcessors.d.ts +2 -2
  40. package/getStreamProcessors.js +2 -2
  41. package/package.json +2 -2
  42. package/projectServiceAccountAccessListEntry.d.ts +1 -1
  43. package/projectServiceAccountAccessListEntry.js +1 -1
  44. package/projectServiceAccountSecret.d.ts +1 -1
  45. package/projectServiceAccountSecret.js +1 -1
  46. package/pushBasedLogExport.d.ts +1 -1
  47. package/pushBasedLogExport.js +1 -1
  48. package/searchDeployment.d.ts +2 -2
  49. package/searchDeployment.js +2 -2
  50. package/serviceAccountAccessListEntry.d.ts +1 -1
  51. package/serviceAccountAccessListEntry.js +1 -1
  52. package/serviceAccountProjectAssignment.d.ts +1 -1
  53. package/serviceAccountProjectAssignment.js +1 -1
  54. package/serviceAccountSecret.d.ts +1 -1
  55. package/serviceAccountSecret.js +1 -1
  56. package/streamConnection.d.ts +2 -2
  57. package/streamConnection.js +2 -2
  58. package/streamPrivatelinkEndpoint.d.ts +2 -2
  59. package/streamPrivatelinkEndpoint.js +2 -2
  60. package/streamProcessor.d.ts +1 -1
  61. package/streamProcessor.js +1 -1
@@ -48,7 +48,7 @@ import * as pulumi from "@pulumi/pulumi";
48
48
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
49
49
  * projectId: firstProject.id,
50
50
  * });
51
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
51
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
52
52
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
53
53
  * ```
54
54
  *
@@ -77,7 +77,7 @@ const utilities = __importStar(require("./utilities"));
77
77
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
78
78
  * projectId: firstProject.id,
79
79
  * });
80
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
80
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
81
81
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
82
82
  * ```
83
83
  *
package/flexCluster.d.ts CHANGED
@@ -30,7 +30,7 @@ import * as outputs from "./types/output";
30
30
  * const example_clusters = mongodbatlas.getFlexClusters({
31
31
  * projectId: projectId,
32
32
  * });
33
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
33
+ * export const mongodbatlasFlexCluster = example_cluster.name;
34
34
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
35
35
  * ```
36
36
  *
package/flexCluster.js CHANGED
@@ -57,7 +57,7 @@ const utilities = __importStar(require("./utilities"));
57
57
  * const example_clusters = mongodbatlas.getFlexClusters({
58
58
  * projectId: projectId,
59
59
  * });
60
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
60
+ * export const mongodbatlasFlexCluster = example_cluster.name;
61
61
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
62
62
  * ```
63
63
  *
@@ -48,7 +48,7 @@ import * as pulumi from "@pulumi/pulumi";
48
48
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
49
49
  * projectId: firstProject.id,
50
50
  * });
51
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
51
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
52
52
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
53
53
  * ```
54
54
  */
@@ -132,7 +132,7 @@ export interface GetApiKeyProjectAssignmentResult {
132
132
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
133
133
  * projectId: firstProject.id,
134
134
  * });
135
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
135
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
136
136
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
137
137
  * ```
138
138
  */
@@ -77,7 +77,7 @@ const utilities = __importStar(require("./utilities"));
77
77
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
78
78
  * projectId: firstProject.id,
79
79
  * });
80
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
80
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
81
81
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
82
82
  * ```
83
83
  */
@@ -138,7 +138,7 @@ exports.getApiKeyProjectAssignment = getApiKeyProjectAssignment;
138
138
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
139
139
  * projectId: firstProject.id,
140
140
  * });
141
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
141
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
142
142
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
143
143
  * ```
144
144
  */
@@ -49,7 +49,7 @@ import * as outputs from "./types/output";
49
49
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
50
50
  * projectId: firstProject.id,
51
51
  * });
52
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
52
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
53
53
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
54
54
  * ```
55
55
  */
@@ -125,7 +125,7 @@ export interface GetApiKeyProjectAssignmentsResult {
125
125
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
126
126
  * projectId: firstProject.id,
127
127
  * });
128
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
128
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
129
129
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
130
130
  * ```
131
131
  */
@@ -77,7 +77,7 @@ const utilities = __importStar(require("./utilities"));
77
77
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
78
78
  * projectId: firstProject.id,
79
79
  * });
80
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
80
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
81
81
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
82
82
  * ```
83
83
  */
@@ -137,7 +137,7 @@ exports.getApiKeyProjectAssignments = getApiKeyProjectAssignments;
137
137
  * const allAssignments = mongodbatlas.getApiKeyProjectAssignmentsOutput({
138
138
  * projectId: firstProject.id,
139
139
  * });
140
- * export const firstAssignmentProjectId = firstAssignment.apply(firstAssignment => firstAssignment.projectId);
140
+ * export const firstAssignmentProjectId = firstAssignment.projectId;
141
141
  * export const allAssignmentsProjectIds = allAssignments.apply(allAssignments => .map(assignment => (assignment.projectId)));
142
142
  * ```
143
143
  */
@@ -28,7 +28,7 @@ import * as outputs from "./types/output";
28
28
  * const example_clusters = mongodbatlas.getFlexClusters({
29
29
  * projectId: projectId,
30
30
  * });
31
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
31
+ * export const mongodbatlasFlexCluster = example_cluster.name;
32
32
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
33
33
  * ```
34
34
  */
@@ -133,7 +133,7 @@ export interface GetFlexClusterResult {
133
133
  * const example_clusters = mongodbatlas.getFlexClusters({
134
134
  * projectId: projectId,
135
135
  * });
136
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
136
+ * export const mongodbatlasFlexCluster = example_cluster.name;
137
137
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
138
138
  * ```
139
139
  */
package/getFlexCluster.js CHANGED
@@ -56,7 +56,7 @@ const utilities = __importStar(require("./utilities"));
56
56
  * const example_clusters = mongodbatlas.getFlexClusters({
57
57
  * projectId: projectId,
58
58
  * });
59
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
59
+ * export const mongodbatlasFlexCluster = example_cluster.name;
60
60
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
61
61
  * ```
62
62
  */
@@ -96,7 +96,7 @@ exports.getFlexCluster = getFlexCluster;
96
96
  * const example_clusters = mongodbatlas.getFlexClusters({
97
97
  * projectId: projectId,
98
98
  * });
99
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
99
+ * export const mongodbatlasFlexCluster = example_cluster.name;
100
100
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
101
101
  * ```
102
102
  */
@@ -28,7 +28,7 @@ import * as outputs from "./types/output";
28
28
  * const example_clusters = mongodbatlas.getFlexClusters({
29
29
  * projectId: projectId,
30
30
  * });
31
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
31
+ * export const mongodbatlasFlexCluster = example_cluster.name;
32
32
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
33
33
  * ```
34
34
  */
@@ -83,7 +83,7 @@ export interface GetFlexClustersResult {
83
83
  * const example_clusters = mongodbatlas.getFlexClusters({
84
84
  * projectId: projectId,
85
85
  * });
86
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
86
+ * export const mongodbatlasFlexCluster = example_cluster.name;
87
87
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
88
88
  * ```
89
89
  */
@@ -56,7 +56,7 @@ const utilities = __importStar(require("./utilities"));
56
56
  * const example_clusters = mongodbatlas.getFlexClusters({
57
57
  * projectId: projectId,
58
58
  * });
59
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
59
+ * export const mongodbatlasFlexCluster = example_cluster.name;
60
60
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
61
61
  * ```
62
62
  */
@@ -95,7 +95,7 @@ exports.getFlexClusters = getFlexClusters;
95
95
  * const example_clusters = mongodbatlas.getFlexClusters({
96
96
  * projectId: projectId,
97
97
  * });
98
- * export const mongodbatlasFlexCluster = example_cluster.apply(example_cluster => example_cluster.name);
98
+ * export const mongodbatlasFlexCluster = example_cluster.name;
99
99
  * export const mongodbatlasFlexClustersNames = example_clusters.then(example_clusters => .map(cluster => (cluster.name)));
100
100
  * ```
101
101
  */
@@ -40,7 +40,7 @@ import * as outputs from "./types/output";
40
40
  * clientId: cidr.clientId,
41
41
  * cidrBlock: cidr.cidrBlock,
42
42
  * });
43
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
43
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
44
44
  * // Data source to read all Access List entries for the Project Service Account
45
45
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
46
46
  * projectId: thisProjectServiceAccount.projectId,
@@ -120,7 +120,7 @@ export interface GetProjectServiceAccountAccessListEntriesResult {
120
120
  * clientId: cidr.clientId,
121
121
  * cidrBlock: cidr.cidrBlock,
122
122
  * });
123
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
123
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
124
124
  * // Data source to read all Access List entries for the Project Service Account
125
125
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
126
126
  * projectId: thisProjectServiceAccount.projectId,
@@ -68,7 +68,7 @@ const utilities = __importStar(require("./utilities"));
68
68
  * clientId: cidr.clientId,
69
69
  * cidrBlock: cidr.cidrBlock,
70
70
  * });
71
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
71
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
72
72
  * // Data source to read all Access List entries for the Project Service Account
73
73
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
74
74
  * projectId: thisProjectServiceAccount.projectId,
@@ -125,7 +125,7 @@ exports.getProjectServiceAccountAccessListEntries = getProjectServiceAccountAcce
125
125
  * clientId: cidr.clientId,
126
126
  * cidrBlock: cidr.cidrBlock,
127
127
  * });
128
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
128
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
129
129
  * // Data source to read all Access List entries for the Project Service Account
130
130
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
131
131
  * projectId: thisProjectServiceAccount.projectId,
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
39
39
  * clientId: cidr.clientId,
40
40
  * cidrBlock: cidr.cidrBlock,
41
41
  * });
42
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
42
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
43
43
  * // Data source to read all Access List entries for the Project Service Account
44
44
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
45
45
  * projectId: thisProjectServiceAccount.projectId,
@@ -147,7 +147,7 @@ export interface GetProjectServiceAccountAccessListEntryResult {
147
147
  * clientId: cidr.clientId,
148
148
  * cidrBlock: cidr.cidrBlock,
149
149
  * });
150
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
150
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
151
151
  * // Data source to read all Access List entries for the Project Service Account
152
152
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
153
153
  * projectId: thisProjectServiceAccount.projectId,
@@ -68,7 +68,7 @@ const utilities = __importStar(require("./utilities"));
68
68
  * clientId: cidr.clientId,
69
69
  * cidrBlock: cidr.cidrBlock,
70
70
  * });
71
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
71
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
72
72
  * // Data source to read all Access List entries for the Project Service Account
73
73
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
74
74
  * projectId: thisProjectServiceAccount.projectId,
@@ -127,7 +127,7 @@ exports.getProjectServiceAccountAccessListEntry = getProjectServiceAccountAccess
127
127
  * clientId: cidr.clientId,
128
128
  * cidrBlock: cidr.cidrBlock,
129
129
  * });
130
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
130
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
131
131
  * // Data source to read all Access List entries for the Project Service Account
132
132
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
133
133
  * projectId: thisProjectServiceAccount.projectId,
@@ -30,7 +30,7 @@ import * as pulumi from "@pulumi/pulumi";
30
30
  * });
31
31
  * export const secretId = thisProjectServiceAccountSecret.secretId;
32
32
  * export const secret = thisProjectServiceAccountSecret.secret;
33
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
33
+ * export const secretExpiresAt = _this.expiresAt;
34
34
  * ```
35
35
  */
36
36
  export declare function getProjectServiceAccountSecret(args: GetProjectServiceAccountSecretArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectServiceAccountSecretResult>;
@@ -115,7 +115,7 @@ export interface GetProjectServiceAccountSecretResult {
115
115
  * });
116
116
  * export const secretId = thisProjectServiceAccountSecret.secretId;
117
117
  * export const secret = thisProjectServiceAccountSecret.secret;
118
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
118
+ * export const secretExpiresAt = _this.expiresAt;
119
119
  * ```
120
120
  */
121
121
  export declare function getProjectServiceAccountSecretOutput(args: GetProjectServiceAccountSecretOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectServiceAccountSecretResult>;
@@ -59,7 +59,7 @@ const utilities = __importStar(require("./utilities"));
59
59
  * });
60
60
  * export const secretId = thisProjectServiceAccountSecret.secretId;
61
61
  * export const secret = thisProjectServiceAccountSecret.secret;
62
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
62
+ * export const secretExpiresAt = _this.expiresAt;
63
63
  * ```
64
64
  */
65
65
  function getProjectServiceAccountSecret(args, opts) {
@@ -102,7 +102,7 @@ exports.getProjectServiceAccountSecret = getProjectServiceAccountSecret;
102
102
  * });
103
103
  * export const secretId = thisProjectServiceAccountSecret.secretId;
104
104
  * export const secret = thisProjectServiceAccountSecret.secret;
105
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
105
+ * export const secretExpiresAt = _this.expiresAt;
106
106
  * ```
107
107
  */
108
108
  function getProjectServiceAccountSecretOutput(args, opts) {
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
39
39
  * projectId: testPushBasedLogExport.projectId,
40
40
  * });
41
41
  * return {
42
- * test: test.apply(test => test.prefixPath),
42
+ * test: test.prefixPath,
43
43
  * };
44
44
  * }
45
45
  * ```
@@ -123,7 +123,7 @@ export interface GetPushBasedLogExportResult {
123
123
  * projectId: testPushBasedLogExport.projectId,
124
124
  * });
125
125
  * return {
126
- * test: test.apply(test => test.prefixPath),
126
+ * test: test.prefixPath,
127
127
  * };
128
128
  * }
129
129
  * ```
@@ -68,7 +68,7 @@ const utilities = __importStar(require("./utilities"));
68
68
  * projectId: testPushBasedLogExport.projectId,
69
69
  * });
70
70
  * return {
71
- * test: test.apply(test => test.prefixPath),
71
+ * test: test.prefixPath,
72
72
  * };
73
73
  * }
74
74
  * ```
@@ -120,7 +120,7 @@ exports.getPushBasedLogExport = getPushBasedLogExport;
120
120
  * projectId: testPushBasedLogExport.projectId,
121
121
  * });
122
122
  * return {
123
- * test: test.apply(test => test.prefixPath),
123
+ * test: test.prefixPath,
124
124
  * };
125
125
  * }
126
126
  * ```
@@ -42,8 +42,8 @@ import * as outputs from "./types/output";
42
42
  * projectId: exampleSearchDeployment.projectId,
43
43
  * clusterName: exampleSearchDeployment.clusterName,
44
44
  * });
45
- * export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
46
- * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
45
+ * export const mongodbatlasSearchDeploymentId = example.id;
46
+ * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.encryptionAtRestProvider;
47
47
  * ```
48
48
  */
49
49
  export declare function getSearchDeployment(args: GetSearchDeploymentArgs, opts?: pulumi.InvokeOptions): Promise<GetSearchDeploymentResult>;
@@ -131,8 +131,8 @@ export interface GetSearchDeploymentResult {
131
131
  * projectId: exampleSearchDeployment.projectId,
132
132
  * clusterName: exampleSearchDeployment.clusterName,
133
133
  * });
134
- * export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
135
- * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
134
+ * export const mongodbatlasSearchDeploymentId = example.id;
135
+ * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.encryptionAtRestProvider;
136
136
  * ```
137
137
  */
138
138
  export declare function getSearchDeploymentOutput(args: GetSearchDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSearchDeploymentResult>;
@@ -70,8 +70,8 @@ const utilities = __importStar(require("./utilities"));
70
70
  * projectId: exampleSearchDeployment.projectId,
71
71
  * clusterName: exampleSearchDeployment.clusterName,
72
72
  * });
73
- * export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
74
- * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
73
+ * export const mongodbatlasSearchDeploymentId = example.id;
74
+ * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.encryptionAtRestProvider;
75
75
  * ```
76
76
  */
77
77
  function getSearchDeployment(args, opts) {
@@ -124,8 +124,8 @@ exports.getSearchDeployment = getSearchDeployment;
124
124
  * projectId: exampleSearchDeployment.projectId,
125
125
  * clusterName: exampleSearchDeployment.clusterName,
126
126
  * });
127
- * export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
128
- * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
127
+ * export const mongodbatlasSearchDeploymentId = example.id;
128
+ * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.encryptionAtRestProvider;
129
129
  * ```
130
130
  */
131
131
  function getSearchDeploymentOutput(args, opts) {
@@ -40,7 +40,7 @@ import * as outputs from "./types/output";
40
40
  * clientId: cidr.clientId,
41
41
  * cidrBlock: cidr.cidrBlock,
42
42
  * });
43
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
43
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
44
44
  * // Data source to read all Access List entries for the Service Account
45
45
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
46
46
  * orgId: thisServiceAccount.orgId,
@@ -120,7 +120,7 @@ export interface GetServiceAccountAccessListEntriesResult {
120
120
  * clientId: cidr.clientId,
121
121
  * cidrBlock: cidr.cidrBlock,
122
122
  * });
123
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
123
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
124
124
  * // Data source to read all Access List entries for the Service Account
125
125
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
126
126
  * orgId: thisServiceAccount.orgId,
@@ -68,7 +68,7 @@ const utilities = __importStar(require("./utilities"));
68
68
  * clientId: cidr.clientId,
69
69
  * cidrBlock: cidr.cidrBlock,
70
70
  * });
71
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
71
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
72
72
  * // Data source to read all Access List entries for the Service Account
73
73
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
74
74
  * orgId: thisServiceAccount.orgId,
@@ -125,7 +125,7 @@ exports.getServiceAccountAccessListEntries = getServiceAccountAccessListEntries;
125
125
  * clientId: cidr.clientId,
126
126
  * cidrBlock: cidr.cidrBlock,
127
127
  * });
128
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
128
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
129
129
  * // Data source to read all Access List entries for the Service Account
130
130
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
131
131
  * orgId: thisServiceAccount.orgId,
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
39
39
  * clientId: cidr.clientId,
40
40
  * cidrBlock: cidr.cidrBlock,
41
41
  * });
42
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
42
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
43
43
  * // Data source to read all Access List entries for the Service Account
44
44
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
45
45
  * orgId: thisServiceAccount.orgId,
@@ -147,7 +147,7 @@ export interface GetServiceAccountAccessListEntryResult {
147
147
  * clientId: cidr.clientId,
148
148
  * cidrBlock: cidr.cidrBlock,
149
149
  * });
150
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
150
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
151
151
  * // Data source to read all Access List entries for the Service Account
152
152
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
153
153
  * orgId: thisServiceAccount.orgId,
@@ -68,7 +68,7 @@ const utilities = __importStar(require("./utilities"));
68
68
  * clientId: cidr.clientId,
69
69
  * cidrBlock: cidr.cidrBlock,
70
70
  * });
71
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
71
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
72
72
  * // Data source to read all Access List entries for the Service Account
73
73
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
74
74
  * orgId: thisServiceAccount.orgId,
@@ -127,7 +127,7 @@ exports.getServiceAccountAccessListEntry = getServiceAccountAccessListEntry;
127
127
  * clientId: cidr.clientId,
128
128
  * cidrBlock: cidr.cidrBlock,
129
129
  * });
130
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
130
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
131
131
  * // Data source to read all Access List entries for the Service Account
132
132
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
133
133
  * orgId: thisServiceAccount.orgId,
@@ -32,7 +32,7 @@ import * as pulumi from "@pulumi/pulumi";
32
32
  * orgId: orgId,
33
33
  * clientId: thisServiceAccount.clientId,
34
34
  * });
35
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
35
+ * export const serviceAccountProjectRoles = _this.roles;
36
36
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
37
37
  * ```
38
38
  */
@@ -100,7 +100,7 @@ export interface GetServiceAccountProjectAssignmentResult {
100
100
  * orgId: orgId,
101
101
  * clientId: thisServiceAccount.clientId,
102
102
  * });
103
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
103
+ * export const serviceAccountProjectRoles = _this.roles;
104
104
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
105
105
  * ```
106
106
  */
@@ -61,7 +61,7 @@ const utilities = __importStar(require("./utilities"));
61
61
  * orgId: orgId,
62
62
  * clientId: thisServiceAccount.clientId,
63
63
  * });
64
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
64
+ * export const serviceAccountProjectRoles = _this.roles;
65
65
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
66
66
  * ```
67
67
  */
@@ -106,7 +106,7 @@ exports.getServiceAccountProjectAssignment = getServiceAccountProjectAssignment;
106
106
  * orgId: orgId,
107
107
  * clientId: thisServiceAccount.clientId,
108
108
  * });
109
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
109
+ * export const serviceAccountProjectRoles = _this.roles;
110
110
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
111
111
  * ```
112
112
  */
@@ -33,7 +33,7 @@ import * as outputs from "./types/output";
33
33
  * orgId: orgId,
34
34
  * clientId: thisServiceAccount.clientId,
35
35
  * });
36
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
36
+ * export const serviceAccountProjectRoles = _this.roles;
37
37
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
38
38
  * ```
39
39
  */
@@ -101,7 +101,7 @@ export interface GetServiceAccountProjectAssignmentsResult {
101
101
  * orgId: orgId,
102
102
  * clientId: thisServiceAccount.clientId,
103
103
  * });
104
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
104
+ * export const serviceAccountProjectRoles = _this.roles;
105
105
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
106
106
  * ```
107
107
  */
@@ -61,7 +61,7 @@ const utilities = __importStar(require("./utilities"));
61
61
  * orgId: orgId,
62
62
  * clientId: thisServiceAccount.clientId,
63
63
  * });
64
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
64
+ * export const serviceAccountProjectRoles = _this.roles;
65
65
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
66
66
  * ```
67
67
  */
@@ -106,7 +106,7 @@ exports.getServiceAccountProjectAssignments = getServiceAccountProjectAssignment
106
106
  * orgId: orgId,
107
107
  * clientId: thisServiceAccount.clientId,
108
108
  * });
109
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
109
+ * export const serviceAccountProjectRoles = _this.roles;
110
110
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
111
111
  * ```
112
112
  */
@@ -29,7 +29,7 @@ import * as pulumi from "@pulumi/pulumi";
29
29
  * });
30
30
  * export const secretId = thisServiceAccountSecret.secretId;
31
31
  * export const secret = thisServiceAccountSecret.secret;
32
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
32
+ * export const secretExpiresAt = _this.expiresAt;
33
33
  * ```
34
34
  */
35
35
  export declare function getServiceAccountSecret(args: GetServiceAccountSecretArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceAccountSecretResult>;
@@ -113,7 +113,7 @@ export interface GetServiceAccountSecretResult {
113
113
  * });
114
114
  * export const secretId = thisServiceAccountSecret.secretId;
115
115
  * export const secret = thisServiceAccountSecret.secret;
116
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
116
+ * export const secretExpiresAt = _this.expiresAt;
117
117
  * ```
118
118
  */
119
119
  export declare function getServiceAccountSecretOutput(args: GetServiceAccountSecretOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceAccountSecretResult>;
@@ -58,7 +58,7 @@ const utilities = __importStar(require("./utilities"));
58
58
  * });
59
59
  * export const secretId = thisServiceAccountSecret.secretId;
60
60
  * export const secret = thisServiceAccountSecret.secret;
61
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
61
+ * export const secretExpiresAt = _this.expiresAt;
62
62
  * ```
63
63
  */
64
64
  function getServiceAccountSecret(args, opts) {
@@ -100,7 +100,7 @@ exports.getServiceAccountSecret = getServiceAccountSecret;
100
100
  * });
101
101
  * export const secretId = thisServiceAccountSecret.secretId;
102
102
  * export const secret = thisServiceAccountSecret.secret;
103
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
103
+ * export const secretExpiresAt = _this.expiresAt;
104
104
  * ```
105
105
  */
106
106
  function getServiceAccountSecretOutput(args, opts) {
@@ -64,7 +64,7 @@ import * as pulumi from "@pulumi/pulumi";
64
64
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
65
65
  * });
66
66
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
67
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
67
+ * export const privatelinkEndpointState = gcpConfluent.state;
68
68
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
69
69
  * ```
70
70
  *
@@ -102,7 +102,7 @@ import * as pulumi from "@pulumi/pulumi";
102
102
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
103
103
  * });
104
104
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
105
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
105
+ * export const privatelinkEndpointState = gcpPubsub.state;
106
106
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
107
107
  * ```
108
108
  *
@@ -239,7 +239,7 @@ export interface GetStreamPrivatelinkEndpointResult {
239
239
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
240
240
  * });
241
241
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
242
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
242
+ * export const privatelinkEndpointState = gcpConfluent.state;
243
243
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
244
244
  * ```
245
245
  *
@@ -277,7 +277,7 @@ export interface GetStreamPrivatelinkEndpointResult {
277
277
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
278
278
  * });
279
279
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
280
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
280
+ * export const privatelinkEndpointState = gcpPubsub.state;
281
281
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
282
282
  * ```
283
283
  *
@@ -93,7 +93,7 @@ const utilities = __importStar(require("./utilities"));
93
93
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
94
94
  * });
95
95
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
96
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
96
+ * export const privatelinkEndpointState = gcpConfluent.state;
97
97
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
98
98
  * ```
99
99
  *
@@ -131,7 +131,7 @@ const utilities = __importStar(require("./utilities"));
131
131
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
132
132
  * });
133
133
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
134
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
134
+ * export const privatelinkEndpointState = gcpPubsub.state;
135
135
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
136
136
  * ```
137
137
  *
@@ -248,7 +248,7 @@ exports.getStreamPrivatelinkEndpoint = getStreamPrivatelinkEndpoint;
248
248
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
249
249
  * });
250
250
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
251
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
251
+ * export const privatelinkEndpointState = gcpConfluent.state;
252
252
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
253
253
  * ```
254
254
  *
@@ -286,7 +286,7 @@ exports.getStreamPrivatelinkEndpoint = getStreamPrivatelinkEndpoint;
286
286
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
287
287
  * });
288
288
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
289
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
289
+ * export const privatelinkEndpointState = gcpPubsub.state;
290
290
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
291
291
  * ```
292
292
  *
@@ -65,7 +65,7 @@ import * as outputs from "./types/output";
65
65
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
66
66
  * });
67
67
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
68
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
68
+ * export const privatelinkEndpointState = gcpConfluent.state;
69
69
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
70
70
  * ```
71
71
  *
@@ -103,7 +103,7 @@ import * as outputs from "./types/output";
103
103
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
104
104
  * });
105
105
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
106
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
106
+ * export const privatelinkEndpointState = gcpPubsub.state;
107
107
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
108
108
  * ```
109
109
  *
@@ -226,7 +226,7 @@ export interface GetStreamPrivatelinkEndpointsResult {
226
226
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
227
227
  * });
228
228
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
229
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
229
+ * export const privatelinkEndpointState = gcpConfluent.state;
230
230
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
231
231
  * ```
232
232
  *
@@ -264,7 +264,7 @@ export interface GetStreamPrivatelinkEndpointsResult {
264
264
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
265
265
  * });
266
266
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
267
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
267
+ * export const privatelinkEndpointState = gcpPubsub.state;
268
268
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
269
269
  * ```
270
270
  *
@@ -93,7 +93,7 @@ const utilities = __importStar(require("./utilities"));
93
93
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
94
94
  * });
95
95
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
96
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
96
+ * export const privatelinkEndpointState = gcpConfluent.state;
97
97
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
98
98
  * ```
99
99
  *
@@ -131,7 +131,7 @@ const utilities = __importStar(require("./utilities"));
131
131
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
132
132
  * });
133
133
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
134
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
134
+ * export const privatelinkEndpointState = gcpPubsub.state;
135
135
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
136
136
  * ```
137
137
  *
@@ -247,7 +247,7 @@ exports.getStreamPrivatelinkEndpoints = getStreamPrivatelinkEndpoints;
247
247
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
248
248
  * });
249
249
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
250
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
250
+ * export const privatelinkEndpointState = gcpConfluent.state;
251
251
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
252
252
  * ```
253
253
  *
@@ -285,7 +285,7 @@ exports.getStreamPrivatelinkEndpoints = getStreamPrivatelinkEndpoints;
285
285
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
286
286
  * });
287
287
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
288
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
288
+ * export const privatelinkEndpointState = gcpPubsub.state;
289
289
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
290
290
  * ```
291
291
  *
@@ -136,7 +136,7 @@ import * as outputs from "./types/output";
136
136
  * workspaceName: example.instanceName,
137
137
  * processorName: stream_processor_sample_example.processorName,
138
138
  * });
139
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
139
+ * export const streamProcessorsState = example_stream_processor.state;
140
140
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
141
141
  * ```
142
142
  */
@@ -345,7 +345,7 @@ export interface GetStreamProcessorResult {
345
345
  * workspaceName: example.instanceName,
346
346
  * processorName: stream_processor_sample_example.processorName,
347
347
  * });
348
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
348
+ * export const streamProcessorsState = example_stream_processor.state;
349
349
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
350
350
  * ```
351
351
  */
@@ -164,7 +164,7 @@ const utilities = __importStar(require("./utilities"));
164
164
  * workspaceName: example.instanceName,
165
165
  * processorName: stream_processor_sample_example.processorName,
166
166
  * });
167
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
167
+ * export const streamProcessorsState = example_stream_processor.state;
168
168
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
169
169
  * ```
170
170
  */
@@ -314,7 +314,7 @@ exports.getStreamProcessor = getStreamProcessor;
314
314
  * workspaceName: example.instanceName,
315
315
  * processorName: stream_processor_sample_example.processorName,
316
316
  * });
317
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
317
+ * export const streamProcessorsState = example_stream_processor.state;
318
318
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
319
319
  * ```
320
320
  */
@@ -136,7 +136,7 @@ import * as outputs from "./types/output";
136
136
  * workspaceName: example.instanceName,
137
137
  * processorName: stream_processor_sample_example.processorName,
138
138
  * });
139
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
139
+ * export const streamProcessorsState = example_stream_processor.state;
140
140
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
141
141
  * ```
142
142
  */
@@ -319,7 +319,7 @@ export interface GetStreamProcessorsResult {
319
319
  * workspaceName: example.instanceName,
320
320
  * processorName: stream_processor_sample_example.processorName,
321
321
  * });
322
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
322
+ * export const streamProcessorsState = example_stream_processor.state;
323
323
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
324
324
  * ```
325
325
  */
@@ -164,7 +164,7 @@ const utilities = __importStar(require("./utilities"));
164
164
  * workspaceName: example.instanceName,
165
165
  * processorName: stream_processor_sample_example.processorName,
166
166
  * });
167
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
167
+ * export const streamProcessorsState = example_stream_processor.state;
168
168
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
169
169
  * ```
170
170
  */
@@ -313,7 +313,7 @@ exports.getStreamProcessors = getStreamProcessors;
313
313
  * workspaceName: example.instanceName,
314
314
  * processorName: stream_processor_sample_example.processorName,
315
315
  * });
316
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
316
+ * export const streamProcessorsState = example_stream_processor.state;
317
317
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
318
318
  * ```
319
319
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/mongodbatlas",
3
- "version": "4.13.0",
3
+ "version": "4.14.0-alpha.1786015913",
4
4
  "description": "A Pulumi package for creating and managing mongodbatlas cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "mongodbatlas",
26
- "version": "4.13.0"
26
+ "version": "4.14.0-alpha.1786015913"
27
27
  }
28
28
  }
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
39
39
  * clientId: cidr.clientId,
40
40
  * cidrBlock: cidr.cidrBlock,
41
41
  * });
42
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
42
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
43
43
  * // Data source to read all Access List entries for the Project Service Account
44
44
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
45
45
  * projectId: thisProjectServiceAccount.projectId,
@@ -68,7 +68,7 @@ const utilities = __importStar(require("./utilities"));
68
68
  * clientId: cidr.clientId,
69
69
  * cidrBlock: cidr.cidrBlock,
70
70
  * });
71
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
71
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
72
72
  * // Data source to read all Access List entries for the Project Service Account
73
73
  * const thisGetProjectServiceAccountAccessListEntries = mongodbatlas.getProjectServiceAccountAccessListEntriesOutput({
74
74
  * projectId: thisProjectServiceAccount.projectId,
@@ -33,7 +33,7 @@ import * as pulumi from "@pulumi/pulumi";
33
33
  * });
34
34
  * export const secretId = thisProjectServiceAccountSecret.secretId;
35
35
  * export const secret = thisProjectServiceAccountSecret.secret;
36
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
36
+ * export const secretExpiresAt = _this.expiresAt;
37
37
  * ```
38
38
  *
39
39
  * ## Import
@@ -62,7 +62,7 @@ const utilities = __importStar(require("./utilities"));
62
62
  * });
63
63
  * export const secretId = thisProjectServiceAccountSecret.secretId;
64
64
  * export const secret = thisProjectServiceAccountSecret.secret;
65
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
65
+ * export const secretExpiresAt = _this.expiresAt;
66
66
  * ```
67
67
  *
68
68
  * ## Import
@@ -43,7 +43,7 @@ import * as outputs from "./types/output";
43
43
  * projectId: testPushBasedLogExport.projectId,
44
44
  * });
45
45
  * return {
46
- * test: test.apply(test => test.prefixPath),
46
+ * test: test.prefixPath,
47
47
  * };
48
48
  * }
49
49
  * ```
@@ -70,7 +70,7 @@ const utilities = __importStar(require("./utilities"));
70
70
  * projectId: testPushBasedLogExport.projectId,
71
71
  * });
72
72
  * return {
73
- * test: test.apply(test => test.prefixPath),
73
+ * test: test.prefixPath,
74
74
  * };
75
75
  * }
76
76
  * ```
@@ -48,8 +48,8 @@ import * as outputs from "./types/output";
48
48
  * projectId: exampleSearchDeployment.projectId,
49
49
  * clusterName: exampleSearchDeployment.clusterName,
50
50
  * });
51
- * export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
52
- * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
51
+ * export const mongodbatlasSearchDeploymentId = example.id;
52
+ * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.encryptionAtRestProvider;
53
53
  * ```
54
54
  *
55
55
  * ### Further Examples
@@ -75,8 +75,8 @@ const utilities = __importStar(require("./utilities"));
75
75
  * projectId: exampleSearchDeployment.projectId,
76
76
  * clusterName: exampleSearchDeployment.clusterName,
77
77
  * });
78
- * export const mongodbatlasSearchDeploymentId = example.apply(example => example.id);
79
- * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.apply(example => example.encryptionAtRestProvider);
78
+ * export const mongodbatlasSearchDeploymentId = example.id;
79
+ * export const mongodbatlasSearchDeploymentEncryptionAtRestProvider = example.encryptionAtRestProvider;
80
80
  * ```
81
81
  *
82
82
  * ### Further Examples
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
39
39
  * clientId: cidr.clientId,
40
40
  * cidrBlock: cidr.cidrBlock,
41
41
  * });
42
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
42
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
43
43
  * // Data source to read all Access List entries for the Service Account
44
44
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
45
45
  * orgId: thisServiceAccount.orgId,
@@ -68,7 +68,7 @@ const utilities = __importStar(require("./utilities"));
68
68
  * clientId: cidr.clientId,
69
69
  * cidrBlock: cidr.cidrBlock,
70
70
  * });
71
- * export const accessListEntryCidrBlock = _this.apply(_this => _this.cidrBlock);
71
+ * export const accessListEntryCidrBlock = _this.cidrBlock;
72
72
  * // Data source to read all Access List entries for the Service Account
73
73
  * const thisGetServiceAccountAccessListEntries = mongodbatlas.getServiceAccountAccessListEntriesOutput({
74
74
  * orgId: thisServiceAccount.orgId,
@@ -32,7 +32,7 @@ import * as pulumi from "@pulumi/pulumi";
32
32
  * orgId: orgId,
33
33
  * clientId: thisServiceAccount.clientId,
34
34
  * });
35
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
35
+ * export const serviceAccountProjectRoles = _this.roles;
36
36
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
37
37
  * ```
38
38
  *
@@ -61,7 +61,7 @@ const utilities = __importStar(require("./utilities"));
61
61
  * orgId: orgId,
62
62
  * clientId: thisServiceAccount.clientId,
63
63
  * });
64
- * export const serviceAccountProjectRoles = _this.apply(_this => _this.roles);
64
+ * export const serviceAccountProjectRoles = _this.roles;
65
65
  * export const serviceAccountAssignedProjects = thisGetServiceAccountProjectAssignments.apply(thisGetServiceAccountProjectAssignments => thisGetServiceAccountProjectAssignments.results);
66
66
  * ```
67
67
  *
@@ -33,7 +33,7 @@ import * as pulumi from "@pulumi/pulumi";
33
33
  * });
34
34
  * export const secretId = thisServiceAccountSecret.secretId;
35
35
  * export const secret = thisServiceAccountSecret.secret;
36
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
36
+ * export const secretExpiresAt = _this.expiresAt;
37
37
  * ```
38
38
  *
39
39
  * ## Import
@@ -62,7 +62,7 @@ const utilities = __importStar(require("./utilities"));
62
62
  * });
63
63
  * export const secretId = thisServiceAccountSecret.secretId;
64
64
  * export const secret = thisServiceAccountSecret.secret;
65
- * export const secretExpiresAt = _this.apply(_this => _this.expiresAt);
65
+ * export const secretExpiresAt = _this.expiresAt;
66
66
  * ```
67
67
  *
68
68
  * ## Import
@@ -191,7 +191,7 @@ import * as outputs from "./types/output";
191
191
  * connectionName: "GCPPubSubConnection",
192
192
  * type: "GCPPubSub",
193
193
  * gcp: {
194
- * serviceAccountId: gcpSetup.gcpConfigs.apply(gcpConfigs => gcpConfigs[0].serviceAccountForAtlas),
194
+ * serviceAccountId: gcpSetup.gcpConfigs[0].serviceAccountForAtlas,
195
195
  * },
196
196
  * }, {
197
197
  * dependsOn: [gcpAuth],
@@ -218,7 +218,7 @@ import * as outputs from "./types/output";
218
218
  * connectionName: "GCPPubSubPSCConnection",
219
219
  * type: "GCPPubSub",
220
220
  * gcp: {
221
- * serviceAccountId: gcpSetup.gcpConfigs.apply(gcpConfigs => gcpConfigs[0].serviceAccountForAtlas),
221
+ * serviceAccountId: gcpSetup.gcpConfigs[0].serviceAccountForAtlas,
222
222
  * },
223
223
  * networking: {
224
224
  * access: {
@@ -218,7 +218,7 @@ const utilities = __importStar(require("./utilities"));
218
218
  * connectionName: "GCPPubSubConnection",
219
219
  * type: "GCPPubSub",
220
220
  * gcp: {
221
- * serviceAccountId: gcpSetup.gcpConfigs.apply(gcpConfigs => gcpConfigs[0].serviceAccountForAtlas),
221
+ * serviceAccountId: gcpSetup.gcpConfigs[0].serviceAccountForAtlas,
222
222
  * },
223
223
  * }, {
224
224
  * dependsOn: [gcpAuth],
@@ -245,7 +245,7 @@ const utilities = __importStar(require("./utilities"));
245
245
  * connectionName: "GCPPubSubPSCConnection",
246
246
  * type: "GCPPubSub",
247
247
  * gcp: {
248
- * serviceAccountId: gcpSetup.gcpConfigs.apply(gcpConfigs => gcpConfigs[0].serviceAccountForAtlas),
248
+ * serviceAccountId: gcpSetup.gcpConfigs[0].serviceAccountForAtlas,
249
249
  * },
250
250
  * networking: {
251
251
  * access: {
@@ -64,7 +64,7 @@ import * as pulumi from "@pulumi/pulumi";
64
64
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
65
65
  * });
66
66
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
67
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
67
+ * export const privatelinkEndpointState = gcpConfluent.state;
68
68
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
69
69
  * ```
70
70
  *
@@ -105,7 +105,7 @@ import * as pulumi from "@pulumi/pulumi";
105
105
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
106
106
  * });
107
107
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
108
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
108
+ * export const privatelinkEndpointState = gcpPubsub.state;
109
109
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
110
110
  * ```
111
111
  *
@@ -93,7 +93,7 @@ const utilities = __importStar(require("./utilities"));
93
93
  * id: gcpConfluentStreamPrivatelinkEndpoint.id,
94
94
  * });
95
95
  * export const privatelinkEndpointId = gcpConfluentStreamPrivatelinkEndpoint.id;
96
- * export const privatelinkEndpointState = gcpConfluent.apply(gcpConfluent => gcpConfluent.state);
96
+ * export const privatelinkEndpointState = gcpConfluent.state;
97
97
  * export const serviceAttachmentUris = gcpConfluentStreamPrivatelinkEndpoint.serviceAttachmentUris;
98
98
  * ```
99
99
  *
@@ -134,7 +134,7 @@ const utilities = __importStar(require("./utilities"));
134
134
  * id: gcpPubsubStreamPrivatelinkEndpoint.id,
135
135
  * });
136
136
  * export const privatelinkEndpointId = gcpPubsubStreamPrivatelinkEndpoint.id;
137
- * export const privatelinkEndpointState = gcpPubsub.apply(gcpPubsub => gcpPubsub.state);
137
+ * export const privatelinkEndpointState = gcpPubsub.state;
138
138
  * export const dnsDomain = gcpPubsubStreamPrivatelinkEndpoint.dnsDomain;
139
139
  * ```
140
140
  *
@@ -143,7 +143,7 @@ import * as outputs from "./types/output";
143
143
  * workspaceName: example.instanceName,
144
144
  * processorName: stream_processor_sample_example.processorName,
145
145
  * });
146
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
146
+ * export const streamProcessorsState = example_stream_processor.state;
147
147
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
148
148
  * ```
149
149
  *
@@ -170,7 +170,7 @@ const utilities = __importStar(require("./utilities"));
170
170
  * workspaceName: example.instanceName,
171
171
  * processorName: stream_processor_sample_example.processorName,
172
172
  * });
173
- * export const streamProcessorsState = example_stream_processor.apply(example_stream_processor => example_stream_processor.state);
173
+ * export const streamProcessorsState = example_stream_processor.state;
174
174
  * export const streamProcessorsResults = example_stream_processors.apply(example_stream_processors => example_stream_processors.results);
175
175
  * ```
176
176
  *