pulumi-gcp 8.14.0a1736853524__py3-none-any.whl → 8.14.0a1736952890__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/__init__.py +32 -0
 - pulumi_gcp/applicationintegration/_inputs.py +3 -3
 - pulumi_gcp/applicationintegration/outputs.py +2 -2
 - pulumi_gcp/beyondcorp/__init__.py +1 -0
 - pulumi_gcp/beyondcorp/_inputs.py +93 -0
 - pulumi_gcp/beyondcorp/outputs.py +89 -0
 - pulumi_gcp/beyondcorp/security_gateway.py +670 -0
 - pulumi_gcp/blockchainnodeengine/_inputs.py +3 -3
 - pulumi_gcp/blockchainnodeengine/outputs.py +2 -2
 - pulumi_gcp/certificateauthority/_inputs.py +6 -6
 - pulumi_gcp/certificateauthority/outputs.py +4 -4
 - pulumi_gcp/certificatemanager/_inputs.py +3 -3
 - pulumi_gcp/certificatemanager/outputs.py +2 -2
 - pulumi_gcp/chronicle/__init__.py +2 -0
 - pulumi_gcp/chronicle/_inputs.py +388 -0
 - pulumi_gcp/chronicle/data_access_label.py +690 -0
 - pulumi_gcp/chronicle/data_access_scope.py +1094 -0
 - pulumi_gcp/chronicle/outputs.py +322 -0
 - pulumi_gcp/chronicle/watchlist.py +68 -45
 - pulumi_gcp/cloudbuild/_inputs.py +3 -3
 - pulumi_gcp/cloudbuild/outputs.py +2 -2
 - pulumi_gcp/cloudquota/__init__.py +1 -0
 - pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +336 -0
 - pulumi_gcp/compute/_inputs.py +33 -33
 - pulumi_gcp/compute/instance_group_manager.py +9 -9
 - pulumi_gcp/compute/outputs.py +22 -22
 - pulumi_gcp/compute/region_instance_group_manager.py +9 -9
 - pulumi_gcp/datacatalog/_inputs.py +3 -3
 - pulumi_gcp/datacatalog/outputs.py +2 -2
 - pulumi_gcp/developerconnect/_inputs.py +910 -42
 - pulumi_gcp/developerconnect/connection.py +614 -86
 - pulumi_gcp/developerconnect/git_repository_link.py +4 -0
 - pulumi_gcp/developerconnect/outputs.py +717 -28
 - pulumi_gcp/dns/_inputs.py +124 -20
 - pulumi_gcp/dns/outputs.py +90 -16
 - pulumi_gcp/dns/record_set.py +82 -0
 - pulumi_gcp/edgecontainer/_inputs.py +3 -3
 - pulumi_gcp/edgecontainer/outputs.py +2 -2
 - pulumi_gcp/gkeonprem/_inputs.py +15 -15
 - pulumi_gcp/gkeonprem/outputs.py +10 -10
 - pulumi_gcp/gkeonprem/v_mware_cluster.py +1 -1
 - pulumi_gcp/iap/_inputs.py +9 -3
 - pulumi_gcp/iap/outputs.py +6 -2
 - pulumi_gcp/iap/settings.py +63 -63
 - pulumi_gcp/identityplatform/_inputs.py +9 -9
 - pulumi_gcp/identityplatform/outputs.py +6 -6
 - pulumi_gcp/integrationconnectors/_inputs.py +6 -6
 - pulumi_gcp/integrationconnectors/outputs.py +4 -4
 - pulumi_gcp/monitoring/_inputs.py +3 -3
 - pulumi_gcp/monitoring/outputs.py +2 -2
 - pulumi_gcp/oracledatabase/_inputs.py +3 -3
 - pulumi_gcp/oracledatabase/outputs.py +2 -2
 - pulumi_gcp/pulumi-plugin.json +1 -1
 - pulumi_gcp/sql/_inputs.py +20 -0
 - pulumi_gcp/sql/database_instance.py +2 -2
 - pulumi_gcp/sql/outputs.py +36 -0
 - pulumi_gcp/transcoder/_inputs.py +6 -6
 - pulumi_gcp/transcoder/outputs.py +4 -4
 - {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/METADATA +1 -1
 - {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/RECORD +62 -58
 - {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/WHEEL +0 -0
 - {pulumi_gcp-8.14.0a1736853524.dist-info → pulumi_gcp-8.14.0a1736952890.dist-info}/top_level.txt +0 -0
 
| 
         @@ -0,0 +1,336 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # coding=utf-8
         
     | 
| 
      
 2 
     | 
    
         
            +
            # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
         
     | 
| 
      
 3 
     | 
    
         
            +
            # *** Do not edit by hand unless you're certain you know what you are doing! ***
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            import copy
         
     | 
| 
      
 6 
     | 
    
         
            +
            import warnings
         
     | 
| 
      
 7 
     | 
    
         
            +
            import sys
         
     | 
| 
      
 8 
     | 
    
         
            +
            import pulumi
         
     | 
| 
      
 9 
     | 
    
         
            +
            import pulumi.runtime
         
     | 
| 
      
 10 
     | 
    
         
            +
            from typing import Any, Mapping, Optional, Sequence, Union, overload
         
     | 
| 
      
 11 
     | 
    
         
            +
            if sys.version_info >= (3, 11):
         
     | 
| 
      
 12 
     | 
    
         
            +
                from typing import NotRequired, TypedDict, TypeAlias
         
     | 
| 
      
 13 
     | 
    
         
            +
            else:
         
     | 
| 
      
 14 
     | 
    
         
            +
                from typing_extensions import NotRequired, TypedDict, TypeAlias
         
     | 
| 
      
 15 
     | 
    
         
            +
            from .. import _utilities
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            __all__ = ['SQuotaAdjusterSettingsArgs', 'SQuotaAdjusterSettings']
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
            @pulumi.input_type
         
     | 
| 
      
 20 
     | 
    
         
            +
            class SQuotaAdjusterSettingsArgs:
         
     | 
| 
      
 21 
     | 
    
         
            +
                def __init__(__self__, *,
         
     | 
| 
      
 22 
     | 
    
         
            +
                             enablement: pulumi.Input[str],
         
     | 
| 
      
 23 
     | 
    
         
            +
                             parent: Optional[pulumi.Input[str]] = None):
         
     | 
| 
      
 24 
     | 
    
         
            +
                    """
         
     | 
| 
      
 25 
     | 
    
         
            +
                    The set of arguments for constructing a SQuotaAdjusterSettings resource.
         
     | 
| 
      
 26 
     | 
    
         
            +
                    :param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
         
     | 
| 
      
 27 
     | 
    
         
            +
                           Possible values are: `ENABLED`, `DISABLED`.
         
     | 
| 
      
 28 
     | 
    
         
            +
                    :param pulumi.Input[str] parent: The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
         
     | 
| 
      
 29 
     | 
    
         
            +
                           
         
     | 
| 
      
 30 
     | 
    
         
            +
                           
         
     | 
| 
      
 31 
     | 
    
         
            +
                           - - -
         
     | 
| 
      
 32 
     | 
    
         
            +
                    """
         
     | 
| 
      
 33 
     | 
    
         
            +
                    pulumi.set(__self__, "enablement", enablement)
         
     | 
| 
      
 34 
     | 
    
         
            +
                    if parent is not None:
         
     | 
| 
      
 35 
     | 
    
         
            +
                        pulumi.set(__self__, "parent", parent)
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
                @property
         
     | 
| 
      
 38 
     | 
    
         
            +
                @pulumi.getter
         
     | 
| 
      
 39 
     | 
    
         
            +
                def enablement(self) -> pulumi.Input[str]:
         
     | 
| 
      
 40 
     | 
    
         
            +
                    """
         
     | 
| 
      
 41 
     | 
    
         
            +
                    Required. The configured value of the enablement at the given resource.
         
     | 
| 
      
 42 
     | 
    
         
            +
                    Possible values are: `ENABLED`, `DISABLED`.
         
     | 
| 
      
 43 
     | 
    
         
            +
                    """
         
     | 
| 
      
 44 
     | 
    
         
            +
                    return pulumi.get(self, "enablement")
         
     | 
| 
      
 45 
     | 
    
         
            +
             
     | 
| 
      
 46 
     | 
    
         
            +
                @enablement.setter
         
     | 
| 
      
 47 
     | 
    
         
            +
                def enablement(self, value: pulumi.Input[str]):
         
     | 
| 
      
 48 
     | 
    
         
            +
                    pulumi.set(self, "enablement", value)
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
                @property
         
     | 
| 
      
 51 
     | 
    
         
            +
                @pulumi.getter
         
     | 
| 
      
 52 
     | 
    
         
            +
                def parent(self) -> Optional[pulumi.Input[str]]:
         
     | 
| 
      
 53 
     | 
    
         
            +
                    """
         
     | 
| 
      
 54 
     | 
    
         
            +
                    The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
             
     | 
| 
      
 57 
     | 
    
         
            +
                    - - -
         
     | 
| 
      
 58 
     | 
    
         
            +
                    """
         
     | 
| 
      
 59 
     | 
    
         
            +
                    return pulumi.get(self, "parent")
         
     | 
| 
      
 60 
     | 
    
         
            +
             
     | 
| 
      
 61 
     | 
    
         
            +
                @parent.setter
         
     | 
| 
      
 62 
     | 
    
         
            +
                def parent(self, value: Optional[pulumi.Input[str]]):
         
     | 
| 
      
 63 
     | 
    
         
            +
                    pulumi.set(self, "parent", value)
         
     | 
| 
      
 64 
     | 
    
         
            +
             
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
            @pulumi.input_type
         
     | 
| 
      
 67 
     | 
    
         
            +
            class _SQuotaAdjusterSettingsState:
         
     | 
| 
      
 68 
     | 
    
         
            +
                def __init__(__self__, *,
         
     | 
| 
      
 69 
     | 
    
         
            +
                             effective_container: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 70 
     | 
    
         
            +
                             effective_enablement: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 71 
     | 
    
         
            +
                             enablement: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 72 
     | 
    
         
            +
                             parent: Optional[pulumi.Input[str]] = None):
         
     | 
| 
      
 73 
     | 
    
         
            +
                    """
         
     | 
| 
      
 74 
     | 
    
         
            +
                    Input properties used for looking up and filtering SQuotaAdjusterSettings resources.
         
     | 
| 
      
 75 
     | 
    
         
            +
                    :param pulumi.Input[str] effective_container: Fields to capture the hierarchy enablement.
         
     | 
| 
      
 76 
     | 
    
         
            +
                           The container (org/folder/project) that determines if the quota adjuster is set for this project/folder/org. We use the nearest-ancestor to determine the effective container.
         
     | 
| 
      
 77 
     | 
    
         
            +
                           The nearest ancestor (including this container) with `enabled` set (either true or false) will be returned.
         
     | 
| 
      
 78 
     | 
    
         
            +
                    :param pulumi.Input[str] effective_enablement: Based on the effective container`s setting above, determines Whether this container has the quota adjuster enabled.
         
     | 
| 
      
 79 
     | 
    
         
            +
                    :param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
         
     | 
| 
      
 80 
     | 
    
         
            +
                           Possible values are: `ENABLED`, `DISABLED`.
         
     | 
| 
      
 81 
     | 
    
         
            +
                    :param pulumi.Input[str] parent: The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
         
     | 
| 
      
 82 
     | 
    
         
            +
                           
         
     | 
| 
      
 83 
     | 
    
         
            +
                           
         
     | 
| 
      
 84 
     | 
    
         
            +
                           - - -
         
     | 
| 
      
 85 
     | 
    
         
            +
                    """
         
     | 
| 
      
 86 
     | 
    
         
            +
                    if effective_container is not None:
         
     | 
| 
      
 87 
     | 
    
         
            +
                        pulumi.set(__self__, "effective_container", effective_container)
         
     | 
| 
      
 88 
     | 
    
         
            +
                    if effective_enablement is not None:
         
     | 
| 
      
 89 
     | 
    
         
            +
                        pulumi.set(__self__, "effective_enablement", effective_enablement)
         
     | 
| 
      
 90 
     | 
    
         
            +
                    if enablement is not None:
         
     | 
| 
      
 91 
     | 
    
         
            +
                        pulumi.set(__self__, "enablement", enablement)
         
     | 
| 
      
 92 
     | 
    
         
            +
                    if parent is not None:
         
     | 
| 
      
 93 
     | 
    
         
            +
                        pulumi.set(__self__, "parent", parent)
         
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
                @property
         
     | 
| 
      
 96 
     | 
    
         
            +
                @pulumi.getter(name="effectiveContainer")
         
     | 
| 
      
 97 
     | 
    
         
            +
                def effective_container(self) -> Optional[pulumi.Input[str]]:
         
     | 
| 
      
 98 
     | 
    
         
            +
                    """
         
     | 
| 
      
 99 
     | 
    
         
            +
                    Fields to capture the hierarchy enablement.
         
     | 
| 
      
 100 
     | 
    
         
            +
                    The container (org/folder/project) that determines if the quota adjuster is set for this project/folder/org. We use the nearest-ancestor to determine the effective container.
         
     | 
| 
      
 101 
     | 
    
         
            +
                    The nearest ancestor (including this container) with `enabled` set (either true or false) will be returned.
         
     | 
| 
      
 102 
     | 
    
         
            +
                    """
         
     | 
| 
      
 103 
     | 
    
         
            +
                    return pulumi.get(self, "effective_container")
         
     | 
| 
      
 104 
     | 
    
         
            +
             
     | 
| 
      
 105 
     | 
    
         
            +
                @effective_container.setter
         
     | 
| 
      
 106 
     | 
    
         
            +
                def effective_container(self, value: Optional[pulumi.Input[str]]):
         
     | 
| 
      
 107 
     | 
    
         
            +
                    pulumi.set(self, "effective_container", value)
         
     | 
| 
      
 108 
     | 
    
         
            +
             
     | 
| 
      
 109 
     | 
    
         
            +
                @property
         
     | 
| 
      
 110 
     | 
    
         
            +
                @pulumi.getter(name="effectiveEnablement")
         
     | 
| 
      
 111 
     | 
    
         
            +
                def effective_enablement(self) -> Optional[pulumi.Input[str]]:
         
     | 
| 
      
 112 
     | 
    
         
            +
                    """
         
     | 
| 
      
 113 
     | 
    
         
            +
                    Based on the effective container`s setting above, determines Whether this container has the quota adjuster enabled.
         
     | 
| 
      
 114 
     | 
    
         
            +
                    """
         
     | 
| 
      
 115 
     | 
    
         
            +
                    return pulumi.get(self, "effective_enablement")
         
     | 
| 
      
 116 
     | 
    
         
            +
             
     | 
| 
      
 117 
     | 
    
         
            +
                @effective_enablement.setter
         
     | 
| 
      
 118 
     | 
    
         
            +
                def effective_enablement(self, value: Optional[pulumi.Input[str]]):
         
     | 
| 
      
 119 
     | 
    
         
            +
                    pulumi.set(self, "effective_enablement", value)
         
     | 
| 
      
 120 
     | 
    
         
            +
             
     | 
| 
      
 121 
     | 
    
         
            +
                @property
         
     | 
| 
      
 122 
     | 
    
         
            +
                @pulumi.getter
         
     | 
| 
      
 123 
     | 
    
         
            +
                def enablement(self) -> Optional[pulumi.Input[str]]:
         
     | 
| 
      
 124 
     | 
    
         
            +
                    """
         
     | 
| 
      
 125 
     | 
    
         
            +
                    Required. The configured value of the enablement at the given resource.
         
     | 
| 
      
 126 
     | 
    
         
            +
                    Possible values are: `ENABLED`, `DISABLED`.
         
     | 
| 
      
 127 
     | 
    
         
            +
                    """
         
     | 
| 
      
 128 
     | 
    
         
            +
                    return pulumi.get(self, "enablement")
         
     | 
| 
      
 129 
     | 
    
         
            +
             
     | 
| 
      
 130 
     | 
    
         
            +
                @enablement.setter
         
     | 
| 
      
 131 
     | 
    
         
            +
                def enablement(self, value: Optional[pulumi.Input[str]]):
         
     | 
| 
      
 132 
     | 
    
         
            +
                    pulumi.set(self, "enablement", value)
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
                @property
         
     | 
| 
      
 135 
     | 
    
         
            +
                @pulumi.getter
         
     | 
| 
      
 136 
     | 
    
         
            +
                def parent(self) -> Optional[pulumi.Input[str]]:
         
     | 
| 
      
 137 
     | 
    
         
            +
                    """
         
     | 
| 
      
 138 
     | 
    
         
            +
                    The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
         
     | 
| 
      
 139 
     | 
    
         
            +
             
     | 
| 
      
 140 
     | 
    
         
            +
             
     | 
| 
      
 141 
     | 
    
         
            +
                    - - -
         
     | 
| 
      
 142 
     | 
    
         
            +
                    """
         
     | 
| 
      
 143 
     | 
    
         
            +
                    return pulumi.get(self, "parent")
         
     | 
| 
      
 144 
     | 
    
         
            +
             
     | 
| 
      
 145 
     | 
    
         
            +
                @parent.setter
         
     | 
| 
      
 146 
     | 
    
         
            +
                def parent(self, value: Optional[pulumi.Input[str]]):
         
     | 
| 
      
 147 
     | 
    
         
            +
                    pulumi.set(self, "parent", value)
         
     | 
| 
      
 148 
     | 
    
         
            +
             
     | 
| 
      
 149 
     | 
    
         
            +
             
     | 
| 
      
 150 
     | 
    
         
            +
            class SQuotaAdjusterSettings(pulumi.CustomResource):
         
     | 
| 
      
 151 
     | 
    
         
            +
                @overload
         
     | 
| 
      
 152 
     | 
    
         
            +
                def __init__(__self__,
         
     | 
| 
      
 153 
     | 
    
         
            +
                             resource_name: str,
         
     | 
| 
      
 154 
     | 
    
         
            +
                             opts: Optional[pulumi.ResourceOptions] = None,
         
     | 
| 
      
 155 
     | 
    
         
            +
                             enablement: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 156 
     | 
    
         
            +
                             parent: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 157 
     | 
    
         
            +
                             __props__=None):
         
     | 
| 
      
 158 
     | 
    
         
            +
                    """
         
     | 
| 
      
 159 
     | 
    
         
            +
                    ## Example Usage
         
     | 
| 
      
 160 
     | 
    
         
            +
             
     | 
| 
      
 161 
     | 
    
         
            +
                    ### Cloudquotas Quota Adjuster Settings Basic
         
     | 
| 
      
 162 
     | 
    
         
            +
             
     | 
| 
      
 163 
     | 
    
         
            +
                    ```python
         
     | 
| 
      
 164 
     | 
    
         
            +
                    import pulumi
         
     | 
| 
      
 165 
     | 
    
         
            +
                    import pulumi_gcp as gcp
         
     | 
| 
      
 166 
     | 
    
         
            +
             
     | 
| 
      
 167 
     | 
    
         
            +
                    adjuster_settings = gcp.cloudquota.SQuotaAdjusterSettings("adjuster_settings",
         
     | 
| 
      
 168 
     | 
    
         
            +
                        parent="projects/104740170505",
         
     | 
| 
      
 169 
     | 
    
         
            +
                        enablement="ENABLED")
         
     | 
| 
      
 170 
     | 
    
         
            +
                    ```
         
     | 
| 
      
 171 
     | 
    
         
            +
             
     | 
| 
      
 172 
     | 
    
         
            +
                    ## Import
         
     | 
| 
      
 173 
     | 
    
         
            +
             
     | 
| 
      
 174 
     | 
    
         
            +
                    QuotaAdjusterSettings can be imported using any of these accepted formats:
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
                    * `{{parent}}/locations/global/quotaAdjusterSettings`
         
     | 
| 
      
 177 
     | 
    
         
            +
             
     | 
| 
      
 178 
     | 
    
         
            +
                    When using the `pulumi import` command, QuotaAdjusterSettings can be imported using one of the formats above. For example:
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
                    ```sh
         
     | 
| 
      
 181 
     | 
    
         
            +
                    $ pulumi import gcp:cloudquota/sQuotaAdjusterSettings:SQuotaAdjusterSettings default {{parent}}/locations/global/quotaAdjusterSettings
         
     | 
| 
      
 182 
     | 
    
         
            +
                    ```
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
                    :param str resource_name: The name of the resource.
         
     | 
| 
      
 185 
     | 
    
         
            +
                    :param pulumi.ResourceOptions opts: Options for the resource.
         
     | 
| 
      
 186 
     | 
    
         
            +
                    :param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
         
     | 
| 
      
 187 
     | 
    
         
            +
                           Possible values are: `ENABLED`, `DISABLED`.
         
     | 
| 
      
 188 
     | 
    
         
            +
                    :param pulumi.Input[str] parent: The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
         
     | 
| 
      
 189 
     | 
    
         
            +
                           
         
     | 
| 
      
 190 
     | 
    
         
            +
                           
         
     | 
| 
      
 191 
     | 
    
         
            +
                           - - -
         
     | 
| 
      
 192 
     | 
    
         
            +
                    """
         
     | 
| 
      
 193 
     | 
    
         
            +
                    ...
         
     | 
| 
      
 194 
     | 
    
         
            +
                @overload
         
     | 
| 
      
 195 
     | 
    
         
            +
                def __init__(__self__,
         
     | 
| 
      
 196 
     | 
    
         
            +
                             resource_name: str,
         
     | 
| 
      
 197 
     | 
    
         
            +
                             args: SQuotaAdjusterSettingsArgs,
         
     | 
| 
      
 198 
     | 
    
         
            +
                             opts: Optional[pulumi.ResourceOptions] = None):
         
     | 
| 
      
 199 
     | 
    
         
            +
                    """
         
     | 
| 
      
 200 
     | 
    
         
            +
                    ## Example Usage
         
     | 
| 
      
 201 
     | 
    
         
            +
             
     | 
| 
      
 202 
     | 
    
         
            +
                    ### Cloudquotas Quota Adjuster Settings Basic
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
                    ```python
         
     | 
| 
      
 205 
     | 
    
         
            +
                    import pulumi
         
     | 
| 
      
 206 
     | 
    
         
            +
                    import pulumi_gcp as gcp
         
     | 
| 
      
 207 
     | 
    
         
            +
             
     | 
| 
      
 208 
     | 
    
         
            +
                    adjuster_settings = gcp.cloudquota.SQuotaAdjusterSettings("adjuster_settings",
         
     | 
| 
      
 209 
     | 
    
         
            +
                        parent="projects/104740170505",
         
     | 
| 
      
 210 
     | 
    
         
            +
                        enablement="ENABLED")
         
     | 
| 
      
 211 
     | 
    
         
            +
                    ```
         
     | 
| 
      
 212 
     | 
    
         
            +
             
     | 
| 
      
 213 
     | 
    
         
            +
                    ## Import
         
     | 
| 
      
 214 
     | 
    
         
            +
             
     | 
| 
      
 215 
     | 
    
         
            +
                    QuotaAdjusterSettings can be imported using any of these accepted formats:
         
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
                    * `{{parent}}/locations/global/quotaAdjusterSettings`
         
     | 
| 
      
 218 
     | 
    
         
            +
             
     | 
| 
      
 219 
     | 
    
         
            +
                    When using the `pulumi import` command, QuotaAdjusterSettings can be imported using one of the formats above. For example:
         
     | 
| 
      
 220 
     | 
    
         
            +
             
     | 
| 
      
 221 
     | 
    
         
            +
                    ```sh
         
     | 
| 
      
 222 
     | 
    
         
            +
                    $ pulumi import gcp:cloudquota/sQuotaAdjusterSettings:SQuotaAdjusterSettings default {{parent}}/locations/global/quotaAdjusterSettings
         
     | 
| 
      
 223 
     | 
    
         
            +
                    ```
         
     | 
| 
      
 224 
     | 
    
         
            +
             
     | 
| 
      
 225 
     | 
    
         
            +
                    :param str resource_name: The name of the resource.
         
     | 
| 
      
 226 
     | 
    
         
            +
                    :param SQuotaAdjusterSettingsArgs args: The arguments to use to populate this resource's properties.
         
     | 
| 
      
 227 
     | 
    
         
            +
                    :param pulumi.ResourceOptions opts: Options for the resource.
         
     | 
| 
      
 228 
     | 
    
         
            +
                    """
         
     | 
| 
      
 229 
     | 
    
         
            +
                    ...
         
     | 
| 
      
 230 
     | 
    
         
            +
                def __init__(__self__, resource_name: str, *args, **kwargs):
         
     | 
| 
      
 231 
     | 
    
         
            +
                    resource_args, opts = _utilities.get_resource_args_opts(SQuotaAdjusterSettingsArgs, pulumi.ResourceOptions, *args, **kwargs)
         
     | 
| 
      
 232 
     | 
    
         
            +
                    if resource_args is not None:
         
     | 
| 
      
 233 
     | 
    
         
            +
                        __self__._internal_init(resource_name, opts, **resource_args.__dict__)
         
     | 
| 
      
 234 
     | 
    
         
            +
                    else:
         
     | 
| 
      
 235 
     | 
    
         
            +
                        __self__._internal_init(resource_name, *args, **kwargs)
         
     | 
| 
      
 236 
     | 
    
         
            +
             
     | 
| 
      
 237 
     | 
    
         
            +
                def _internal_init(__self__,
         
     | 
| 
      
 238 
     | 
    
         
            +
                             resource_name: str,
         
     | 
| 
      
 239 
     | 
    
         
            +
                             opts: Optional[pulumi.ResourceOptions] = None,
         
     | 
| 
      
 240 
     | 
    
         
            +
                             enablement: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 241 
     | 
    
         
            +
                             parent: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 242 
     | 
    
         
            +
                             __props__=None):
         
     | 
| 
      
 243 
     | 
    
         
            +
                    opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
         
     | 
| 
      
 244 
     | 
    
         
            +
                    if not isinstance(opts, pulumi.ResourceOptions):
         
     | 
| 
      
 245 
     | 
    
         
            +
                        raise TypeError('Expected resource options to be a ResourceOptions instance')
         
     | 
| 
      
 246 
     | 
    
         
            +
                    if opts.id is None:
         
     | 
| 
      
 247 
     | 
    
         
            +
                        if __props__ is not None:
         
     | 
| 
      
 248 
     | 
    
         
            +
                            raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
         
     | 
| 
      
 249 
     | 
    
         
            +
                        __props__ = SQuotaAdjusterSettingsArgs.__new__(SQuotaAdjusterSettingsArgs)
         
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
                        if enablement is None and not opts.urn:
         
     | 
| 
      
 252 
     | 
    
         
            +
                            raise TypeError("Missing required property 'enablement'")
         
     | 
| 
      
 253 
     | 
    
         
            +
                        __props__.__dict__["enablement"] = enablement
         
     | 
| 
      
 254 
     | 
    
         
            +
                        __props__.__dict__["parent"] = parent
         
     | 
| 
      
 255 
     | 
    
         
            +
                        __props__.__dict__["effective_container"] = None
         
     | 
| 
      
 256 
     | 
    
         
            +
                        __props__.__dict__["effective_enablement"] = None
         
     | 
| 
      
 257 
     | 
    
         
            +
                    super(SQuotaAdjusterSettings, __self__).__init__(
         
     | 
| 
      
 258 
     | 
    
         
            +
                        'gcp:cloudquota/sQuotaAdjusterSettings:SQuotaAdjusterSettings',
         
     | 
| 
      
 259 
     | 
    
         
            +
                        resource_name,
         
     | 
| 
      
 260 
     | 
    
         
            +
                        __props__,
         
     | 
| 
      
 261 
     | 
    
         
            +
                        opts)
         
     | 
| 
      
 262 
     | 
    
         
            +
             
     | 
| 
      
 263 
     | 
    
         
            +
                @staticmethod
         
     | 
| 
      
 264 
     | 
    
         
            +
                def get(resource_name: str,
         
     | 
| 
      
 265 
     | 
    
         
            +
                        id: pulumi.Input[str],
         
     | 
| 
      
 266 
     | 
    
         
            +
                        opts: Optional[pulumi.ResourceOptions] = None,
         
     | 
| 
      
 267 
     | 
    
         
            +
                        effective_container: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 268 
     | 
    
         
            +
                        effective_enablement: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 269 
     | 
    
         
            +
                        enablement: Optional[pulumi.Input[str]] = None,
         
     | 
| 
      
 270 
     | 
    
         
            +
                        parent: Optional[pulumi.Input[str]] = None) -> 'SQuotaAdjusterSettings':
         
     | 
| 
      
 271 
     | 
    
         
            +
                    """
         
     | 
| 
      
 272 
     | 
    
         
            +
                    Get an existing SQuotaAdjusterSettings resource's state with the given name, id, and optional extra
         
     | 
| 
      
 273 
     | 
    
         
            +
                    properties used to qualify the lookup.
         
     | 
| 
      
 274 
     | 
    
         
            +
             
     | 
| 
      
 275 
     | 
    
         
            +
                    :param str resource_name: The unique name of the resulting resource.
         
     | 
| 
      
 276 
     | 
    
         
            +
                    :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
         
     | 
| 
      
 277 
     | 
    
         
            +
                    :param pulumi.ResourceOptions opts: Options for the resource.
         
     | 
| 
      
 278 
     | 
    
         
            +
                    :param pulumi.Input[str] effective_container: Fields to capture the hierarchy enablement.
         
     | 
| 
      
 279 
     | 
    
         
            +
                           The container (org/folder/project) that determines if the quota adjuster is set for this project/folder/org. We use the nearest-ancestor to determine the effective container.
         
     | 
| 
      
 280 
     | 
    
         
            +
                           The nearest ancestor (including this container) with `enabled` set (either true or false) will be returned.
         
     | 
| 
      
 281 
     | 
    
         
            +
                    :param pulumi.Input[str] effective_enablement: Based on the effective container`s setting above, determines Whether this container has the quota adjuster enabled.
         
     | 
| 
      
 282 
     | 
    
         
            +
                    :param pulumi.Input[str] enablement: Required. The configured value of the enablement at the given resource.
         
     | 
| 
      
 283 
     | 
    
         
            +
                           Possible values are: `ENABLED`, `DISABLED`.
         
     | 
| 
      
 284 
     | 
    
         
            +
                    :param pulumi.Input[str] parent: The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
         
     | 
| 
      
 285 
     | 
    
         
            +
                           
         
     | 
| 
      
 286 
     | 
    
         
            +
                           
         
     | 
| 
      
 287 
     | 
    
         
            +
                           - - -
         
     | 
| 
      
 288 
     | 
    
         
            +
                    """
         
     | 
| 
      
 289 
     | 
    
         
            +
                    opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
         
     | 
| 
      
 290 
     | 
    
         
            +
             
     | 
| 
      
 291 
     | 
    
         
            +
                    __props__ = _SQuotaAdjusterSettingsState.__new__(_SQuotaAdjusterSettingsState)
         
     | 
| 
      
 292 
     | 
    
         
            +
             
     | 
| 
      
 293 
     | 
    
         
            +
                    __props__.__dict__["effective_container"] = effective_container
         
     | 
| 
      
 294 
     | 
    
         
            +
                    __props__.__dict__["effective_enablement"] = effective_enablement
         
     | 
| 
      
 295 
     | 
    
         
            +
                    __props__.__dict__["enablement"] = enablement
         
     | 
| 
      
 296 
     | 
    
         
            +
                    __props__.__dict__["parent"] = parent
         
     | 
| 
      
 297 
     | 
    
         
            +
                    return SQuotaAdjusterSettings(resource_name, opts=opts, __props__=__props__)
         
     | 
| 
      
 298 
     | 
    
         
            +
             
     | 
| 
      
 299 
     | 
    
         
            +
                @property
         
     | 
| 
      
 300 
     | 
    
         
            +
                @pulumi.getter(name="effectiveContainer")
         
     | 
| 
      
 301 
     | 
    
         
            +
                def effective_container(self) -> pulumi.Output[str]:
         
     | 
| 
      
 302 
     | 
    
         
            +
                    """
         
     | 
| 
      
 303 
     | 
    
         
            +
                    Fields to capture the hierarchy enablement.
         
     | 
| 
      
 304 
     | 
    
         
            +
                    The container (org/folder/project) that determines if the quota adjuster is set for this project/folder/org. We use the nearest-ancestor to determine the effective container.
         
     | 
| 
      
 305 
     | 
    
         
            +
                    The nearest ancestor (including this container) with `enabled` set (either true or false) will be returned.
         
     | 
| 
      
 306 
     | 
    
         
            +
                    """
         
     | 
| 
      
 307 
     | 
    
         
            +
                    return pulumi.get(self, "effective_container")
         
     | 
| 
      
 308 
     | 
    
         
            +
             
     | 
| 
      
 309 
     | 
    
         
            +
                @property
         
     | 
| 
      
 310 
     | 
    
         
            +
                @pulumi.getter(name="effectiveEnablement")
         
     | 
| 
      
 311 
     | 
    
         
            +
                def effective_enablement(self) -> pulumi.Output[str]:
         
     | 
| 
      
 312 
     | 
    
         
            +
                    """
         
     | 
| 
      
 313 
     | 
    
         
            +
                    Based on the effective container`s setting above, determines Whether this container has the quota adjuster enabled.
         
     | 
| 
      
 314 
     | 
    
         
            +
                    """
         
     | 
| 
      
 315 
     | 
    
         
            +
                    return pulumi.get(self, "effective_enablement")
         
     | 
| 
      
 316 
     | 
    
         
            +
             
     | 
| 
      
 317 
     | 
    
         
            +
                @property
         
     | 
| 
      
 318 
     | 
    
         
            +
                @pulumi.getter
         
     | 
| 
      
 319 
     | 
    
         
            +
                def enablement(self) -> pulumi.Output[str]:
         
     | 
| 
      
 320 
     | 
    
         
            +
                    """
         
     | 
| 
      
 321 
     | 
    
         
            +
                    Required. The configured value of the enablement at the given resource.
         
     | 
| 
      
 322 
     | 
    
         
            +
                    Possible values are: `ENABLED`, `DISABLED`.
         
     | 
| 
      
 323 
     | 
    
         
            +
                    """
         
     | 
| 
      
 324 
     | 
    
         
            +
                    return pulumi.get(self, "enablement")
         
     | 
| 
      
 325 
     | 
    
         
            +
             
     | 
| 
      
 326 
     | 
    
         
            +
                @property
         
     | 
| 
      
 327 
     | 
    
         
            +
                @pulumi.getter
         
     | 
| 
      
 328 
     | 
    
         
            +
                def parent(self) -> pulumi.Output[str]:
         
     | 
| 
      
 329 
     | 
    
         
            +
                    """
         
     | 
| 
      
 330 
     | 
    
         
            +
                    The parent of the quota preference. Allowed parents are "projects/[project-id / number]" or "folders/[folder-id / number]" or "organizations/[org-id / number]".
         
     | 
| 
      
 331 
     | 
    
         
            +
             
     | 
| 
      
 332 
     | 
    
         
            +
             
     | 
| 
      
 333 
     | 
    
         
            +
                    - - -
         
     | 
| 
      
 334 
     | 
    
         
            +
                    """
         
     | 
| 
      
 335 
     | 
    
         
            +
                    return pulumi.get(self, "parent")
         
     | 
| 
      
 336 
     | 
    
         
            +
             
     | 
    
        pulumi_gcp/compute/_inputs.py
    CHANGED
    
    | 
         @@ -5197,7 +5197,7 @@ if not MYPY: 
     | 
|
| 
       5197 
5197 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       5198 
5198 
     | 
    
         | 
| 
       5199 
5199 
     | 
    
         | 
| 
       5200 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 5200 
     | 
    
         
            +
                    <a name="nested_security_settings_aws_v4_authentication"></a>The `aws_v4_authentication` block supports:
         
     | 
| 
       5201 
5201 
     | 
    
         
             
                    """
         
     | 
| 
       5202 
5202 
     | 
    
         
             
                    client_tls_policy: NotRequired[pulumi.Input[str]]
         
     | 
| 
       5203 
5203 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -5226,7 +5226,7 @@ class BackendServiceSecuritySettingsArgs: 
     | 
|
| 
       5226 
5226 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       5227 
5227 
     | 
    
         | 
| 
       5228 
5228 
     | 
    
         | 
| 
       5229 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 5229 
     | 
    
         
            +
                           <a name="nested_security_settings_aws_v4_authentication"></a>The `aws_v4_authentication` block supports:
         
     | 
| 
       5230 
5230 
     | 
    
         
             
                    :param pulumi.Input[str] client_tls_policy: ClientTlsPolicy is a resource that specifies how a client should authenticate
         
     | 
| 
       5231 
5231 
     | 
    
         
             
                           connections to backends of a service. This resource itself does not affect
         
     | 
| 
       5232 
5232 
     | 
    
         
             
                           configuration unless it is attached to a backend service resource.
         
     | 
| 
         @@ -5250,7 +5250,7 @@ class BackendServiceSecuritySettingsArgs: 
     | 
|
| 
       5250 
5250 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       5251 
5251 
     | 
    
         | 
| 
       5252 
5252 
     | 
    
         | 
| 
       5253 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 5253 
     | 
    
         
            +
                    <a name="nested_security_settings_aws_v4_authentication"></a>The `aws_v4_authentication` block supports:
         
     | 
| 
       5254 
5254 
     | 
    
         
             
                    """
         
     | 
| 
       5255 
5255 
     | 
    
         
             
                    return pulumi.get(self, "aws_v4_authentication")
         
     | 
| 
       5256 
5256 
     | 
    
         | 
| 
         @@ -6456,7 +6456,7 @@ if not MYPY: 
     | 
|
| 
       6456 
6456 
     | 
    
         
             
                    Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       6457 
6457 
     | 
    
         | 
| 
       6458 
6458 
     | 
    
         | 
| 
       6459 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 6459 
     | 
    
         
            +
                    <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       6460 
6460 
     | 
    
         
             
                    """
         
     | 
| 
       6461 
6461 
     | 
    
         
             
            elif False:
         
     | 
| 
       6462 
6462 
     | 
    
         
             
                FirewallPolicyRuleMatchArgsDict: TypeAlias = Mapping[str, Any]
         
     | 
| 
         @@ -6490,7 +6490,7 @@ class FirewallPolicyRuleMatchArgs: 
     | 
|
| 
       6490 
6490 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_threat_intelligences: Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       6491 
6491 
     | 
    
         | 
| 
       6492 
6492 
     | 
    
         | 
| 
       6493 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 6493 
     | 
    
         
            +
                           <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       6494 
6494 
     | 
    
         
             
                    """
         
     | 
| 
       6495 
6495 
     | 
    
         
             
                    pulumi.set(__self__, "layer4_configs", layer4_configs)
         
     | 
| 
       6496 
6496 
     | 
    
         
             
                    if dest_address_groups is not None:
         
     | 
| 
         @@ -6642,7 +6642,7 @@ class FirewallPolicyRuleMatchArgs: 
     | 
|
| 
       6642 
6642 
     | 
    
         
             
                    Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       6643 
6643 
     | 
    
         | 
| 
       6644 
6644 
     | 
    
         | 
| 
       6645 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 6645 
     | 
    
         
            +
                    <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       6646 
6646 
     | 
    
         
             
                    """
         
     | 
| 
       6647 
6647 
     | 
    
         
             
                    return pulumi.get(self, "src_threat_intelligences")
         
     | 
| 
       6648 
6648 
     | 
    
         | 
| 
         @@ -7085,7 +7085,7 @@ if not MYPY: 
     | 
|
| 
       7085 
7085 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       7086 
7086 
     | 
    
         | 
| 
       7087 
7087 
     | 
    
         | 
| 
       7088 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 7088 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       7089 
7089 
     | 
    
         
             
                    """
         
     | 
| 
       7090 
7090 
     | 
    
         
             
                    src_address_groups: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
         
     | 
| 
       7091 
7091 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -7148,7 +7148,7 @@ class FirewallPolicyWithRulesPredefinedRuleMatchArgs: 
     | 
|
| 
       7148 
7148 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       7149 
7149 
     | 
    
         | 
| 
       7150 
7150 
     | 
    
         | 
| 
       7151 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 7151 
     | 
    
         
            +
                           <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       7152 
7152 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_address_groups: Address groups which should be matched against the traffic source.
         
     | 
| 
       7153 
7153 
     | 
    
         
             
                           Maximum number of source address groups is 10.
         
     | 
| 
       7154 
7154 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_fqdns: Fully Qualified Domain Name (FQDN) which should be matched against
         
     | 
| 
         @@ -7260,7 +7260,7 @@ class FirewallPolicyWithRulesPredefinedRuleMatchArgs: 
     | 
|
| 
       7260 
7260 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       7261 
7261 
     | 
    
         | 
| 
       7262 
7262 
     | 
    
         | 
| 
       7263 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 7263 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       7264 
7264 
     | 
    
         
             
                    """
         
     | 
| 
       7265 
7265 
     | 
    
         
             
                    return pulumi.get(self, "layer4_configs")
         
     | 
| 
       7266 
7266 
     | 
    
         | 
| 
         @@ -7735,7 +7735,7 @@ if not MYPY: 
     | 
|
| 
       7735 
7735 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       7736 
7736 
     | 
    
         | 
| 
       7737 
7737 
     | 
    
         | 
| 
       7738 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 7738 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       7739 
7739 
     | 
    
         
             
                    """
         
     | 
| 
       7740 
7740 
     | 
    
         
             
                    dest_address_groups: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
         
     | 
| 
       7741 
7741 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -7813,7 +7813,7 @@ class FirewallPolicyWithRulesRuleMatchArgs: 
     | 
|
| 
       7813 
7813 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       7814 
7814 
     | 
    
         | 
| 
       7815 
7815 
     | 
    
         | 
| 
       7816 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 7816 
     | 
    
         
            +
                           <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       7817 
7817 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] dest_address_groups: Address groups which should be matched against the traffic destination.
         
     | 
| 
       7818 
7818 
     | 
    
         
             
                           Maximum number of destination address groups is 10.
         
     | 
| 
       7819 
7819 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] dest_fqdns: Fully Qualified Domain Name (FQDN) which should be matched against
         
     | 
| 
         @@ -7869,7 +7869,7 @@ class FirewallPolicyWithRulesRuleMatchArgs: 
     | 
|
| 
       7869 
7869 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       7870 
7870 
     | 
    
         | 
| 
       7871 
7871 
     | 
    
         | 
| 
       7872 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 7872 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       7873 
7873 
     | 
    
         
             
                    """
         
     | 
| 
       7874 
7874 
     | 
    
         
             
                    return pulumi.get(self, "layer4_configs")
         
     | 
| 
       7875 
7875 
     | 
    
         | 
| 
         @@ -21829,7 +21829,7 @@ if not MYPY: 
     | 
|
| 
       21829 
21829 
     | 
    
         
             
                    Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       21830 
21830 
     | 
    
         | 
| 
       21831 
21831 
     | 
    
         | 
| 
       21832 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 21832 
     | 
    
         
            +
                    <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       21833 
21833 
     | 
    
         
             
                    """
         
     | 
| 
       21834 
21834 
     | 
    
         
             
            elif False:
         
     | 
| 
       21835 
21835 
     | 
    
         
             
                NetworkFirewallPolicyRuleMatchArgsDict: TypeAlias = Mapping[str, Any]
         
     | 
| 
         @@ -21866,7 +21866,7 @@ class NetworkFirewallPolicyRuleMatchArgs: 
     | 
|
| 
       21866 
21866 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_threat_intelligences: Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       21867 
21867 
     | 
    
         | 
| 
       21868 
21868 
     | 
    
         | 
| 
       21869 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 21869 
     | 
    
         
            +
                           <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       21870 
21870 
     | 
    
         
             
                    """
         
     | 
| 
       21871 
21871 
     | 
    
         
             
                    pulumi.set(__self__, "layer4_configs", layer4_configs)
         
     | 
| 
       21872 
21872 
     | 
    
         
             
                    if dest_address_groups is not None:
         
     | 
| 
         @@ -22033,7 +22033,7 @@ class NetworkFirewallPolicyRuleMatchArgs: 
     | 
|
| 
       22033 
22033 
     | 
    
         
             
                    Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       22034 
22034 
     | 
    
         | 
| 
       22035 
22035 
     | 
    
         | 
| 
       22036 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 22036 
     | 
    
         
            +
                    <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       22037 
22037 
     | 
    
         
             
                    """
         
     | 
| 
       22038 
22038 
     | 
    
         
             
                    return pulumi.get(self, "src_threat_intelligences")
         
     | 
| 
       22039 
22039 
     | 
    
         | 
| 
         @@ -22647,7 +22647,7 @@ if not MYPY: 
     | 
|
| 
       22647 
22647 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       22648 
22648 
     | 
    
         | 
| 
       22649 
22649 
     | 
    
         | 
| 
       22650 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 22650 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       22651 
22651 
     | 
    
         
             
                    """
         
     | 
| 
       22652 
22652 
     | 
    
         
             
                    src_threat_intelligences: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
         
     | 
| 
       22653 
22653 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -22705,7 +22705,7 @@ class NetworkFirewallPolicyWithRulesPredefinedRuleMatchArgs: 
     | 
|
| 
       22705 
22705 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       22706 
22706 
     | 
    
         | 
| 
       22707 
22707 
     | 
    
         | 
| 
       22708 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 22708 
     | 
    
         
            +
                           <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       22709 
22709 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_threat_intelligences: Names of Network Threat Intelligence lists.
         
     | 
| 
       22710 
22710 
     | 
    
         
             
                           The IPs in these lists will be matched against traffic source.
         
     | 
| 
       22711 
22711 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -22880,7 +22880,7 @@ class NetworkFirewallPolicyWithRulesPredefinedRuleMatchArgs: 
     | 
|
| 
       22880 
22880 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       22881 
22881 
     | 
    
         | 
| 
       22882 
22882 
     | 
    
         | 
| 
       22883 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 22883 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       22884 
22884 
     | 
    
         
             
                    """
         
     | 
| 
       22885 
22885 
     | 
    
         
             
                    return pulumi.get(self, "src_secure_tags")
         
     | 
| 
       22886 
22886 
     | 
    
         | 
| 
         @@ -23517,7 +23517,7 @@ if not MYPY: 
     | 
|
| 
       23517 
23517 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       23518 
23518 
     | 
    
         | 
| 
       23519 
23519 
     | 
    
         | 
| 
       23520 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 23520 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       23521 
23521 
     | 
    
         
             
                    """
         
     | 
| 
       23522 
23522 
     | 
    
         
             
                    src_threat_intelligences: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
         
     | 
| 
       23523 
23523 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -23575,7 +23575,7 @@ class NetworkFirewallPolicyWithRulesRuleMatchArgs: 
     | 
|
| 
       23575 
23575 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       23576 
23576 
     | 
    
         | 
| 
       23577 
23577 
     | 
    
         | 
| 
       23578 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 23578 
     | 
    
         
            +
                           <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       23579 
23579 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_threat_intelligences: Names of Network Threat Intelligence lists.
         
     | 
| 
       23580 
23580 
     | 
    
         
             
                           The IPs in these lists will be matched against traffic source.
         
     | 
| 
       23581 
23581 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -23749,7 +23749,7 @@ class NetworkFirewallPolicyWithRulesRuleMatchArgs: 
     | 
|
| 
       23749 
23749 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       23750 
23750 
     | 
    
         | 
| 
       23751 
23751 
     | 
    
         | 
| 
       23752 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 23752 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       23753 
23753 
     | 
    
         
             
                    """
         
     | 
| 
       23754 
23754 
     | 
    
         
             
                    return pulumi.get(self, "src_secure_tags")
         
     | 
| 
       23755 
23755 
     | 
    
         | 
| 
         @@ -24583,7 +24583,7 @@ if not MYPY: 
     | 
|
| 
       24583 
24583 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       24584 
24584 
     | 
    
         | 
| 
       24585 
24585 
     | 
    
         | 
| 
       24586 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 24586 
     | 
    
         
            +
                    <a name="nested_match_config_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       24587 
24587 
     | 
    
         
             
                    """
         
     | 
| 
       24588 
24588 
     | 
    
         
             
                    dest_ip_ranges: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
         
     | 
| 
       24589 
24589 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -24609,7 +24609,7 @@ class OrganizationSecurityPolicyRuleMatchConfigArgs: 
     | 
|
| 
       24609 
24609 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       24610 
24610 
     | 
    
         | 
| 
       24611 
24611 
     | 
    
         | 
| 
       24612 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 24612 
     | 
    
         
            +
                           <a name="nested_match_config_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       24613 
24613 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] dest_ip_ranges: Destination IP address range in CIDR format. Required for
         
     | 
| 
       24614 
24614 
     | 
    
         
             
                           EGRESS rules.
         
     | 
| 
       24615 
24615 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_ip_ranges: Source IP address range in CIDR format. Required for
         
     | 
| 
         @@ -24629,7 +24629,7 @@ class OrganizationSecurityPolicyRuleMatchConfigArgs: 
     | 
|
| 
       24629 
24629 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       24630 
24630 
     | 
    
         | 
| 
       24631 
24631 
     | 
    
         | 
| 
       24632 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 24632 
     | 
    
         
            +
                    <a name="nested_match_config_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       24633 
24633 
     | 
    
         
             
                    """
         
     | 
| 
       24634 
24634 
     | 
    
         
             
                    return pulumi.get(self, "layer4_configs")
         
     | 
| 
       24635 
24635 
     | 
    
         | 
| 
         @@ -34747,7 +34747,7 @@ if not MYPY: 
     | 
|
| 
       34747 
34747 
     | 
    
         
             
                    Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       34748 
34748 
     | 
    
         | 
| 
       34749 
34749 
     | 
    
         | 
| 
       34750 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 34750 
     | 
    
         
            +
                    <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       34751 
34751 
     | 
    
         
             
                    """
         
     | 
| 
       34752 
34752 
     | 
    
         
             
            elif False:
         
     | 
| 
       34753 
34753 
     | 
    
         
             
                RegionNetworkFirewallPolicyRuleMatchArgsDict: TypeAlias = Mapping[str, Any]
         
     | 
| 
         @@ -34784,7 +34784,7 @@ class RegionNetworkFirewallPolicyRuleMatchArgs: 
     | 
|
| 
       34784 
34784 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_threat_intelligences: Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       34785 
34785 
     | 
    
         | 
| 
       34786 
34786 
     | 
    
         | 
| 
       34787 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 34787 
     | 
    
         
            +
                           <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       34788 
34788 
     | 
    
         
             
                    """
         
     | 
| 
       34789 
34789 
     | 
    
         
             
                    pulumi.set(__self__, "layer4_configs", layer4_configs)
         
     | 
| 
       34790 
34790 
     | 
    
         
             
                    if dest_address_groups is not None:
         
     | 
| 
         @@ -34951,7 +34951,7 @@ class RegionNetworkFirewallPolicyRuleMatchArgs: 
     | 
|
| 
       34951 
34951 
     | 
    
         
             
                    Names of Network Threat Intelligence lists. The IPs in these lists will be matched against traffic source.
         
     | 
| 
       34952 
34952 
     | 
    
         | 
| 
       34953 
34953 
     | 
    
         | 
| 
       34954 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 34954 
     | 
    
         
            +
                    <a name="nested_match_layer4_configs"></a>The `layer4_configs` block supports:
         
     | 
| 
       34955 
34955 
     | 
    
         
             
                    """
         
     | 
| 
       34956 
34956 
     | 
    
         
             
                    return pulumi.get(self, "src_threat_intelligences")
         
     | 
| 
       34957 
34957 
     | 
    
         | 
| 
         @@ -35565,7 +35565,7 @@ if not MYPY: 
     | 
|
| 
       35565 
35565 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       35566 
35566 
     | 
    
         | 
| 
       35567 
35567 
     | 
    
         | 
| 
       35568 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 35568 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       35569 
35569 
     | 
    
         
             
                    """
         
     | 
| 
       35570 
35570 
     | 
    
         
             
                    src_threat_intelligences: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
         
     | 
| 
       35571 
35571 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -35623,7 +35623,7 @@ class RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatchArgs: 
     | 
|
| 
       35623 
35623 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       35624 
35624 
     | 
    
         | 
| 
       35625 
35625 
     | 
    
         | 
| 
       35626 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 35626 
     | 
    
         
            +
                           <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       35627 
35627 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_threat_intelligences: Names of Network Threat Intelligence lists.
         
     | 
| 
       35628 
35628 
     | 
    
         
             
                           The IPs in these lists will be matched against traffic source.
         
     | 
| 
       35629 
35629 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -35798,7 +35798,7 @@ class RegionNetworkFirewallPolicyWithRulesPredefinedRuleMatchArgs: 
     | 
|
| 
       35798 
35798 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       35799 
35799 
     | 
    
         | 
| 
       35800 
35800 
     | 
    
         | 
| 
       35801 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 35801 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       35802 
35802 
     | 
    
         
             
                    """
         
     | 
| 
       35803 
35803 
     | 
    
         
             
                    return pulumi.get(self, "src_secure_tags")
         
     | 
| 
       35804 
35804 
     | 
    
         | 
| 
         @@ -36435,7 +36435,7 @@ if not MYPY: 
     | 
|
| 
       36435 
36435 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       36436 
36436 
     | 
    
         | 
| 
       36437 
36437 
     | 
    
         | 
| 
       36438 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 36438 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       36439 
36439 
     | 
    
         
             
                    """
         
     | 
| 
       36440 
36440 
     | 
    
         
             
                    src_threat_intelligences: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
         
     | 
| 
       36441 
36441 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -36493,7 +36493,7 @@ class RegionNetworkFirewallPolicyWithRulesRuleMatchArgs: 
     | 
|
| 
       36493 
36493 
     | 
    
         
             
                           Structure is documented below.
         
     | 
| 
       36494 
36494 
     | 
    
         | 
| 
       36495 
36495 
     | 
    
         | 
| 
       36496 
     | 
    
         
            -
                           <a name=" 
     | 
| 
      
 36496 
     | 
    
         
            +
                           <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       36497 
36497 
     | 
    
         
             
                    :param pulumi.Input[Sequence[pulumi.Input[str]]] src_threat_intelligences: Names of Network Threat Intelligence lists.
         
     | 
| 
       36498 
36498 
     | 
    
         
             
                           The IPs in these lists will be matched against traffic source.
         
     | 
| 
       36499 
36499 
     | 
    
         
             
                    """
         
     | 
| 
         @@ -36667,7 +36667,7 @@ class RegionNetworkFirewallPolicyWithRulesRuleMatchArgs: 
     | 
|
| 
       36667 
36667 
     | 
    
         
             
                    Structure is documented below.
         
     | 
| 
       36668 
36668 
     | 
    
         | 
| 
       36669 
36669 
     | 
    
         | 
| 
       36670 
     | 
    
         
            -
                    <a name=" 
     | 
| 
      
 36670 
     | 
    
         
            +
                    <a name="nested_rule_rule_match_layer4_config"></a>The `layer4_config` block supports:
         
     | 
| 
       36671 
36671 
     | 
    
         
             
                    """
         
     | 
| 
       36672 
36672 
     | 
    
         
             
                    return pulumi.get(self, "src_secure_tags")
         
     | 
| 
       36673 
36673 
     | 
    
         |