pulumi-mongodbatlas 4.2.0__py3-none-any.whl → 4.2.0a1768501011__py3-none-any.whl

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 (38) hide show
  1. pulumi_mongodbatlas/__init__.py +0 -75
  2. pulumi_mongodbatlas/_inputs.py +12 -366
  3. pulumi_mongodbatlas/api_key_project_assignment.py +2 -16
  4. pulumi_mongodbatlas/get_access_list_api_key.py +14 -19
  5. pulumi_mongodbatlas/get_access_list_api_keys.py +14 -13
  6. pulumi_mongodbatlas/get_api_key_project_assignment.py +2 -16
  7. pulumi_mongodbatlas/get_api_key_project_assignments.py +2 -16
  8. pulumi_mongodbatlas/get_maintenance_window.py +1 -1
  9. pulumi_mongodbatlas/get_project_ip_access_list.py +65 -63
  10. pulumi_mongodbatlas/get_stream_connection.py +2 -46
  11. pulumi_mongodbatlas/maintenance_window.py +21 -21
  12. pulumi_mongodbatlas/outputs.py +94 -1126
  13. pulumi_mongodbatlas/project_ip_access_list.py +100 -71
  14. pulumi_mongodbatlas/pulumi-plugin.json +1 -1
  15. pulumi_mongodbatlas/stream_connection.py +7 -185
  16. {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/METADATA +1 -1
  17. {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/RECORD +19 -38
  18. {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/WHEEL +1 -1
  19. pulumi_mongodbatlas/get_project_service_account.py +0 -185
  20. pulumi_mongodbatlas/get_project_service_account_access_list_entries.py +0 -195
  21. pulumi_mongodbatlas/get_project_service_account_access_list_entry.py +0 -276
  22. pulumi_mongodbatlas/get_project_service_account_secret.py +0 -244
  23. pulumi_mongodbatlas/get_project_service_accounts.py +0 -109
  24. pulumi_mongodbatlas/get_service_account.py +0 -185
  25. pulumi_mongodbatlas/get_service_account_access_list_entries.py +0 -195
  26. pulumi_mongodbatlas/get_service_account_access_list_entry.py +0 -276
  27. pulumi_mongodbatlas/get_service_account_project_assignment.py +0 -176
  28. pulumi_mongodbatlas/get_service_account_project_assignments.py +0 -177
  29. pulumi_mongodbatlas/get_service_account_secret.py +0 -244
  30. pulumi_mongodbatlas/get_service_accounts.py +0 -109
  31. pulumi_mongodbatlas/project_service_account.py +0 -444
  32. pulumi_mongodbatlas/project_service_account_access_list_entry.py +0 -490
  33. pulumi_mongodbatlas/project_service_account_secret.py +0 -491
  34. pulumi_mongodbatlas/service_account.py +0 -444
  35. pulumi_mongodbatlas/service_account_access_list_entry.py +0 -490
  36. pulumi_mongodbatlas/service_account_project_assignment.py +0 -314
  37. pulumi_mongodbatlas/service_account_secret.py +0 -491
  38. {pulumi_mongodbatlas-4.2.0.dist-info → pulumi_mongodbatlas-4.2.0a1768501011.dist-info}/top_level.txt +0 -0
@@ -34,9 +34,6 @@ class StreamConnectionArgs:
34
34
  headers: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
35
35
  instance_name: Optional[pulumi.Input[_builtins.str]] = None,
36
36
  networking: Optional[pulumi.Input['StreamConnectionNetworkingArgs']] = None,
37
- schema_registry_authentication: Optional[pulumi.Input['StreamConnectionSchemaRegistryAuthenticationArgs']] = None,
38
- schema_registry_provider: Optional[pulumi.Input[_builtins.str]] = None,
39
- schema_registry_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
40
37
  security: Optional[pulumi.Input['StreamConnectionSecurityArgs']] = None,
41
38
  url: Optional[pulumi.Input[_builtins.str]] = None,
42
39
  workspace_name: Optional[pulumi.Input[_builtins.str]] = None):
@@ -44,7 +41,7 @@ class StreamConnectionArgs:
44
41
  The set of arguments for constructing a StreamConnection resource.
45
42
  :param pulumi.Input[_builtins.str] connection_name: Label that identifies the stream connection. In the case of the Sample type, this is the name of the sample source.
46
43
  :param pulumi.Input[_builtins.str] project_id: Unique 24-hexadecimal digit string that identifies your project.
47
- :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
44
+ :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
48
45
 
49
46
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
50
47
  :param pulumi.Input[_builtins.str] instance_name: Label that identifies the stream processing workspace. Attribute is deprecated and will be removed in following major versions in favor of `workspace_name`.
@@ -76,12 +73,6 @@ class StreamConnectionArgs:
76
73
  pulumi.set(__self__, "instance_name", instance_name)
77
74
  if networking is not None:
78
75
  pulumi.set(__self__, "networking", networking)
79
- if schema_registry_authentication is not None:
80
- pulumi.set(__self__, "schema_registry_authentication", schema_registry_authentication)
81
- if schema_registry_provider is not None:
82
- pulumi.set(__self__, "schema_registry_provider", schema_registry_provider)
83
- if schema_registry_urls is not None:
84
- pulumi.set(__self__, "schema_registry_urls", schema_registry_urls)
85
76
  if security is not None:
86
77
  pulumi.set(__self__, "security", security)
87
78
  if url is not None:
@@ -117,7 +108,7 @@ class StreamConnectionArgs:
117
108
  @pulumi.getter
118
109
  def type(self) -> pulumi.Input[_builtins.str]:
119
110
  """
120
- Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
111
+ Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
121
112
 
122
113
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
123
114
  """
@@ -221,33 +212,6 @@ class StreamConnectionArgs:
221
212
  def networking(self, value: Optional[pulumi.Input['StreamConnectionNetworkingArgs']]):
222
213
  pulumi.set(self, "networking", value)
223
214
 
224
- @_builtins.property
225
- @pulumi.getter(name="schemaRegistryAuthentication")
226
- def schema_registry_authentication(self) -> Optional[pulumi.Input['StreamConnectionSchemaRegistryAuthenticationArgs']]:
227
- return pulumi.get(self, "schema_registry_authentication")
228
-
229
- @schema_registry_authentication.setter
230
- def schema_registry_authentication(self, value: Optional[pulumi.Input['StreamConnectionSchemaRegistryAuthenticationArgs']]):
231
- pulumi.set(self, "schema_registry_authentication", value)
232
-
233
- @_builtins.property
234
- @pulumi.getter(name="schemaRegistryProvider")
235
- def schema_registry_provider(self) -> Optional[pulumi.Input[_builtins.str]]:
236
- return pulumi.get(self, "schema_registry_provider")
237
-
238
- @schema_registry_provider.setter
239
- def schema_registry_provider(self, value: Optional[pulumi.Input[_builtins.str]]):
240
- pulumi.set(self, "schema_registry_provider", value)
241
-
242
- @_builtins.property
243
- @pulumi.getter(name="schemaRegistryUrls")
244
- def schema_registry_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
245
- return pulumi.get(self, "schema_registry_urls")
246
-
247
- @schema_registry_urls.setter
248
- def schema_registry_urls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
249
- pulumi.set(self, "schema_registry_urls", value)
250
-
251
215
  @_builtins.property
252
216
  @pulumi.getter
253
217
  def security(self) -> Optional[pulumi.Input['StreamConnectionSecurityArgs']]:
@@ -294,9 +258,6 @@ class _StreamConnectionState:
294
258
  instance_name: Optional[pulumi.Input[_builtins.str]] = None,
295
259
  networking: Optional[pulumi.Input['StreamConnectionNetworkingArgs']] = None,
296
260
  project_id: Optional[pulumi.Input[_builtins.str]] = None,
297
- schema_registry_authentication: Optional[pulumi.Input['StreamConnectionSchemaRegistryAuthenticationArgs']] = None,
298
- schema_registry_provider: Optional[pulumi.Input[_builtins.str]] = None,
299
- schema_registry_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
300
261
  security: Optional[pulumi.Input['StreamConnectionSecurityArgs']] = None,
301
262
  type: Optional[pulumi.Input[_builtins.str]] = None,
302
263
  url: Optional[pulumi.Input[_builtins.str]] = None,
@@ -306,7 +267,7 @@ class _StreamConnectionState:
306
267
  :param pulumi.Input[_builtins.str] connection_name: Label that identifies the stream connection. In the case of the Sample type, this is the name of the sample source.
307
268
  :param pulumi.Input[_builtins.str] instance_name: Label that identifies the stream processing workspace. Attribute is deprecated and will be removed in following major versions in favor of `workspace_name`.
308
269
  :param pulumi.Input[_builtins.str] project_id: Unique 24-hexadecimal digit string that identifies your project.
309
- :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
270
+ :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
310
271
 
311
272
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
312
273
  :param pulumi.Input[_builtins.str] workspace_name: Label that identifies the stream processing workspace. Conflicts with `instance_name`.
@@ -338,12 +299,6 @@ class _StreamConnectionState:
338
299
  pulumi.set(__self__, "networking", networking)
339
300
  if project_id is not None:
340
301
  pulumi.set(__self__, "project_id", project_id)
341
- if schema_registry_authentication is not None:
342
- pulumi.set(__self__, "schema_registry_authentication", schema_registry_authentication)
343
- if schema_registry_provider is not None:
344
- pulumi.set(__self__, "schema_registry_provider", schema_registry_provider)
345
- if schema_registry_urls is not None:
346
- pulumi.set(__self__, "schema_registry_urls", schema_registry_urls)
347
302
  if security is not None:
348
303
  pulumi.set(__self__, "security", security)
349
304
  if type is not None:
@@ -471,33 +426,6 @@ class _StreamConnectionState:
471
426
  def project_id(self, value: Optional[pulumi.Input[_builtins.str]]):
472
427
  pulumi.set(self, "project_id", value)
473
428
 
474
- @_builtins.property
475
- @pulumi.getter(name="schemaRegistryAuthentication")
476
- def schema_registry_authentication(self) -> Optional[pulumi.Input['StreamConnectionSchemaRegistryAuthenticationArgs']]:
477
- return pulumi.get(self, "schema_registry_authentication")
478
-
479
- @schema_registry_authentication.setter
480
- def schema_registry_authentication(self, value: Optional[pulumi.Input['StreamConnectionSchemaRegistryAuthenticationArgs']]):
481
- pulumi.set(self, "schema_registry_authentication", value)
482
-
483
- @_builtins.property
484
- @pulumi.getter(name="schemaRegistryProvider")
485
- def schema_registry_provider(self) -> Optional[pulumi.Input[_builtins.str]]:
486
- return pulumi.get(self, "schema_registry_provider")
487
-
488
- @schema_registry_provider.setter
489
- def schema_registry_provider(self, value: Optional[pulumi.Input[_builtins.str]]):
490
- pulumi.set(self, "schema_registry_provider", value)
491
-
492
- @_builtins.property
493
- @pulumi.getter(name="schemaRegistryUrls")
494
- def schema_registry_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
495
- return pulumi.get(self, "schema_registry_urls")
496
-
497
- @schema_registry_urls.setter
498
- def schema_registry_urls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
499
- pulumi.set(self, "schema_registry_urls", value)
500
-
501
429
  @_builtins.property
502
430
  @pulumi.getter
503
431
  def security(self) -> Optional[pulumi.Input['StreamConnectionSecurityArgs']]:
@@ -511,7 +439,7 @@ class _StreamConnectionState:
511
439
  @pulumi.getter
512
440
  def type(self) -> Optional[pulumi.Input[_builtins.str]]:
513
441
  """
514
- Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
442
+ Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
515
443
 
516
444
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
517
445
  """
@@ -561,9 +489,6 @@ class StreamConnection(pulumi.CustomResource):
561
489
  instance_name: Optional[pulumi.Input[_builtins.str]] = None,
562
490
  networking: Optional[pulumi.Input[Union['StreamConnectionNetworkingArgs', 'StreamConnectionNetworkingArgsDict']]] = None,
563
491
  project_id: Optional[pulumi.Input[_builtins.str]] = None,
564
- schema_registry_authentication: Optional[pulumi.Input[Union['StreamConnectionSchemaRegistryAuthenticationArgs', 'StreamConnectionSchemaRegistryAuthenticationArgsDict']]] = None,
565
- schema_registry_provider: Optional[pulumi.Input[_builtins.str]] = None,
566
- schema_registry_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
567
492
  security: Optional[pulumi.Input[Union['StreamConnectionSecurityArgs', 'StreamConnectionSecurityArgsDict']]] = None,
568
493
  type: Optional[pulumi.Input[_builtins.str]] = None,
569
494
  url: Optional[pulumi.Input[_builtins.str]] = None,
@@ -727,44 +652,6 @@ class StreamConnection(pulumi.CustomResource):
727
652
  })
728
653
  ```
729
654
 
730
- ### Example Schema Registry Connection with USER_INFO Authentication
731
-
732
- ```python
733
- import pulumi
734
- import pulumi_mongodbatlas as mongodbatlas
735
-
736
- example_schema_registry = mongodbatlas.StreamConnection("example-schema-registry",
737
- project_id=project_id,
738
- workspace_name=example["instanceName"],
739
- connection_name="SchemaRegistryConnection",
740
- type="SchemaRegistry",
741
- schema_registry_provider="CONFLUENT",
742
- schema_registry_urls=["https://schema-registry.example.com:8081"],
743
- schema_registry_authentication={
744
- "type": "USER_INFO",
745
- "username": "registry-user",
746
- "password": schema_registry_password,
747
- })
748
- ```
749
-
750
- ### Example Schema Registry Connection with SASL_INHERIT Authentication
751
-
752
- ```python
753
- import pulumi
754
- import pulumi_mongodbatlas as mongodbatlas
755
-
756
- example_schema_registry_sasl = mongodbatlas.StreamConnection("example-schema-registry-sasl",
757
- project_id=project_id,
758
- workspace_name=example["instanceName"],
759
- connection_name="SchemaRegistryConnectionSASL",
760
- type="SchemaRegistry",
761
- schema_registry_provider="CONFLUENT",
762
- schema_registry_urls=["https://schema-registry.example.com:8081"],
763
- schema_registry_authentication={
764
- "type": "SASL_INHERIT",
765
- })
766
- ```
767
-
768
655
  ## Import
769
656
 
770
657
  You can import a stream connection resource using the workspace name, project ID, and connection name. The format must be `WORKSPACE_NAME-PROJECT_ID-CONNECTION_NAME`. For example:
@@ -780,7 +667,7 @@ class StreamConnection(pulumi.CustomResource):
780
667
  :param pulumi.Input[_builtins.str] connection_name: Label that identifies the stream connection. In the case of the Sample type, this is the name of the sample source.
781
668
  :param pulumi.Input[_builtins.str] instance_name: Label that identifies the stream processing workspace. Attribute is deprecated and will be removed in following major versions in favor of `workspace_name`.
782
669
  :param pulumi.Input[_builtins.str] project_id: Unique 24-hexadecimal digit string that identifies your project.
783
- :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
670
+ :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
784
671
 
785
672
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
786
673
  :param pulumi.Input[_builtins.str] workspace_name: Label that identifies the stream processing workspace. Conflicts with `instance_name`.
@@ -949,44 +836,6 @@ class StreamConnection(pulumi.CustomResource):
949
836
  })
950
837
  ```
951
838
 
952
- ### Example Schema Registry Connection with USER_INFO Authentication
953
-
954
- ```python
955
- import pulumi
956
- import pulumi_mongodbatlas as mongodbatlas
957
-
958
- example_schema_registry = mongodbatlas.StreamConnection("example-schema-registry",
959
- project_id=project_id,
960
- workspace_name=example["instanceName"],
961
- connection_name="SchemaRegistryConnection",
962
- type="SchemaRegistry",
963
- schema_registry_provider="CONFLUENT",
964
- schema_registry_urls=["https://schema-registry.example.com:8081"],
965
- schema_registry_authentication={
966
- "type": "USER_INFO",
967
- "username": "registry-user",
968
- "password": schema_registry_password,
969
- })
970
- ```
971
-
972
- ### Example Schema Registry Connection with SASL_INHERIT Authentication
973
-
974
- ```python
975
- import pulumi
976
- import pulumi_mongodbatlas as mongodbatlas
977
-
978
- example_schema_registry_sasl = mongodbatlas.StreamConnection("example-schema-registry-sasl",
979
- project_id=project_id,
980
- workspace_name=example["instanceName"],
981
- connection_name="SchemaRegistryConnectionSASL",
982
- type="SchemaRegistry",
983
- schema_registry_provider="CONFLUENT",
984
- schema_registry_urls=["https://schema-registry.example.com:8081"],
985
- schema_registry_authentication={
986
- "type": "SASL_INHERIT",
987
- })
988
- ```
989
-
990
839
  ## Import
991
840
 
992
841
  You can import a stream connection resource using the workspace name, project ID, and connection name. The format must be `WORKSPACE_NAME-PROJECT_ID-CONNECTION_NAME`. For example:
@@ -1024,9 +873,6 @@ class StreamConnection(pulumi.CustomResource):
1024
873
  instance_name: Optional[pulumi.Input[_builtins.str]] = None,
1025
874
  networking: Optional[pulumi.Input[Union['StreamConnectionNetworkingArgs', 'StreamConnectionNetworkingArgsDict']]] = None,
1026
875
  project_id: Optional[pulumi.Input[_builtins.str]] = None,
1027
- schema_registry_authentication: Optional[pulumi.Input[Union['StreamConnectionSchemaRegistryAuthenticationArgs', 'StreamConnectionSchemaRegistryAuthenticationArgsDict']]] = None,
1028
- schema_registry_provider: Optional[pulumi.Input[_builtins.str]] = None,
1029
- schema_registry_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1030
876
  security: Optional[pulumi.Input[Union['StreamConnectionSecurityArgs', 'StreamConnectionSecurityArgsDict']]] = None,
1031
877
  type: Optional[pulumi.Input[_builtins.str]] = None,
1032
878
  url: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1056,9 +902,6 @@ class StreamConnection(pulumi.CustomResource):
1056
902
  if project_id is None and not opts.urn:
1057
903
  raise TypeError("Missing required property 'project_id'")
1058
904
  __props__.__dict__["project_id"] = project_id
1059
- __props__.__dict__["schema_registry_authentication"] = schema_registry_authentication
1060
- __props__.__dict__["schema_registry_provider"] = schema_registry_provider
1061
- __props__.__dict__["schema_registry_urls"] = schema_registry_urls
1062
905
  __props__.__dict__["security"] = security
1063
906
  if type is None and not opts.urn:
1064
907
  raise TypeError("Missing required property 'type'")
@@ -1087,9 +930,6 @@ class StreamConnection(pulumi.CustomResource):
1087
930
  instance_name: Optional[pulumi.Input[_builtins.str]] = None,
1088
931
  networking: Optional[pulumi.Input[Union['StreamConnectionNetworkingArgs', 'StreamConnectionNetworkingArgsDict']]] = None,
1089
932
  project_id: Optional[pulumi.Input[_builtins.str]] = None,
1090
- schema_registry_authentication: Optional[pulumi.Input[Union['StreamConnectionSchemaRegistryAuthenticationArgs', 'StreamConnectionSchemaRegistryAuthenticationArgsDict']]] = None,
1091
- schema_registry_provider: Optional[pulumi.Input[_builtins.str]] = None,
1092
- schema_registry_urls: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1093
933
  security: Optional[pulumi.Input[Union['StreamConnectionSecurityArgs', 'StreamConnectionSecurityArgsDict']]] = None,
1094
934
  type: Optional[pulumi.Input[_builtins.str]] = None,
1095
935
  url: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1104,7 +944,7 @@ class StreamConnection(pulumi.CustomResource):
1104
944
  :param pulumi.Input[_builtins.str] connection_name: Label that identifies the stream connection. In the case of the Sample type, this is the name of the sample source.
1105
945
  :param pulumi.Input[_builtins.str] instance_name: Label that identifies the stream processing workspace. Attribute is deprecated and will be removed in following major versions in favor of `workspace_name`.
1106
946
  :param pulumi.Input[_builtins.str] project_id: Unique 24-hexadecimal digit string that identifies your project.
1107
- :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
947
+ :param pulumi.Input[_builtins.str] type: Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
1108
948
 
1109
949
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
1110
950
  :param pulumi.Input[_builtins.str] workspace_name: Label that identifies the stream processing workspace. Conflicts with `instance_name`.
@@ -1125,9 +965,6 @@ class StreamConnection(pulumi.CustomResource):
1125
965
  __props__.__dict__["instance_name"] = instance_name
1126
966
  __props__.__dict__["networking"] = networking
1127
967
  __props__.__dict__["project_id"] = project_id
1128
- __props__.__dict__["schema_registry_authentication"] = schema_registry_authentication
1129
- __props__.__dict__["schema_registry_provider"] = schema_registry_provider
1130
- __props__.__dict__["schema_registry_urls"] = schema_registry_urls
1131
968
  __props__.__dict__["security"] = security
1132
969
  __props__.__dict__["type"] = type
1133
970
  __props__.__dict__["url"] = url
@@ -1204,21 +1041,6 @@ class StreamConnection(pulumi.CustomResource):
1204
1041
  """
1205
1042
  return pulumi.get(self, "project_id")
1206
1043
 
1207
- @_builtins.property
1208
- @pulumi.getter(name="schemaRegistryAuthentication")
1209
- def schema_registry_authentication(self) -> pulumi.Output[Optional['outputs.StreamConnectionSchemaRegistryAuthentication']]:
1210
- return pulumi.get(self, "schema_registry_authentication")
1211
-
1212
- @_builtins.property
1213
- @pulumi.getter(name="schemaRegistryProvider")
1214
- def schema_registry_provider(self) -> pulumi.Output[Optional[_builtins.str]]:
1215
- return pulumi.get(self, "schema_registry_provider")
1216
-
1217
- @_builtins.property
1218
- @pulumi.getter(name="schemaRegistryUrls")
1219
- def schema_registry_urls(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
1220
- return pulumi.get(self, "schema_registry_urls")
1221
-
1222
1044
  @_builtins.property
1223
1045
  @pulumi.getter
1224
1046
  def security(self) -> pulumi.Output[Optional['outputs.StreamConnectionSecurity']]:
@@ -1228,7 +1050,7 @@ class StreamConnection(pulumi.CustomResource):
1228
1050
  @pulumi.getter
1229
1051
  def type(self) -> pulumi.Output[_builtins.str]:
1230
1052
  """
1231
- Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka`, `Sample`, or `SchemaRegistry`.
1053
+ Type of connection. Can be `AWSLambda`, `Cluster`, `Https`, `Kafka` or `Sample`.
1232
1054
 
1233
1055
  > **NOTE:** Either `workspace_name` or `instance_name` must be provided, but not both. These fields are functionally identical and `workspace_name` is an alias for `instance_name`. `workspace_name` should be used instead of `instance_name`.
1234
1056
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_mongodbatlas
3
- Version: 4.2.0
3
+ Version: 4.2.0a1768501011
4
4
  Summary: A Pulumi package for creating and managing mongodbatlas cloud resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -1,11 +1,11 @@
1
- pulumi_mongodbatlas/__init__.py,sha256=NDgFVpRHITDb_ObdtJUs8IYVLN64ZGzgc9cOMWygmFQ,23520
2
- pulumi_mongodbatlas/_inputs.py,sha256=qG_x62BkP3fDMgDLEkADzqo0b8lmnZ8HmcBKj6YIwnc,653071
1
+ pulumi_mongodbatlas/__init__.py,sha256=OOyQdljFNC09RbGDRGlPL8SrDHZEGLGkz3jncZiSJdk,20983
2
+ pulumi_mongodbatlas/_inputs.py,sha256=Utm89nna9AI7OJfeK9_b48Wo7k_XMh5dPiQsOBO3lfU,636714
3
3
  pulumi_mongodbatlas/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
4
4
  pulumi_mongodbatlas/access_list_api_key.py,sha256=8K2cultedHiEZ3ndGVqW6mhnNBeyWl6DcVvhe84KTMo,16999
5
5
  pulumi_mongodbatlas/advanced_cluster.py,sha256=hCDuUrVCHfkgtmec5heZaaQIhHuhGEjSK4MkU_YlQ-g,153881
6
6
  pulumi_mongodbatlas/alert_configuration.py,sha256=GzhQxmWxLcOT8jKaqqMlx1p7_yX-P8jXQSScskZLthI,42155
7
7
  pulumi_mongodbatlas/api_key.py,sha256=8QWDvDJ3ZLo1XlWvgpoeRbORSPoONVurrjo8lvpvnaE,17354
8
- pulumi_mongodbatlas/api_key_project_assignment.py,sha256=wk-MLC7A3_5fMOL-Y6lu1M1BmN71w7ZfsyweOw9MNlg,18234
8
+ pulumi_mongodbatlas/api_key_project_assignment.py,sha256=5bo3pG1HDXzkReT2MwrjCXuL2bd5EI1deOD2L7muOEg,16748
9
9
  pulumi_mongodbatlas/auditing.py,sha256=EQKGiPVcb4gK-M6QfhVFinBprgO_EfCbHIGPKA7OaZ4,22681
10
10
  pulumi_mongodbatlas/backup_compliance_policy.py,sha256=ScNS7di00YHWI9rVcS8f1mXi1VStlop5o6ED7AQo4nE,64027
11
11
  pulumi_mongodbatlas/cloud_backup_schedule.py,sha256=dx3d2Whe11dzRNzcx97CM9JxsihAFkiJZphHH9XuKO0,56475
@@ -32,15 +32,15 @@ pulumi_mongodbatlas/federated_settings_identity_provider.py,sha256=crSLbSFFPYXk9
32
32
  pulumi_mongodbatlas/federated_settings_org_config.py,sha256=ix9ZrJe243FbmTKpOuxGWaRLYPBLlhaH4x4OCkv1CIs,34331
33
33
  pulumi_mongodbatlas/federated_settings_org_role_mapping.py,sha256=t4s7momtDSxzi93KAeaopV7Gk5oBh2LYH1UPBh_ZkSE,22147
34
34
  pulumi_mongodbatlas/flex_cluster.py,sha256=Pwp8iWEQnvVGKc1DVr7DmZN7enyJekFFIkaAKRZDDWM,38395
35
- pulumi_mongodbatlas/get_access_list_api_key.py,sha256=IbW4FTwuBNWTTPEbiBKQ42BxXiiOyRBgh6d5g73qGAk,9418
36
- pulumi_mongodbatlas/get_access_list_api_keys.py,sha256=yq_eyNbHI1YO3D9u3D7GUjrcGU5wT_K2tKe1U9_BGy0,7929
35
+ pulumi_mongodbatlas/get_access_list_api_key.py,sha256=CC8XB7hg9cipnwLr54dJgVaao1qAfZa8FPbgSOIC2J0,9278
36
+ pulumi_mongodbatlas/get_access_list_api_keys.py,sha256=D_fSx88gSV0rQ9ajEtgVef57O8N4Ay90iJatUh1oLho,7462
37
37
  pulumi_mongodbatlas/get_advanced_cluster.py,sha256=gO0wdnkcr3zDiRAdJvaAgJhyLGLjgMy15efobrQchbk,35055
38
38
  pulumi_mongodbatlas/get_advanced_clusters.py,sha256=VCmjLIC1MsKuLmjaBslRtKyIgYPOTdKQ82V-q7MIHHQ,18204
39
39
  pulumi_mongodbatlas/get_alert_configuration.py,sha256=JoMWteG7iKudi1guFSirwYBo7pXo-0UIInW06FjA3j4,17939
40
40
  pulumi_mongodbatlas/get_alert_configurations.py,sha256=OdAlkhRv62E-cSbF-W5_wAIeUSBr64n0g2l1pfFI4w0,8863
41
41
  pulumi_mongodbatlas/get_api_key.py,sha256=FhP13w3Ttr7-xgJe5FPb1xosnaaIZegoKMlJO-YwjsQ,5956
42
- pulumi_mongodbatlas/get_api_key_project_assignment.py,sha256=naj3FXCN-q1R1dtQFO47aOGP3XuwL3TIv4oJFOsn7yc,9346
43
- pulumi_mongodbatlas/get_api_key_project_assignments.py,sha256=kUUGP7a3A1MoraahVlzOGyBpjimJzlRLSl4JggQ1K-4,8441
42
+ pulumi_mongodbatlas/get_api_key_project_assignment.py,sha256=_52fcfjBhwOlf2DuVH4uhXWArzv7f6P0LD5eCL6Q5_Y,7916
43
+ pulumi_mongodbatlas/get_api_key_project_assignments.py,sha256=HToa54cnDbZxk0UazVlDLadsA1mKjKXTJXn6cO6fYw8,7011
44
44
  pulumi_mongodbatlas/get_api_keys.py,sha256=TgR9-HqyhhW1-d3XH3wiFV6e1wr6CxoXE4L2vQpzc4Y,5619
45
45
  pulumi_mongodbatlas/get_atlas_user.py,sha256=0nzRYPF5dJvKy0z3vrGGpjdRfqWb836rXipqLONIHj0,13989
46
46
  pulumi_mongodbatlas/get_atlas_users.py,sha256=zdr5bLXkAngIuKmOtjLCNizqSYiZ1ghjOAmBBjFvD0U,11351
@@ -93,7 +93,7 @@ pulumi_mongodbatlas/get_flex_snapshots.py,sha256=NPyQK5GvNYlBMghr6i_9cU-41casVwf
93
93
  pulumi_mongodbatlas/get_global_cluster_config.py,sha256=ihhE_TBC1M-QXuJ5lE5idbXiaa9sUc_rvfnjJqxyq1M,13302
94
94
  pulumi_mongodbatlas/get_ldap_configuration.py,sha256=ryGTfD5pL9GLQn00YRk8KMElF2DzYXPv4I1al0PZsjI,11161
95
95
  pulumi_mongodbatlas/get_ldap_verify.py,sha256=I4wRLxvZI7pgH8cco31BKZ2NM-jS8LOZDD4o6iumOS4,10591
96
- pulumi_mongodbatlas/get_maintenance_window.py,sha256=o8_--JmG-Ck55zrcgbHdk7kf8ydMtGx71dfkWSXUf1I,11074
96
+ pulumi_mongodbatlas/get_maintenance_window.py,sha256=tN-MjIdvhINoU6FKI1IpMzUp2y5SOwIX3F78YDXNhQ0,11074
97
97
  pulumi_mongodbatlas/get_mongodb_employee_access_grant.py,sha256=1KzHF0AdQXnIq9yiNo2hPnOWKulgak1KP7nPYsDl_sQ,7596
98
98
  pulumi_mongodbatlas/get_network_container.py,sha256=tYsiJKTWDRvWt5O7djqTQOXgA65XlpMriltwiH9A8lA,13550
99
99
  pulumi_mongodbatlas/get_network_containers.py,sha256=uPWsXwYdoyI6hNA5yYOOlEow8hnYV_RVeqfmwpzvs-E,6987
@@ -113,13 +113,8 @@ pulumi_mongodbatlas/get_project.py,sha256=dtXZqzY-SIFWc59Zz58Zm9t5EsXPqTC-LUyDNV
113
113
  pulumi_mongodbatlas/get_project_api_key.py,sha256=NLX-6fGbI9GAaaE97tOljrvZlN0T0LdsuTvBJGJ_EgM,7872
114
114
  pulumi_mongodbatlas/get_project_api_keys.py,sha256=2Y088kCpw2Z8HNnp0OrtUcwEe5OouEC2iND3Ku4epWw,6436
115
115
  pulumi_mongodbatlas/get_project_invitation.py,sha256=VQ4QF4XNryPhE-Ex7hU0r9fATOaRuuB11Yr-hbj7xM8,10057
116
- pulumi_mongodbatlas/get_project_ip_access_list.py,sha256=eD9VrY6k61iLr4jDw7b7GO0QikDZHAqfKnd3W5YVOJw,12753
116
+ pulumi_mongodbatlas/get_project_ip_access_list.py,sha256=46vVAf2SU2O3L_IwRu8izquY-ydLXU5U6CKcjHflBv0,13746
117
117
  pulumi_mongodbatlas/get_project_ip_addresses.py,sha256=mxd-65dqC6IY9NkLtKzTdxLhlBlzYklHhSMxytHUpEs,4866
118
- pulumi_mongodbatlas/get_project_service_account.py,sha256=EaOdH9MYFNZ_FHXH5ET96MNXIC4PHzPJY2Xw_723kUQ,7525
119
- pulumi_mongodbatlas/get_project_service_account_access_list_entries.py,sha256=_OU6rhhqUJyzrNMzwtVAzhpz-tQgBz6Dqr4UWhyvvNw,9038
120
- pulumi_mongodbatlas/get_project_service_account_access_list_entry.py,sha256=ocw8hJR6-o--A36-dXgcf6POniPPMHMybuFIv2z8FWo,13673
121
- pulumi_mongodbatlas/get_project_service_account_secret.py,sha256=iYFGnN7h2uCdNv0Y9fj10tcq7wDIyj15EKTNy8Zk3-g,10915
122
- pulumi_mongodbatlas/get_project_service_accounts.py,sha256=XN6YzcHBzeMfnEWn-w4vQ97vnt1c05QhKtCQ3cygSFE,4346
123
118
  pulumi_mongodbatlas/get_projects.py,sha256=u5RTY5V_Ct0gq25ixI--DEnHMk0qNg88jasWHc0HM7E,6556
124
119
  pulumi_mongodbatlas/get_push_based_log_export.py,sha256=lGtPYkVyegmc6AmoFi5bI0IXXT2DPZngpcPYvCqYjk8,8814
125
120
  pulumi_mongodbatlas/get_resource_policies.py,sha256=-SoqrZpBuQ-LIBuZ3d83ltrdGhGNmObtxScDUpYayFg,5385
@@ -130,19 +125,12 @@ pulumi_mongodbatlas/get_search_index.py,sha256=0k66M20COHHKHOvBze1lhQbRs0wMpV9IS
130
125
  pulumi_mongodbatlas/get_search_indexes.py,sha256=lvLloZ8SIDznl16XZ4DFSRnhlwuIntykz8dJOCSTQwY,8320
131
126
  pulumi_mongodbatlas/get_serverless_instance.py,sha256=Y3WZ0YFzJarmYDApGSfFyq27vhtvVYRQb9ggUDluJq4,19590
132
127
  pulumi_mongodbatlas/get_serverless_instances.py,sha256=lVujCc00E-kmj80tja_Tl4Vu6yj6_eiglraCo_LeiNc,6125
133
- pulumi_mongodbatlas/get_service_account.py,sha256=jmwIHg8OstcvVv76OL3XYhFmvaNfd16C4lLmjYeBtOY,7344
134
- pulumi_mongodbatlas/get_service_account_access_list_entries.py,sha256=RDgQkUHLYP_kxFtzmyfpU4UdijUrpJ4liSAvxPxqxXk,8489
135
- pulumi_mongodbatlas/get_service_account_access_list_entry.py,sha256=UCfpWiidwu8070Lggte2tDnf0hy-3jDpJ4vsp9-tqP0,13099
136
- pulumi_mongodbatlas/get_service_account_project_assignment.py,sha256=5TuzFYjBVvjkQXzB5Vn5DUBZzE9iV6G4aiB1rhPQFwU,7706
137
- pulumi_mongodbatlas/get_service_account_project_assignments.py,sha256=erXpW0Al62MCDbHBYstaRsSsKJRJQxjOZezBTYCQZao,7853
138
- pulumi_mongodbatlas/get_service_account_secret.py,sha256=5NgDFfXC9UKgvPcvMUSGBfSkXfr7ZH3MynEhUXLnnWo,10480
139
- pulumi_mongodbatlas/get_service_accounts.py,sha256=OdcONaOt7gkd3SCZ7tBiFs9iBYvkR67lQ6A0fpBQX2M,4176
140
128
  pulumi_mongodbatlas/get_shared_tier_restore_job.py,sha256=W-dgbMRJw-ze7bJxgkVWaGZuEYou-ePUeko7G7ld1n0,11013
141
129
  pulumi_mongodbatlas/get_shared_tier_restore_jobs.py,sha256=Gq-EAfLXUdyLlgPbk0YWr9DpJMboujNynaSE3IcgLZ4,5342
142
130
  pulumi_mongodbatlas/get_shared_tier_snapshot.py,sha256=CmLtksU_A9gPfiOins3ehfHN8WND9RhwiMLtvgl1xMM,8120
143
131
  pulumi_mongodbatlas/get_shared_tier_snapshots.py,sha256=7N4pIhJS-hkj_NzSNzZGSb02GoE_D_Jatm82c8sGHzs,5282
144
132
  pulumi_mongodbatlas/get_stream_account_details.py,sha256=3fYNErHEeuCp6ECE3jULdgfwjYXYme3zOjmz8RdbilY,10251
145
- pulumi_mongodbatlas/get_stream_connection.py,sha256=lo9m-juo_wJoqzJV7JmdhmM9m4zX3Vrls469neJZ2tk,19392
133
+ pulumi_mongodbatlas/get_stream_connection.py,sha256=uwJYy7vUYr2Ld29UICIeXvGYUEfKNs1RmY1rHJgAGeU,16479
146
134
  pulumi_mongodbatlas/get_stream_connections.py,sha256=UYq9UbBpz3gpSYnPlYcXrQm4COOaLp-y53zTpEE-9LU,10714
147
135
  pulumi_mongodbatlas/get_stream_instance.py,sha256=TnWg6VyYhBekGpHOiLECIc1YBXhjZd9Pu7IUw8QH-i8,8442
148
136
  pulumi_mongodbatlas/get_stream_instances.py,sha256=KU62nJWTekGga0cTABtO_2baQLz1ZROngP7U61tcwbY,8783
@@ -160,14 +148,14 @@ pulumi_mongodbatlas/get_x509_authentication_database_user.py,sha256=TFncqQi6Ko5Z
160
148
  pulumi_mongodbatlas/global_cluster_config.py,sha256=y4GQpeFCR-GzQ-Iw3LcxLTKCh2rJNoQ7H6y1Vui9eV4,26431
161
149
  pulumi_mongodbatlas/ldap_configuration.py,sha256=IN1U7qrMsUn9ten1_JRN_AJAvS-B76ilT1WKpL-Hx3M,49676
162
150
  pulumi_mongodbatlas/ldap_verify.py,sha256=MqAh5iu133EZsGquip6kuhk4Wbz7KEHg85dN7Gi6l1I,34761
163
- pulumi_mongodbatlas/maintenance_window.py,sha256=fdxk45iLTjaZ6LsQ4UV8XLu8qOTNr3NJmP-gMFfpUGA,35652
151
+ pulumi_mongodbatlas/maintenance_window.py,sha256=QMqAgsviME9nU1Y40qs2byd8B45cnMFQXyIzUhRrC30,33216
164
152
  pulumi_mongodbatlas/mongodb_employee_access_grant.py,sha256=AjLzci21wYhCb5wLpDaZQFANCg5QoNfD4kg8WclrzLc,17214
165
153
  pulumi_mongodbatlas/network_container.py,sha256=Lok1PGH5mJWF1KKtXvB826DeF5d6y5L7cBaw_LZOLLQ,45258
166
154
  pulumi_mongodbatlas/network_peering.py,sha256=54RllKHIb-CplPPB0e6Wh4UHjlGsY25PhBAIfKfVPJY,73762
167
155
  pulumi_mongodbatlas/online_archive.py,sha256=hFsWSkaNEKugbWu0mcv_GxVvsDg_v2gIBq6x3oqGSYA,56239
168
156
  pulumi_mongodbatlas/org_invitation.py,sha256=tHsfdKVs4692aM7yvg9EWa_oQLrB_n4KhNwwUKa8BIE,24250
169
157
  pulumi_mongodbatlas/organization.py,sha256=bhtJ3Itq5DAE_CyLnhvWsuk55Mf5hov8TQkbrW_BDWk,52531
170
- pulumi_mongodbatlas/outputs.py,sha256=a2Zr87LXyxSwGKwkg30hHwUQ5CrRriKkrX1LaekwFCg,1399171
158
+ pulumi_mongodbatlas/outputs.py,sha256=Iq2fbDI2arqhA5BFC8TqB8klgJ1vDmLCWGNsJ5Xy3QI,1351591
171
159
  pulumi_mongodbatlas/private_endpoint_regional_mode.py,sha256=MVzmRPiNkw5gIKgxfOs8wWU3fz_rpD-71JYrKC3qRhU,15623
172
160
  pulumi_mongodbatlas/private_link_endpoint.py,sha256=8IgwKZvyHobG15yLWyLBIy0gm3rn1IRC67wEMmiH_jg,43215
173
161
  pulumi_mongodbatlas/private_link_endpoint_service.py,sha256=ndF1du1Ko3SSPyOo_XyXa6QIaiDqJNnhNcv5dTb3mUA,50173
@@ -175,23 +163,16 @@ pulumi_mongodbatlas/privatelink_endpoint_service_data_federation_online_archive.
175
163
  pulumi_mongodbatlas/project.py,sha256=VgY-DoPDapv_GhzERqsuYu2wzWIenO4CstpHrlM4ZfM,78147
176
164
  pulumi_mongodbatlas/project_api_key.py,sha256=irqbdDyRnfc8rIx-Ui_Ocr1MdVbGtKbTO_PPyepwZHY,15460
177
165
  pulumi_mongodbatlas/project_invitation.py,sha256=XaIiEP8XmCt7XaV-VdZY4uPqBhnGjHv0UbE6_1um-Rk,20855
178
- pulumi_mongodbatlas/project_ip_access_list.py,sha256=7Q5opYiMdTiWvLSzahpMtjaRRxZDSmEaO2E4qIpLpiE,25460
179
- pulumi_mongodbatlas/project_service_account.py,sha256=gK-IZiivHaF4arfat4v9IgmmlL8FoPTDSn89ur2n8IM,22815
180
- pulumi_mongodbatlas/project_service_account_access_list_entry.py,sha256=sT4ROWbMpZYRFCeLkghtCMKvNieM7fUJTrddJ8XGvto,24684
181
- pulumi_mongodbatlas/project_service_account_secret.py,sha256=dqzw3eNbeCm05dzfNi0xtZiV02oft0ZoKds-f551lLs,25221
166
+ pulumi_mongodbatlas/project_ip_access_list.py,sha256=2AREWcMo28pKAn3QgXRLOshX59Lt9KaGpbnAr4FRaBI,27522
182
167
  pulumi_mongodbatlas/provider.py,sha256=YDsrvWkjBmVqkg2-0M7ERv64TZ2VffxjTbV6CGLUvMQ,23282
183
- pulumi_mongodbatlas/pulumi-plugin.json,sha256=kUE_lsoauuYkHDKVWkLMjZXiGIdzh4IisXwk_clTt9A,71
168
+ pulumi_mongodbatlas/pulumi-plugin.json,sha256=_P2bD6FFKrvq4pfqpHt3yoWDw1JVzeccYjL0u7A6YMs,88
184
169
  pulumi_mongodbatlas/push_based_log_export.py,sha256=p7KMTGUbVNZNhtwH9OVkw0BdHhXB4qir7Hvq2SnVn30,26767
185
170
  pulumi_mongodbatlas/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
171
  pulumi_mongodbatlas/resource_policy.py,sha256=ydiVrBXaJnBiTkXyI5kB3_RvnVa4xAPXepoqZV6jVAI,22149
187
172
  pulumi_mongodbatlas/search_deployment.py,sha256=JxDJpP8nKUf-InnYtOSjpQQET9p56PsnEFM698M4Emg,29294
188
173
  pulumi_mongodbatlas/search_index.py,sha256=gOAW4oyS388YJ6eeWMFLh8pOdXLbfDwpD6aZMWQ_Eg4,72305
189
174
  pulumi_mongodbatlas/serverless_instance.py,sha256=gYmEYI5fjqYAOZ0xDM69wZZeXR6k6Wr4kQTeqymRJ1Y,51197
190
- pulumi_mongodbatlas/service_account.py,sha256=EYpaMH3Gal4tzDiBurMUbHNxBoCpfIUzmrv0Non5Y4k,22709
191
- pulumi_mongodbatlas/service_account_access_list_entry.py,sha256=GdMOgAHVYXYYJLYh6-rCa-8_8S_4VRSh2kdpt0-KuAQ,24209
192
- pulumi_mongodbatlas/service_account_project_assignment.py,sha256=tLvsqVxZ9nxSgiRNc6Xe6UNJQpOsc3w45Es3uOj18M4,14761
193
- pulumi_mongodbatlas/service_account_secret.py,sha256=RUYBHl8tHk5RHqfb4A_dsCSQfhKopPsXduPH6oi8DgU,24875
194
- pulumi_mongodbatlas/stream_connection.py,sha256=859m70Y0ETgRbrN-P2RincxmSvRrnG-dw9RJ4ShwFoA,59012
175
+ pulumi_mongodbatlas/stream_connection.py,sha256=M6wCpLiQyxREpLPucieQIansSAUj_8t5xc_qvej6EDw,49389
195
176
  pulumi_mongodbatlas/stream_instance.py,sha256=E7VY7hUaTAP_RF03G28thOygssL2pT0GU1DFtXkb4Tk,18680
196
177
  pulumi_mongodbatlas/stream_privatelink_endpoint.py,sha256=6kIQW46Z4CWN4APrTrxYBAEXWWHjk6ovipHiHyEOwfM,52521
197
178
  pulumi_mongodbatlas/stream_processor.py,sha256=ju3w7Mg8ywiMU2ui1eMHYF7LCAbiXoDh3rgDmPr8q1w,52108
@@ -204,7 +185,7 @@ pulumi_mongodbatlas/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQA
204
185
  pulumi_mongodbatlas/config/__init__.pyi,sha256=bSMdsh5hu-1mHeitHVRf60Sr984tY7ie08Mcjr7t3m0,1682
205
186
  pulumi_mongodbatlas/config/outputs.py,sha256=q1h6en3BHoKnGp2YTqTH6wL9S0SKD-lt37xSsoQkJ2E,1183
206
187
  pulumi_mongodbatlas/config/vars.py,sha256=WYlDuESwKChMyjp4zka4RMv0aTllvHohHKr6I8nyJgE,3441
207
- pulumi_mongodbatlas-4.2.0.dist-info/METADATA,sha256=1QRcfAwX8hhEWAFJH4NaUCXjBA_FwvjOWRBLscruR_M,3003
208
- pulumi_mongodbatlas-4.2.0.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
209
- pulumi_mongodbatlas-4.2.0.dist-info/top_level.txt,sha256=eFnUToWzr-Um7_ot_nth2jQFq6sOE4j3xJ2j_evNMco,20
210
- pulumi_mongodbatlas-4.2.0.dist-info/RECORD,,
188
+ pulumi_mongodbatlas-4.2.0a1768501011.dist-info/METADATA,sha256=FEluHUF--Z26wHwwpMeYG-9m3PqDL6eJ-9ln_Auy-D8,3014
189
+ pulumi_mongodbatlas-4.2.0a1768501011.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
190
+ pulumi_mongodbatlas-4.2.0a1768501011.dist-info/top_level.txt,sha256=eFnUToWzr-Um7_ot_nth2jQFq6sOE4j3xJ2j_evNMco,20
191
+ pulumi_mongodbatlas-4.2.0a1768501011.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.10.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5