pulumi-gcp 9.4.0a1760597530__py3-none-any.whl → 9.4.0a1760979403__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_gcp/pulumi-plugin.json +1 -1
 - pulumi_gcp/servicenetworking/connection.py +13 -0
 - {pulumi_gcp-9.4.0a1760597530.dist-info → pulumi_gcp-9.4.0a1760979403.dist-info}/METADATA +1 -1
 - {pulumi_gcp-9.4.0a1760597530.dist-info → pulumi_gcp-9.4.0a1760979403.dist-info}/RECORD +6 -6
 - {pulumi_gcp-9.4.0a1760597530.dist-info → pulumi_gcp-9.4.0a1760979403.dist-info}/WHEEL +0 -0
 - {pulumi_gcp-9.4.0a1760597530.dist-info → pulumi_gcp-9.4.0a1760979403.dist-info}/top_level.txt +0 -0
 
    
        pulumi_gcp/pulumi-plugin.json
    CHANGED
    
    
| 
         @@ -33,6 +33,7 @@ class ConnectionArgs: 
     | 
|
| 
       33 
33 
     | 
    
         
             
                    :param pulumi.Input[_builtins.str] service: Provider peering service that is managing peering connectivity for a
         
     | 
| 
       34 
34 
     | 
    
         
             
                           service provider organization. For Google services that support this functionality it is
         
     | 
| 
       35 
35 
     | 
    
         
             
                           'servicenetworking.googleapis.com'.
         
     | 
| 
      
 36 
     | 
    
         
            +
                    :param pulumi.Input[_builtins.str] deletion_policy: The deletion policy for the service networking connection. Setting to ABANDON allows the resource to be abandoned rather than deleted. This will enable a successful pulumi destroy when destroying CloudSQL instances. Use with care as it can lead to dangling resources.
         
     | 
| 
       36 
37 
     | 
    
         
             
                    :param pulumi.Input[_builtins.bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
         
     | 
| 
       37 
38 
     | 
    
         
             
                    """
         
     | 
| 
       38 
39 
     | 
    
         
             
                    pulumi.set(__self__, "network", network)
         
     | 
| 
         @@ -86,6 +87,9 @@ class ConnectionArgs: 
     | 
|
| 
       86 
87 
     | 
    
         
             
                @_builtins.property
         
     | 
| 
       87 
88 
     | 
    
         
             
                @pulumi.getter(name="deletionPolicy")
         
     | 
| 
       88 
89 
     | 
    
         
             
                def deletion_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
         
     | 
| 
      
 90 
     | 
    
         
            +
                    """
         
     | 
| 
      
 91 
     | 
    
         
            +
                    The deletion policy for the service networking connection. Setting to ABANDON allows the resource to be abandoned rather than deleted. This will enable a successful pulumi destroy when destroying CloudSQL instances. Use with care as it can lead to dangling resources.
         
     | 
| 
      
 92 
     | 
    
         
            +
                    """
         
     | 
| 
       89 
93 
     | 
    
         
             
                    return pulumi.get(self, "deletion_policy")
         
     | 
| 
       90 
94 
     | 
    
         | 
| 
       91 
95 
     | 
    
         
             
                @deletion_policy.setter
         
     | 
| 
         @@ -116,6 +120,7 @@ class _ConnectionState: 
     | 
|
| 
       116 
120 
     | 
    
         
             
                             update_on_creation_fail: Optional[pulumi.Input[_builtins.bool]] = None):
         
     | 
| 
       117 
121 
     | 
    
         
             
                    """
         
     | 
| 
       118 
122 
     | 
    
         
             
                    Input properties used for looking up and filtering Connection resources.
         
     | 
| 
      
 123 
     | 
    
         
            +
                    :param pulumi.Input[_builtins.str] deletion_policy: The deletion policy for the service networking connection. Setting to ABANDON allows the resource to be abandoned rather than deleted. This will enable a successful pulumi destroy when destroying CloudSQL instances. Use with care as it can lead to dangling resources.
         
     | 
| 
       119 
124 
     | 
    
         
             
                    :param pulumi.Input[_builtins.str] network: Name of VPC network connected with service producers using VPC peering.
         
     | 
| 
       120 
125 
     | 
    
         
             
                    :param pulumi.Input[_builtins.str] peering: (Computed) The name of the VPC Network Peering connection that was created by the service producer.
         
     | 
| 
       121 
126 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] reserved_peering_ranges: Named IP address range(s) of PEERING type reserved for
         
     | 
| 
         @@ -142,6 +147,9 @@ class _ConnectionState: 
     | 
|
| 
       142 
147 
     | 
    
         
             
                @_builtins.property
         
     | 
| 
       143 
148 
     | 
    
         
             
                @pulumi.getter(name="deletionPolicy")
         
     | 
| 
       144 
149 
     | 
    
         
             
                def deletion_policy(self) -> Optional[pulumi.Input[_builtins.str]]:
         
     | 
| 
      
 150 
     | 
    
         
            +
                    """
         
     | 
| 
      
 151 
     | 
    
         
            +
                    The deletion policy for the service networking connection. Setting to ABANDON allows the resource to be abandoned rather than deleted. This will enable a successful pulumi destroy when destroying CloudSQL instances. Use with care as it can lead to dangling resources.
         
     | 
| 
      
 152 
     | 
    
         
            +
                    """
         
     | 
| 
       145 
153 
     | 
    
         
             
                    return pulumi.get(self, "deletion_policy")
         
     | 
| 
       146 
154 
     | 
    
         | 
| 
       147 
155 
     | 
    
         
             
                @deletion_policy.setter
         
     | 
| 
         @@ -279,6 +287,7 @@ class Connection(pulumi.CustomResource): 
     | 
|
| 
       279 
287 
     | 
    
         | 
| 
       280 
288 
     | 
    
         
             
                    :param str resource_name: The name of the resource.
         
     | 
| 
       281 
289 
     | 
    
         
             
                    :param pulumi.ResourceOptions opts: Options for the resource.
         
     | 
| 
      
 290 
     | 
    
         
            +
                    :param pulumi.Input[_builtins.str] deletion_policy: The deletion policy for the service networking connection. Setting to ABANDON allows the resource to be abandoned rather than deleted. This will enable a successful pulumi destroy when destroying CloudSQL instances. Use with care as it can lead to dangling resources.
         
     | 
| 
       282 
291 
     | 
    
         
             
                    :param pulumi.Input[_builtins.str] network: Name of VPC network connected with service producers using VPC peering.
         
     | 
| 
       283 
292 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] reserved_peering_ranges: Named IP address range(s) of PEERING type reserved for
         
     | 
| 
       284 
293 
     | 
    
         
             
                           this service provider. Note that invoking this method with a different range when connection
         
     | 
| 
         @@ -410,6 +419,7 @@ class Connection(pulumi.CustomResource): 
     | 
|
| 
       410 
419 
     | 
    
         
             
                    :param str resource_name: The unique name of the resulting resource.
         
     | 
| 
       411 
420 
     | 
    
         
             
                    :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
         
     | 
| 
       412 
421 
     | 
    
         
             
                    :param pulumi.ResourceOptions opts: Options for the resource.
         
     | 
| 
      
 422 
     | 
    
         
            +
                    :param pulumi.Input[_builtins.str] deletion_policy: The deletion policy for the service networking connection. Setting to ABANDON allows the resource to be abandoned rather than deleted. This will enable a successful pulumi destroy when destroying CloudSQL instances. Use with care as it can lead to dangling resources.
         
     | 
| 
       413 
423 
     | 
    
         
             
                    :param pulumi.Input[_builtins.str] network: Name of VPC network connected with service producers using VPC peering.
         
     | 
| 
       414 
424 
     | 
    
         
             
                    :param pulumi.Input[_builtins.str] peering: (Computed) The name of the VPC Network Peering connection that was created by the service producer.
         
     | 
| 
       415 
425 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] reserved_peering_ranges: Named IP address range(s) of PEERING type reserved for
         
     | 
| 
         @@ -435,6 +445,9 @@ class Connection(pulumi.CustomResource): 
     | 
|
| 
       435 
445 
     | 
    
         
             
                @_builtins.property
         
     | 
| 
       436 
446 
     | 
    
         
             
                @pulumi.getter(name="deletionPolicy")
         
     | 
| 
       437 
447 
     | 
    
         
             
                def deletion_policy(self) -> pulumi.Output[Optional[_builtins.str]]:
         
     | 
| 
      
 448 
     | 
    
         
            +
                    """
         
     | 
| 
      
 449 
     | 
    
         
            +
                    The deletion policy for the service networking connection. Setting to ABANDON allows the resource to be abandoned rather than deleted. This will enable a successful pulumi destroy when destroying CloudSQL instances. Use with care as it can lead to dangling resources.
         
     | 
| 
      
 450 
     | 
    
         
            +
                    """
         
     | 
| 
       438 
451 
     | 
    
         
             
                    return pulumi.get(self, "deletion_policy")
         
     | 
| 
       439 
452 
     | 
    
         | 
| 
       440 
453 
     | 
    
         
             
                @_builtins.property
         
     | 
| 
         @@ -2,7 +2,7 @@ pulumi_gcp/__init__.py,sha256=PuMGWMhZ0M3mYUrTk5OzktdXOoY3q7lO1NnR0pTsZt0,255244 
     | 
|
| 
       2 
2 
     | 
    
         
             
            pulumi_gcp/_inputs.py,sha256=9NE1j2Jtucd4Z7z_r1il6wrHGF17X2oNokzIEQIOYZE,3787
         
     | 
| 
       3 
3 
     | 
    
         
             
            pulumi_gcp/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
         
     | 
| 
       4 
4 
     | 
    
         
             
            pulumi_gcp/provider.py,sha256=D5OkrZN8orQ1Gqz9yrV7i0RsRInlX6caJPfjQsFPak8,233131
         
     | 
| 
       5 
     | 
    
         
            -
            pulumi_gcp/pulumi-plugin.json,sha256= 
     | 
| 
      
 5 
     | 
    
         
            +
            pulumi_gcp/pulumi-plugin.json,sha256=jyy4zynzKLvRfUhZc48nV_c4lDziAUyENCNpOf-1brU,79
         
     | 
| 
       6 
6 
     | 
    
         
             
            pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
         
     | 
| 
       7 
7 
     | 
    
         
             
            pulumi_gcp/accessapproval/__init__.py,sha256=7WCKQDjkMsqVD0VCrMLh7-CQN7MTmnk2UROrYzvs0F4,413
         
     | 
| 
       8 
8 
     | 
    
         
             
            pulumi_gcp/accessapproval/get_folder_service_account.py,sha256=34v0e2PxL6mgp2WnY01WVPWbvxtzwRkqtl9mzoRkOLo,6441
         
     | 
| 
         @@ -1808,7 +1808,7 @@ pulumi_gcp/servicedirectory/service_iam_binding.py,sha256=ywQgrIk90Jk-wuJocSlDH- 
     | 
|
| 
       1808 
1808 
     | 
    
         
             
            pulumi_gcp/servicedirectory/service_iam_member.py,sha256=DwvKnuCO-fNPiNTJ3FmvMyfd0pw3AQkemVn_NfZsnec,39499
         
     | 
| 
       1809 
1809 
     | 
    
         
             
            pulumi_gcp/servicedirectory/service_iam_policy.py,sha256=gl9u-Z76oQfSqe2CIVqFMEU7A3HXbPCKmcY3QkFcgUc,22975
         
     | 
| 
       1810 
1810 
     | 
    
         
             
            pulumi_gcp/servicenetworking/__init__.py,sha256=ioms7F2raRroI9_OPc3hcVhfDcdBypePfhgBor8YNUc,412
         
     | 
| 
       1811 
     | 
    
         
            -
            pulumi_gcp/servicenetworking/connection.py,sha256= 
     | 
| 
      
 1811 
     | 
    
         
            +
            pulumi_gcp/servicenetworking/connection.py,sha256=9DhskmwKn_I4H-NYwR7W1hoEySDZS5mNnNmWbnWw9ds,26381
         
     | 
| 
       1812 
1812 
     | 
    
         
             
            pulumi_gcp/servicenetworking/get_peered_dns_domain.py,sha256=Yrnvbr3e_4MYkMdM3dgOP9N2u0j_X8ph-0EIFv3zduU,6185
         
     | 
| 
       1813 
1813 
     | 
    
         
             
            pulumi_gcp/servicenetworking/peered_dns_domain.py,sha256=D9FykQHnmWQnYNq9UzISlrrZJdEoPjQmN0ZD9PBzRx0,19373
         
     | 
| 
       1814 
1814 
     | 
    
         
             
            pulumi_gcp/servicenetworking/vpc_service_controls.py,sha256=7rRuVDklaV097Fj3TcJVGRYslawavLwzWFLmDj8e1t4,22575
         
     | 
| 
         @@ -2034,7 +2034,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=KM_jsjBkRDDF_v6H 
     | 
|
| 
       2034 
2034 
     | 
    
         
             
            pulumi_gcp/workstations/workstation_iam_binding.py,sha256=_KGKrsho5AbuZ3K2D1lmoN8KsbiMh2L2saIeO86AkVQ,57772
         
     | 
| 
       2035 
2035 
     | 
    
         
             
            pulumi_gcp/workstations/workstation_iam_member.py,sha256=5KIgJXVQno-z6nv7tlgTZhExU2vO_pmEqtDz4249NMc,57371
         
     | 
| 
       2036 
2036 
     | 
    
         
             
            pulumi_gcp/workstations/workstation_iam_policy.py,sha256=rU98LWchg9ucBAkBTRYmvxf2usGpxStcUzTSWGm3NL8,40795
         
     | 
| 
       2037 
     | 
    
         
            -
            pulumi_gcp-9.4. 
     | 
| 
       2038 
     | 
    
         
            -
            pulumi_gcp-9.4. 
     | 
| 
       2039 
     | 
    
         
            -
            pulumi_gcp-9.4. 
     | 
| 
       2040 
     | 
    
         
            -
            pulumi_gcp-9.4. 
     | 
| 
      
 2037 
     | 
    
         
            +
            pulumi_gcp-9.4.0a1760979403.dist-info/METADATA,sha256=-OBvbGlKGHbdNYLt4qYvEoT8e7Y4vMuZa6tmeBNEhvw,2740
         
     | 
| 
      
 2038 
     | 
    
         
            +
            pulumi_gcp-9.4.0a1760979403.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
         
     | 
| 
      
 2039 
     | 
    
         
            +
            pulumi_gcp-9.4.0a1760979403.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
         
     | 
| 
      
 2040 
     | 
    
         
            +
            pulumi_gcp-9.4.0a1760979403.dist-info/RECORD,,
         
     | 
| 
         
            File without changes
         
     | 
    
        {pulumi_gcp-9.4.0a1760597530.dist-info → pulumi_gcp-9.4.0a1760979403.dist-info}/top_level.txt
    RENAMED
    
    | 
         
            File without changes
         
     |