pulumi-mongodbatlas 4.2.0a1769139905__py3-none-any.whl → 4.3.0__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.
- pulumi_mongodbatlas/__init__.py +12 -0
- pulumi_mongodbatlas/_inputs.py +1 -21
- pulumi_mongodbatlas/alert_configuration.py +14 -13
- pulumi_mongodbatlas/database_user.py +18 -17
- pulumi_mongodbatlas/get_alert_configurations.py +44 -0
- pulumi_mongodbatlas/get_log_integration.py +270 -0
- pulumi_mongodbatlas/get_log_integrations.py +203 -0
- pulumi_mongodbatlas/get_private_endpoint_regional_mode.py +20 -0
- pulumi_mongodbatlas/get_project_ip_access_lists.py +147 -0
- pulumi_mongodbatlas/get_push_based_log_export.py +4 -0
- pulumi_mongodbatlas/log_integration.py +551 -0
- pulumi_mongodbatlas/network_peering.py +94 -0
- pulumi_mongodbatlas/outputs.py +138 -13
- pulumi_mongodbatlas/project_ip_access_list.py +2 -2
- pulumi_mongodbatlas/pulumi-plugin.json +1 -1
- {pulumi_mongodbatlas-4.2.0a1769139905.dist-info → pulumi_mongodbatlas-4.3.0.dist-info}/METADATA +1 -1
- {pulumi_mongodbatlas-4.2.0a1769139905.dist-info → pulumi_mongodbatlas-4.3.0.dist-info}/RECORD +19 -15
- {pulumi_mongodbatlas-4.2.0a1769139905.dist-info → pulumi_mongodbatlas-4.3.0.dist-info}/WHEEL +1 -1
- {pulumi_mongodbatlas-4.2.0a1769139905.dist-info → pulumi_mongodbatlas-4.3.0.dist-info}/top_level.txt +0 -0
pulumi_mongodbatlas/outputs.py
CHANGED
|
@@ -350,6 +350,7 @@ __all__ = [
|
|
|
350
350
|
'GetLdapConfigurationUserToDnMappingResult',
|
|
351
351
|
'GetLdapVerifyLinkResult',
|
|
352
352
|
'GetLdapVerifyValidationResult',
|
|
353
|
+
'GetLogIntegrationsResultResult',
|
|
353
354
|
'GetMaintenanceWindowProtectedHourResult',
|
|
354
355
|
'GetNetworkContainersResultResult',
|
|
355
356
|
'GetNetworkPeeringsResultResult',
|
|
@@ -378,6 +379,7 @@ __all__ = [
|
|
|
378
379
|
'GetProjectApiKeyProjectAssignmentResult',
|
|
379
380
|
'GetProjectApiKeysResultResult',
|
|
380
381
|
'GetProjectApiKeysResultProjectAssignmentResult',
|
|
382
|
+
'GetProjectIpAccessListsResultResult',
|
|
381
383
|
'GetProjectIpAddressesResult',
|
|
382
384
|
'GetProjectIpAddressesServicesResult',
|
|
383
385
|
'GetProjectIpAddressesServicesClusterResult',
|
|
@@ -7988,19 +7990,15 @@ class ProjectApiKeyProjectAssignment(dict):
|
|
|
7988
7990
|
class ProjectIpAccessListTimeouts(dict):
|
|
7989
7991
|
def __init__(__self__, *,
|
|
7990
7992
|
delete: Optional[_builtins.str] = None,
|
|
7991
|
-
read: Optional[_builtins.str] = None
|
|
7992
|
-
update: Optional[_builtins.str] = None):
|
|
7993
|
+
read: Optional[_builtins.str] = None):
|
|
7993
7994
|
"""
|
|
7994
7995
|
:param _builtins.str delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
7995
7996
|
:param _builtins.str read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
7996
|
-
:param _builtins.str update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
7997
7997
|
"""
|
|
7998
7998
|
if delete is not None:
|
|
7999
7999
|
pulumi.set(__self__, "delete", delete)
|
|
8000
8000
|
if read is not None:
|
|
8001
8001
|
pulumi.set(__self__, "read", read)
|
|
8002
|
-
if update is not None:
|
|
8003
|
-
pulumi.set(__self__, "update", update)
|
|
8004
8002
|
|
|
8005
8003
|
@_builtins.property
|
|
8006
8004
|
@pulumi.getter
|
|
@@ -8018,14 +8016,6 @@ class ProjectIpAccessListTimeouts(dict):
|
|
|
8018
8016
|
"""
|
|
8019
8017
|
return pulumi.get(self, "read")
|
|
8020
8018
|
|
|
8021
|
-
@_builtins.property
|
|
8022
|
-
@pulumi.getter
|
|
8023
|
-
def update(self) -> Optional[_builtins.str]:
|
|
8024
|
-
"""
|
|
8025
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
8026
|
-
"""
|
|
8027
|
-
return pulumi.get(self, "update")
|
|
8028
|
-
|
|
8029
8019
|
|
|
8030
8020
|
@pulumi.output_type
|
|
8031
8021
|
class ProjectIpAddresses(dict):
|
|
@@ -21942,6 +21932,90 @@ class GetLdapVerifyValidationResult(dict):
|
|
|
21942
21932
|
return pulumi.get(self, "validation_type")
|
|
21943
21933
|
|
|
21944
21934
|
|
|
21935
|
+
@pulumi.output_type
|
|
21936
|
+
class GetLogIntegrationsResultResult(dict):
|
|
21937
|
+
def __init__(__self__, *,
|
|
21938
|
+
bucket_name: _builtins.str,
|
|
21939
|
+
iam_role_id: _builtins.str,
|
|
21940
|
+
integration_id: _builtins.str,
|
|
21941
|
+
kms_key: _builtins.str,
|
|
21942
|
+
log_types: Sequence[_builtins.str],
|
|
21943
|
+
prefix_path: _builtins.str,
|
|
21944
|
+
type: _builtins.str):
|
|
21945
|
+
"""
|
|
21946
|
+
:param _builtins.str bucket_name: Human-readable label that identifies the S3 bucket name for storing log files.
|
|
21947
|
+
:param _builtins.str iam_role_id: Unique 24-hexadecimal digit string that identifies the AWS IAM role that MongoDB Cloud uses to access your S3 bucket.
|
|
21948
|
+
:param _builtins.str integration_id: Unique 24-character hexadecimal digit string that identifies the log integration configuration.
|
|
21949
|
+
:param _builtins.str kms_key: AWS KMS key ID or ARN for server-side encryption (optional). If not provided, uses bucket default encryption settings.
|
|
21950
|
+
:param Sequence[_builtins.str] log_types: Array of log types to export to S3. Valid values: MONGOD, MONGOS, MONGOD*AUDIT, MONGOS*AUDIT.
|
|
21951
|
+
:param _builtins.str prefix_path: S3 directory path prefix where the log files will be stored. MongoDB Cloud will add further sub-directories based on the log type.
|
|
21952
|
+
:param _builtins.str type: Human-readable label that identifies the service to which you want to integrate with MongoDB Cloud. The value must match the log integration type.
|
|
21953
|
+
"""
|
|
21954
|
+
pulumi.set(__self__, "bucket_name", bucket_name)
|
|
21955
|
+
pulumi.set(__self__, "iam_role_id", iam_role_id)
|
|
21956
|
+
pulumi.set(__self__, "integration_id", integration_id)
|
|
21957
|
+
pulumi.set(__self__, "kms_key", kms_key)
|
|
21958
|
+
pulumi.set(__self__, "log_types", log_types)
|
|
21959
|
+
pulumi.set(__self__, "prefix_path", prefix_path)
|
|
21960
|
+
pulumi.set(__self__, "type", type)
|
|
21961
|
+
|
|
21962
|
+
@_builtins.property
|
|
21963
|
+
@pulumi.getter(name="bucketName")
|
|
21964
|
+
def bucket_name(self) -> _builtins.str:
|
|
21965
|
+
"""
|
|
21966
|
+
Human-readable label that identifies the S3 bucket name for storing log files.
|
|
21967
|
+
"""
|
|
21968
|
+
return pulumi.get(self, "bucket_name")
|
|
21969
|
+
|
|
21970
|
+
@_builtins.property
|
|
21971
|
+
@pulumi.getter(name="iamRoleId")
|
|
21972
|
+
def iam_role_id(self) -> _builtins.str:
|
|
21973
|
+
"""
|
|
21974
|
+
Unique 24-hexadecimal digit string that identifies the AWS IAM role that MongoDB Cloud uses to access your S3 bucket.
|
|
21975
|
+
"""
|
|
21976
|
+
return pulumi.get(self, "iam_role_id")
|
|
21977
|
+
|
|
21978
|
+
@_builtins.property
|
|
21979
|
+
@pulumi.getter(name="integrationId")
|
|
21980
|
+
def integration_id(self) -> _builtins.str:
|
|
21981
|
+
"""
|
|
21982
|
+
Unique 24-character hexadecimal digit string that identifies the log integration configuration.
|
|
21983
|
+
"""
|
|
21984
|
+
return pulumi.get(self, "integration_id")
|
|
21985
|
+
|
|
21986
|
+
@_builtins.property
|
|
21987
|
+
@pulumi.getter(name="kmsKey")
|
|
21988
|
+
def kms_key(self) -> _builtins.str:
|
|
21989
|
+
"""
|
|
21990
|
+
AWS KMS key ID or ARN for server-side encryption (optional). If not provided, uses bucket default encryption settings.
|
|
21991
|
+
"""
|
|
21992
|
+
return pulumi.get(self, "kms_key")
|
|
21993
|
+
|
|
21994
|
+
@_builtins.property
|
|
21995
|
+
@pulumi.getter(name="logTypes")
|
|
21996
|
+
def log_types(self) -> Sequence[_builtins.str]:
|
|
21997
|
+
"""
|
|
21998
|
+
Array of log types to export to S3. Valid values: MONGOD, MONGOS, MONGOD*AUDIT, MONGOS*AUDIT.
|
|
21999
|
+
"""
|
|
22000
|
+
return pulumi.get(self, "log_types")
|
|
22001
|
+
|
|
22002
|
+
@_builtins.property
|
|
22003
|
+
@pulumi.getter(name="prefixPath")
|
|
22004
|
+
def prefix_path(self) -> _builtins.str:
|
|
22005
|
+
"""
|
|
22006
|
+
S3 directory path prefix where the log files will be stored. MongoDB Cloud will add further sub-directories based on the log type.
|
|
22007
|
+
"""
|
|
22008
|
+
return pulumi.get(self, "prefix_path")
|
|
22009
|
+
|
|
22010
|
+
@_builtins.property
|
|
22011
|
+
@pulumi.getter
|
|
22012
|
+
def type(self) -> _builtins.str:
|
|
22013
|
+
"""
|
|
22014
|
+
Human-readable label that identifies the service to which you want to integrate with MongoDB Cloud. The value must match the log integration type.
|
|
22015
|
+
"""
|
|
22016
|
+
return pulumi.get(self, "type")
|
|
22017
|
+
|
|
22018
|
+
|
|
21945
22019
|
@pulumi.output_type
|
|
21946
22020
|
class GetMaintenanceWindowProtectedHourResult(dict):
|
|
21947
22021
|
def __init__(__self__, *,
|
|
@@ -23521,6 +23595,57 @@ class GetProjectApiKeysResultProjectAssignmentResult(dict):
|
|
|
23521
23595
|
return pulumi.get(self, "role_names")
|
|
23522
23596
|
|
|
23523
23597
|
|
|
23598
|
+
@pulumi.output_type
|
|
23599
|
+
class GetProjectIpAccessListsResultResult(dict):
|
|
23600
|
+
def __init__(__self__, *,
|
|
23601
|
+
aws_security_group: _builtins.str,
|
|
23602
|
+
cidr_block: _builtins.str,
|
|
23603
|
+
comment: _builtins.str,
|
|
23604
|
+
ip_address: _builtins.str):
|
|
23605
|
+
"""
|
|
23606
|
+
:param _builtins.str aws_security_group: Unique identifier of the AWS security group to add to the access list. Mutually exclusive with `cidr_block` and `ip_address`.
|
|
23607
|
+
:param _builtins.str cidr_block: Range of IP addresses in CIDR notation to be added to the access list. Mutually exclusive with `aws_security_group` and `ip_address`.
|
|
23608
|
+
:param _builtins.str comment: Remark that explains the purpose or scope of this IP access list entry.
|
|
23609
|
+
:param _builtins.str ip_address: Single IP address to be added to the access list. Mutually exclusive with `cidr_block` and `aws_security_group`.
|
|
23610
|
+
"""
|
|
23611
|
+
pulumi.set(__self__, "aws_security_group", aws_security_group)
|
|
23612
|
+
pulumi.set(__self__, "cidr_block", cidr_block)
|
|
23613
|
+
pulumi.set(__self__, "comment", comment)
|
|
23614
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
|
23615
|
+
|
|
23616
|
+
@_builtins.property
|
|
23617
|
+
@pulumi.getter(name="awsSecurityGroup")
|
|
23618
|
+
def aws_security_group(self) -> _builtins.str:
|
|
23619
|
+
"""
|
|
23620
|
+
Unique identifier of the AWS security group to add to the access list. Mutually exclusive with `cidr_block` and `ip_address`.
|
|
23621
|
+
"""
|
|
23622
|
+
return pulumi.get(self, "aws_security_group")
|
|
23623
|
+
|
|
23624
|
+
@_builtins.property
|
|
23625
|
+
@pulumi.getter(name="cidrBlock")
|
|
23626
|
+
def cidr_block(self) -> _builtins.str:
|
|
23627
|
+
"""
|
|
23628
|
+
Range of IP addresses in CIDR notation to be added to the access list. Mutually exclusive with `aws_security_group` and `ip_address`.
|
|
23629
|
+
"""
|
|
23630
|
+
return pulumi.get(self, "cidr_block")
|
|
23631
|
+
|
|
23632
|
+
@_builtins.property
|
|
23633
|
+
@pulumi.getter
|
|
23634
|
+
def comment(self) -> _builtins.str:
|
|
23635
|
+
"""
|
|
23636
|
+
Remark that explains the purpose or scope of this IP access list entry.
|
|
23637
|
+
"""
|
|
23638
|
+
return pulumi.get(self, "comment")
|
|
23639
|
+
|
|
23640
|
+
@_builtins.property
|
|
23641
|
+
@pulumi.getter(name="ipAddress")
|
|
23642
|
+
def ip_address(self) -> _builtins.str:
|
|
23643
|
+
"""
|
|
23644
|
+
Single IP address to be added to the access list. Mutually exclusive with `cidr_block` and `aws_security_group`.
|
|
23645
|
+
"""
|
|
23646
|
+
return pulumi.get(self, "ip_address")
|
|
23647
|
+
|
|
23648
|
+
|
|
23524
23649
|
@pulumi.output_type
|
|
23525
23650
|
class GetProjectIpAddressesResult(dict):
|
|
23526
23651
|
def __init__(__self__, *,
|
|
@@ -235,7 +235,7 @@ class ProjectIpAccessList(pulumi.CustomResource):
|
|
|
235
235
|
|
|
236
236
|
> **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
237
237
|
|
|
238
|
-
> **IMPORTANT:** When you remove an entry from the access list, existing connections from the removed address(es) may remain open for a variable amount of time. How much time passes before Atlas closes the connection depends on several factors, including how the connection was established, the particular behavior of the application or driver using the address, and the connection protocol (e.g., TCP or UDP). This is particularly important to consider when changing an existing IP address or CIDR block as they cannot be updated via the Provider
|
|
238
|
+
> **IMPORTANT:** When you remove an entry from the access list, existing connections from the removed address(es) may remain open for a variable amount of time. How much time passes before Atlas closes the connection depends on several factors, including how the connection was established, the particular behavior of the application or driver using the address, and the connection protocol (e.g., TCP or UDP). This is particularly important to consider when changing an existing IP address or CIDR block as they cannot be updated via the Provider, hence a change will force the destruction and recreation of entries.
|
|
239
239
|
|
|
240
240
|
> **IMPORTANT:** During creation this resource does not validate whether the specified `ip_address`, `cidr_block`, or `aws_security_group` already exists in the project's access list (known limitation). Defining a duplicate entry will result in a successful resource creation associated to the existing entry.
|
|
241
241
|
|
|
@@ -321,7 +321,7 @@ class ProjectIpAccessList(pulumi.CustomResource):
|
|
|
321
321
|
|
|
322
322
|
> **NOTE:** Groups and projects are synonymous terms. You may find `groupId` in the official documentation.
|
|
323
323
|
|
|
324
|
-
> **IMPORTANT:** When you remove an entry from the access list, existing connections from the removed address(es) may remain open for a variable amount of time. How much time passes before Atlas closes the connection depends on several factors, including how the connection was established, the particular behavior of the application or driver using the address, and the connection protocol (e.g., TCP or UDP). This is particularly important to consider when changing an existing IP address or CIDR block as they cannot be updated via the Provider
|
|
324
|
+
> **IMPORTANT:** When you remove an entry from the access list, existing connections from the removed address(es) may remain open for a variable amount of time. How much time passes before Atlas closes the connection depends on several factors, including how the connection was established, the particular behavior of the application or driver using the address, and the connection protocol (e.g., TCP or UDP). This is particularly important to consider when changing an existing IP address or CIDR block as they cannot be updated via the Provider, hence a change will force the destruction and recreation of entries.
|
|
325
325
|
|
|
326
326
|
> **IMPORTANT:** During creation this resource does not validate whether the specified `ip_address`, `cidr_block`, or `aws_security_group` already exists in the project's access list (known limitation). Defining a duplicate entry will result in a successful resource creation associated to the existing entry.
|
|
327
327
|
|
{pulumi_mongodbatlas-4.2.0a1769139905.dist-info → pulumi_mongodbatlas-4.3.0.dist-info}/RECORD
RENAMED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
pulumi_mongodbatlas/__init__.py,sha256=
|
|
2
|
-
pulumi_mongodbatlas/_inputs.py,sha256=
|
|
1
|
+
pulumi_mongodbatlas/__init__.py,sha256=CuzddG4a4Q-rgUkvp3732qUyMJjBWiKMjT4kc0Ec-xk,23853
|
|
2
|
+
pulumi_mongodbatlas/_inputs.py,sha256=wXoFx-T-pRT2Ax6fF7P4FDm0iOGyqmB-2W1m4xnL7zU,651825
|
|
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
|
-
pulumi_mongodbatlas/alert_configuration.py,sha256=
|
|
6
|
+
pulumi_mongodbatlas/alert_configuration.py,sha256=Hd3vEvmjL7PQWgequeDVgwmADqlNKddS04t8ZY7sX_Y,42198
|
|
7
7
|
pulumi_mongodbatlas/api_key.py,sha256=8QWDvDJ3ZLo1XlWvgpoeRbORSPoONVurrjo8lvpvnaE,17354
|
|
8
8
|
pulumi_mongodbatlas/api_key_project_assignment.py,sha256=wk-MLC7A3_5fMOL-Y6lu1M1BmN71w7ZfsyweOw9MNlg,18234
|
|
9
9
|
pulumi_mongodbatlas/auditing.py,sha256=EQKGiPVcb4gK-M6QfhVFinBprgO_EfCbHIGPKA7OaZ4,22681
|
|
@@ -22,7 +22,7 @@ pulumi_mongodbatlas/cluster.py,sha256=FcHobCS0Iba0rzZzg-n19kQhcYBBNpCEK0Bhykhpz2
|
|
|
22
22
|
pulumi_mongodbatlas/cluster_outage_simulation.py,sha256=sTO5-_7V75CQDUPUyuoM-LbrO2xU_yA_VDw1nW-irA0,28311
|
|
23
23
|
pulumi_mongodbatlas/custom_db_role.py,sha256=3dGkv54N8coaccLi7lmZ_as30901VslzZG_oaaDwti0,23580
|
|
24
24
|
pulumi_mongodbatlas/custom_dns_configuration_cluster_aws.py,sha256=lo4qpdErgWKzpAzfENHC9ReIS3xT03p0_73W8T5NQHs,12475
|
|
25
|
-
pulumi_mongodbatlas/database_user.py,sha256=
|
|
25
|
+
pulumi_mongodbatlas/database_user.py,sha256=Pd2VEfd_zT1ysA7vIgo6U3HObaC2NdRcqw2Y0tDd4E8,59246
|
|
26
26
|
pulumi_mongodbatlas/encryption_at_rest.py,sha256=w2RVXV-jEy4rI0N78EO7DzCS9r2CxolxwGnPOwHtY7g,19981
|
|
27
27
|
pulumi_mongodbatlas/encryption_at_rest_private_endpoint.py,sha256=MKtQD0AZQ5guBkMlfV-ZA207TOFhSyN9m5FCn-o__Us,33002
|
|
28
28
|
pulumi_mongodbatlas/event_trigger.py,sha256=Ox7Ewoy-LuVQcImEK8c0wFgRFM-1zVqJkO1IHqpmp_E,69448
|
|
@@ -37,7 +37,7 @@ pulumi_mongodbatlas/get_access_list_api_keys.py,sha256=yq_eyNbHI1YO3D9u3D7GUjrcG
|
|
|
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
|
-
pulumi_mongodbatlas/get_alert_configurations.py,sha256=
|
|
40
|
+
pulumi_mongodbatlas/get_alert_configurations.py,sha256=HOIE4SnPjjbSKl524sC8l1QCjWGU6o7KSD01hYBTjE0,10443
|
|
41
41
|
pulumi_mongodbatlas/get_api_key.py,sha256=FhP13w3Ttr7-xgJe5FPb1xosnaaIZegoKMlJO-YwjsQ,5956
|
|
42
42
|
pulumi_mongodbatlas/get_api_key_project_assignment.py,sha256=naj3FXCN-q1R1dtQFO47aOGP3XuwL3TIv4oJFOsn7yc,9346
|
|
43
43
|
pulumi_mongodbatlas/get_api_key_project_assignments.py,sha256=kUUGP7a3A1MoraahVlzOGyBpjimJzlRLSl4JggQ1K-4,8441
|
|
@@ -93,6 +93,8 @@ 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_log_integration.py,sha256=HjU4LFwD8oDAvyJiZ9_8AY9TmTkgx39mEREdiJaJDnM,12052
|
|
97
|
+
pulumi_mongodbatlas/get_log_integrations.py,sha256=UFLCIqdJZ8hii7ajMx2W4LxZ6o4pW4f_r-EJeFfBNwU,8843
|
|
96
98
|
pulumi_mongodbatlas/get_maintenance_window.py,sha256=o8_--JmG-Ck55zrcgbHdk7kf8ydMtGx71dfkWSXUf1I,11074
|
|
97
99
|
pulumi_mongodbatlas/get_mongodb_employee_access_grant.py,sha256=1KzHF0AdQXnIq9yiNo2hPnOWKulgak1KP7nPYsDl_sQ,7596
|
|
98
100
|
pulumi_mongodbatlas/get_network_container.py,sha256=tYsiJKTWDRvWt5O7djqTQOXgA65XlpMriltwiH9A8lA,13550
|
|
@@ -104,7 +106,7 @@ pulumi_mongodbatlas/get_online_archives.py,sha256=MwH50qy7R49tbySNwO1UO36WyrRMp0
|
|
|
104
106
|
pulumi_mongodbatlas/get_org_invitation.py,sha256=pSkqCe07mN_PjnjQCtzHI1ZfciRh6K3ntuCc1EYeMQM,9356
|
|
105
107
|
pulumi_mongodbatlas/get_organization.py,sha256=tEtsEL3r7M5-_gUoDfkkeE1gHxfMdoKs1W4la33TRIU,11915
|
|
106
108
|
pulumi_mongodbatlas/get_organizations.py,sha256=GumdYaAGy1Hfc2GwoDI2t1yQr8hKgqAkQzEIa6uFjFY,6633
|
|
107
|
-
pulumi_mongodbatlas/get_private_endpoint_regional_mode.py,sha256=
|
|
109
|
+
pulumi_mongodbatlas/get_private_endpoint_regional_mode.py,sha256=ouoMqYqiLGxv8_w0yS1hMTq-jlvE8NQIZxa0gQ1HEWU,5843
|
|
108
110
|
pulumi_mongodbatlas/get_private_link_endpoint.py,sha256=V22ruyQH54884cfAl_-ef31g6IVxqbEwoZ89ZyRRlfM,16211
|
|
109
111
|
pulumi_mongodbatlas/get_private_link_endpoint_service.py,sha256=rXOIf3otEgwyU7ofBdO_Bmy4NKwOcd5Tj5zlynOV6WU,17021
|
|
110
112
|
pulumi_mongodbatlas/get_privatelink_endpoint_service_data_federation_online_archive.py,sha256=wEMtpEOYlk1SIEqgLtZFg3jABichYsOPDwhwqmjgLzA,11315
|
|
@@ -114,6 +116,7 @@ pulumi_mongodbatlas/get_project_api_key.py,sha256=NLX-6fGbI9GAaaE97tOljrvZlN0T0L
|
|
|
114
116
|
pulumi_mongodbatlas/get_project_api_keys.py,sha256=2Y088kCpw2Z8HNnp0OrtUcwEe5OouEC2iND3Ku4epWw,6436
|
|
115
117
|
pulumi_mongodbatlas/get_project_invitation.py,sha256=VQ4QF4XNryPhE-Ex7hU0r9fATOaRuuB11Yr-hbj7xM8,10057
|
|
116
118
|
pulumi_mongodbatlas/get_project_ip_access_list.py,sha256=eD9VrY6k61iLr4jDw7b7GO0QikDZHAqfKnd3W5YVOJw,12753
|
|
119
|
+
pulumi_mongodbatlas/get_project_ip_access_lists.py,sha256=IrPwaIdBLWFpcI1Bx1xNX43cjwUSCr6OVajCTbf2MJI,5876
|
|
117
120
|
pulumi_mongodbatlas/get_project_ip_addresses.py,sha256=mxd-65dqC6IY9NkLtKzTdxLhlBlzYklHhSMxytHUpEs,4866
|
|
118
121
|
pulumi_mongodbatlas/get_project_service_account.py,sha256=EaOdH9MYFNZ_FHXH5ET96MNXIC4PHzPJY2Xw_723kUQ,7525
|
|
119
122
|
pulumi_mongodbatlas/get_project_service_account_access_list_entries.py,sha256=_OU6rhhqUJyzrNMzwtVAzhpz-tQgBz6Dqr4UWhyvvNw,9038
|
|
@@ -121,7 +124,7 @@ pulumi_mongodbatlas/get_project_service_account_access_list_entry.py,sha256=ocw8
|
|
|
121
124
|
pulumi_mongodbatlas/get_project_service_account_secret.py,sha256=iYFGnN7h2uCdNv0Y9fj10tcq7wDIyj15EKTNy8Zk3-g,10915
|
|
122
125
|
pulumi_mongodbatlas/get_project_service_accounts.py,sha256=XN6YzcHBzeMfnEWn-w4vQ97vnt1c05QhKtCQ3cygSFE,4346
|
|
123
126
|
pulumi_mongodbatlas/get_projects.py,sha256=u5RTY5V_Ct0gq25ixI--DEnHMk0qNg88jasWHc0HM7E,6556
|
|
124
|
-
pulumi_mongodbatlas/get_push_based_log_export.py,sha256=
|
|
127
|
+
pulumi_mongodbatlas/get_push_based_log_export.py,sha256=Ipd-kRAw1euCW4pX9PYA-sbQiZfFqoN1J0AU9fyJsQU,9278
|
|
125
128
|
pulumi_mongodbatlas/get_resource_policies.py,sha256=-SoqrZpBuQ-LIBuZ3d83ltrdGhGNmObtxScDUpYayFg,5385
|
|
126
129
|
pulumi_mongodbatlas/get_resource_policy.py,sha256=Vo24CDb6a17T4VbSo36rZ1MO-t2-302uv8Ktco-RZg4,9454
|
|
127
130
|
pulumi_mongodbatlas/get_roles_org_id.py,sha256=PeP8phNfxtxCNy2214XDmCt55Ci1unb4iWuPbbx8tnA,3601
|
|
@@ -160,14 +163,15 @@ pulumi_mongodbatlas/get_x509_authentication_database_user.py,sha256=TFncqQi6Ko5Z
|
|
|
160
163
|
pulumi_mongodbatlas/global_cluster_config.py,sha256=y4GQpeFCR-GzQ-Iw3LcxLTKCh2rJNoQ7H6y1Vui9eV4,26431
|
|
161
164
|
pulumi_mongodbatlas/ldap_configuration.py,sha256=IN1U7qrMsUn9ten1_JRN_AJAvS-B76ilT1WKpL-Hx3M,49676
|
|
162
165
|
pulumi_mongodbatlas/ldap_verify.py,sha256=MqAh5iu133EZsGquip6kuhk4Wbz7KEHg85dN7Gi6l1I,34761
|
|
166
|
+
pulumi_mongodbatlas/log_integration.py,sha256=TOOzLoh_CBzUGycnfHOkFdBJUm7GLpckBz78YudY4eE,27965
|
|
163
167
|
pulumi_mongodbatlas/maintenance_window.py,sha256=fdxk45iLTjaZ6LsQ4UV8XLu8qOTNr3NJmP-gMFfpUGA,35652
|
|
164
168
|
pulumi_mongodbatlas/mongodb_employee_access_grant.py,sha256=AjLzci21wYhCb5wLpDaZQFANCg5QoNfD4kg8WclrzLc,17214
|
|
165
169
|
pulumi_mongodbatlas/network_container.py,sha256=Lok1PGH5mJWF1KKtXvB826DeF5d6y5L7cBaw_LZOLLQ,45258
|
|
166
|
-
pulumi_mongodbatlas/network_peering.py,sha256=
|
|
170
|
+
pulumi_mongodbatlas/network_peering.py,sha256=qQDQuppLb8jXBCXQHFj8AvlEosgcrkyuXh4X8P7--0A,77736
|
|
167
171
|
pulumi_mongodbatlas/online_archive.py,sha256=hFsWSkaNEKugbWu0mcv_GxVvsDg_v2gIBq6x3oqGSYA,56239
|
|
168
172
|
pulumi_mongodbatlas/org_invitation.py,sha256=tHsfdKVs4692aM7yvg9EWa_oQLrB_n4KhNwwUKa8BIE,24250
|
|
169
173
|
pulumi_mongodbatlas/organization.py,sha256=bhtJ3Itq5DAE_CyLnhvWsuk55Mf5hov8TQkbrW_BDWk,52531
|
|
170
|
-
pulumi_mongodbatlas/outputs.py,sha256=
|
|
174
|
+
pulumi_mongodbatlas/outputs.py,sha256=Z06GltaBqiywMUumr1wxdNFw6DSLxGPvb67kDOhlROU,1404754
|
|
171
175
|
pulumi_mongodbatlas/private_endpoint_regional_mode.py,sha256=MVzmRPiNkw5gIKgxfOs8wWU3fz_rpD-71JYrKC3qRhU,15623
|
|
172
176
|
pulumi_mongodbatlas/private_link_endpoint.py,sha256=8IgwKZvyHobG15yLWyLBIy0gm3rn1IRC67wEMmiH_jg,43215
|
|
173
177
|
pulumi_mongodbatlas/private_link_endpoint_service.py,sha256=ndF1du1Ko3SSPyOo_XyXa6QIaiDqJNnhNcv5dTb3mUA,50173
|
|
@@ -175,12 +179,12 @@ pulumi_mongodbatlas/privatelink_endpoint_service_data_federation_online_archive.
|
|
|
175
179
|
pulumi_mongodbatlas/project.py,sha256=VgY-DoPDapv_GhzERqsuYu2wzWIenO4CstpHrlM4ZfM,78147
|
|
176
180
|
pulumi_mongodbatlas/project_api_key.py,sha256=irqbdDyRnfc8rIx-Ui_Ocr1MdVbGtKbTO_PPyepwZHY,15460
|
|
177
181
|
pulumi_mongodbatlas/project_invitation.py,sha256=XaIiEP8XmCt7XaV-VdZY4uPqBhnGjHv0UbE6_1um-Rk,20855
|
|
178
|
-
pulumi_mongodbatlas/project_ip_access_list.py,sha256=
|
|
182
|
+
pulumi_mongodbatlas/project_ip_access_list.py,sha256=Ewes8abM6QDiyt2PYeaQsruBupMWFFrn9vH6os81FA0,25414
|
|
179
183
|
pulumi_mongodbatlas/project_service_account.py,sha256=gK-IZiivHaF4arfat4v9IgmmlL8FoPTDSn89ur2n8IM,22815
|
|
180
184
|
pulumi_mongodbatlas/project_service_account_access_list_entry.py,sha256=sT4ROWbMpZYRFCeLkghtCMKvNieM7fUJTrddJ8XGvto,24684
|
|
181
185
|
pulumi_mongodbatlas/project_service_account_secret.py,sha256=dqzw3eNbeCm05dzfNi0xtZiV02oft0ZoKds-f551lLs,25221
|
|
182
186
|
pulumi_mongodbatlas/provider.py,sha256=YDsrvWkjBmVqkg2-0M7ERv64TZ2VffxjTbV6CGLUvMQ,23282
|
|
183
|
-
pulumi_mongodbatlas/pulumi-plugin.json,sha256=
|
|
187
|
+
pulumi_mongodbatlas/pulumi-plugin.json,sha256=3cWL1HI9KaYngF9G59RyNbliOAULiX1s76Uk3pyJJ1g,71
|
|
184
188
|
pulumi_mongodbatlas/push_based_log_export.py,sha256=p7KMTGUbVNZNhtwH9OVkw0BdHhXB4qir7Hvq2SnVn30,26767
|
|
185
189
|
pulumi_mongodbatlas/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
186
190
|
pulumi_mongodbatlas/resource_policy.py,sha256=ydiVrBXaJnBiTkXyI5kB3_RvnVa4xAPXepoqZV6jVAI,22149
|
|
@@ -204,7 +208,7 @@ pulumi_mongodbatlas/config/__init__.py,sha256=XWnQfVtc2oPapjSXXCdORFJvMpXt_SMJQA
|
|
|
204
208
|
pulumi_mongodbatlas/config/__init__.pyi,sha256=bSMdsh5hu-1mHeitHVRf60Sr984tY7ie08Mcjr7t3m0,1682
|
|
205
209
|
pulumi_mongodbatlas/config/outputs.py,sha256=q1h6en3BHoKnGp2YTqTH6wL9S0SKD-lt37xSsoQkJ2E,1183
|
|
206
210
|
pulumi_mongodbatlas/config/vars.py,sha256=WYlDuESwKChMyjp4zka4RMv0aTllvHohHKr6I8nyJgE,3441
|
|
207
|
-
pulumi_mongodbatlas-4.
|
|
208
|
-
pulumi_mongodbatlas-4.
|
|
209
|
-
pulumi_mongodbatlas-4.
|
|
210
|
-
pulumi_mongodbatlas-4.
|
|
211
|
+
pulumi_mongodbatlas-4.3.0.dist-info/METADATA,sha256=WOAYE6xEN5mQqt8Byi0VCyK0FCmKYhnCzvylfuu_34I,3003
|
|
212
|
+
pulumi_mongodbatlas-4.3.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
213
|
+
pulumi_mongodbatlas-4.3.0.dist-info/top_level.txt,sha256=eFnUToWzr-Um7_ot_nth2jQFq6sOE4j3xJ2j_evNMco,20
|
|
214
|
+
pulumi_mongodbatlas-4.3.0.dist-info/RECORD,,
|
{pulumi_mongodbatlas-4.2.0a1769139905.dist-info → pulumi_mongodbatlas-4.3.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|