pulumi-gcp 8.41.0a1755297349__py3-none-any.whl → 8.41.0a1755638986__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 +16 -0
- pulumi_gcp/artifactregistry/__init__.py +3 -0
- pulumi_gcp/artifactregistry/get_package.py +220 -0
- pulumi_gcp/artifactregistry/get_repositories.py +160 -0
- pulumi_gcp/artifactregistry/get_version.py +261 -0
- pulumi_gcp/artifactregistry/outputs.py +100 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +114 -7
- pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +12 -1
- pulumi_gcp/bigquery/dataset.py +2 -2
- pulumi_gcp/composer/user_workloads_config_map.py +26 -2
- pulumi_gcp/compute/_inputs.py +355 -0
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/outputs.py +404 -0
- pulumi_gcp/compute/region_backend_service.py +257 -0
- pulumi_gcp/compute/region_security_policy.py +54 -0
- pulumi_gcp/compute/service_attachment.py +126 -0
- pulumi_gcp/container/_inputs.py +435 -15
- pulumi_gcp/container/outputs.py +494 -13
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +168 -0
- pulumi_gcp/diagflow/cx_playbook.py +967 -0
- pulumi_gcp/diagflow/outputs.py +117 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +24 -3
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +70 -0
- pulumi_gcp/pubsub/subscription.py +84 -0
- pulumi_gcp/pubsub/topic.py +80 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +82 -4
- pulumi_gcp/sql/database_instance.py +108 -7
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +154 -7
- pulumi_gcp/storage/_inputs.py +104 -12
- pulumi_gcp/storage/outputs.py +84 -7
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +122 -0
- pulumi_gcp/vertex/ai_rag_engine_config.py +354 -0
- pulumi_gcp/vertex/outputs.py +69 -0
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/RECORD +42 -37
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/top_level.txt +0 -0
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -739,6 +739,12 @@ __all__ = [
|
|
739
739
|
'RegionBackendServiceDynamicForwardingIpPortSelectionArgsDict',
|
740
740
|
'RegionBackendServiceFailoverPolicyArgs',
|
741
741
|
'RegionBackendServiceFailoverPolicyArgsDict',
|
742
|
+
'RegionBackendServiceHaPolicyArgs',
|
743
|
+
'RegionBackendServiceHaPolicyArgsDict',
|
744
|
+
'RegionBackendServiceHaPolicyLeaderArgs',
|
745
|
+
'RegionBackendServiceHaPolicyLeaderArgsDict',
|
746
|
+
'RegionBackendServiceHaPolicyLeaderNetworkEndpointArgs',
|
747
|
+
'RegionBackendServiceHaPolicyLeaderNetworkEndpointArgsDict',
|
742
748
|
'RegionBackendServiceIamBindingConditionArgs',
|
743
749
|
'RegionBackendServiceIamBindingConditionArgsDict',
|
744
750
|
'RegionBackendServiceIamMemberConditionArgs',
|
@@ -963,6 +969,10 @@ __all__ = [
|
|
963
969
|
'RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailLocalizedMessageArgsDict',
|
964
970
|
'RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgs',
|
965
971
|
'RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgsDict',
|
972
|
+
'RegionSecurityPolicyAdvancedOptionsConfigArgs',
|
973
|
+
'RegionSecurityPolicyAdvancedOptionsConfigArgsDict',
|
974
|
+
'RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgs',
|
975
|
+
'RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgsDict',
|
966
976
|
'RegionSecurityPolicyDdosProtectionConfigArgs',
|
967
977
|
'RegionSecurityPolicyDdosProtectionConfigArgsDict',
|
968
978
|
'RegionSecurityPolicyRuleArgs',
|
@@ -37986,6 +37996,193 @@ class RegionBackendServiceFailoverPolicyArgs:
|
|
37986
37996
|
pulumi.set(self, "failover_ratio", value)
|
37987
37997
|
|
37988
37998
|
|
37999
|
+
if not MYPY:
|
38000
|
+
class RegionBackendServiceHaPolicyArgsDict(TypedDict):
|
38001
|
+
fast_ip_move: NotRequired[pulumi.Input[_builtins.str]]
|
38002
|
+
"""
|
38003
|
+
Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it.
|
38004
|
+
Supported values are:
|
38005
|
+
* `DISABLED`: Fast IP Move is disabled. You can only use the haPolicy.leader API to
|
38006
|
+
update the leader.
|
38007
|
+
* `GARP_RA`: Provides a method to very quickly define a new network endpoint as the
|
38008
|
+
leader. This method is faster than updating the leader using the
|
38009
|
+
haPolicy.leader API. Fast IP move works as follows: The VM hosting the
|
38010
|
+
network endpoint that should become the new leader sends either a
|
38011
|
+
Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA)
|
38012
|
+
packet (IPv6). Google Cloud immediately but temporarily associates the
|
38013
|
+
forwarding rule IP address with that VM, and both new and in-flight packets
|
38014
|
+
are quickly delivered to that VM.
|
38015
|
+
Possible values are: `DISABLED`, `GARP_RA`.
|
38016
|
+
"""
|
38017
|
+
leader: NotRequired[pulumi.Input['RegionBackendServiceHaPolicyLeaderArgsDict']]
|
38018
|
+
"""
|
38019
|
+
Selects one of the network endpoints attached to the backend NEGs of this service as the
|
38020
|
+
active endpoint (the leader) that receives all traffic.
|
38021
|
+
Structure is documented below.
|
38022
|
+
"""
|
38023
|
+
elif False:
|
38024
|
+
RegionBackendServiceHaPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
38025
|
+
|
38026
|
+
@pulumi.input_type
|
38027
|
+
class RegionBackendServiceHaPolicyArgs:
|
38028
|
+
def __init__(__self__, *,
|
38029
|
+
fast_ip_move: Optional[pulumi.Input[_builtins.str]] = None,
|
38030
|
+
leader: Optional[pulumi.Input['RegionBackendServiceHaPolicyLeaderArgs']] = None):
|
38031
|
+
"""
|
38032
|
+
:param pulumi.Input[_builtins.str] fast_ip_move: Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it.
|
38033
|
+
Supported values are:
|
38034
|
+
* `DISABLED`: Fast IP Move is disabled. You can only use the haPolicy.leader API to
|
38035
|
+
update the leader.
|
38036
|
+
* `GARP_RA`: Provides a method to very quickly define a new network endpoint as the
|
38037
|
+
leader. This method is faster than updating the leader using the
|
38038
|
+
haPolicy.leader API. Fast IP move works as follows: The VM hosting the
|
38039
|
+
network endpoint that should become the new leader sends either a
|
38040
|
+
Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA)
|
38041
|
+
packet (IPv6). Google Cloud immediately but temporarily associates the
|
38042
|
+
forwarding rule IP address with that VM, and both new and in-flight packets
|
38043
|
+
are quickly delivered to that VM.
|
38044
|
+
Possible values are: `DISABLED`, `GARP_RA`.
|
38045
|
+
:param pulumi.Input['RegionBackendServiceHaPolicyLeaderArgs'] leader: Selects one of the network endpoints attached to the backend NEGs of this service as the
|
38046
|
+
active endpoint (the leader) that receives all traffic.
|
38047
|
+
Structure is documented below.
|
38048
|
+
"""
|
38049
|
+
if fast_ip_move is not None:
|
38050
|
+
pulumi.set(__self__, "fast_ip_move", fast_ip_move)
|
38051
|
+
if leader is not None:
|
38052
|
+
pulumi.set(__self__, "leader", leader)
|
38053
|
+
|
38054
|
+
@_builtins.property
|
38055
|
+
@pulumi.getter(name="fastIpMove")
|
38056
|
+
def fast_ip_move(self) -> Optional[pulumi.Input[_builtins.str]]:
|
38057
|
+
"""
|
38058
|
+
Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it.
|
38059
|
+
Supported values are:
|
38060
|
+
* `DISABLED`: Fast IP Move is disabled. You can only use the haPolicy.leader API to
|
38061
|
+
update the leader.
|
38062
|
+
* `GARP_RA`: Provides a method to very quickly define a new network endpoint as the
|
38063
|
+
leader. This method is faster than updating the leader using the
|
38064
|
+
haPolicy.leader API. Fast IP move works as follows: The VM hosting the
|
38065
|
+
network endpoint that should become the new leader sends either a
|
38066
|
+
Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA)
|
38067
|
+
packet (IPv6). Google Cloud immediately but temporarily associates the
|
38068
|
+
forwarding rule IP address with that VM, and both new and in-flight packets
|
38069
|
+
are quickly delivered to that VM.
|
38070
|
+
Possible values are: `DISABLED`, `GARP_RA`.
|
38071
|
+
"""
|
38072
|
+
return pulumi.get(self, "fast_ip_move")
|
38073
|
+
|
38074
|
+
@fast_ip_move.setter
|
38075
|
+
def fast_ip_move(self, value: Optional[pulumi.Input[_builtins.str]]):
|
38076
|
+
pulumi.set(self, "fast_ip_move", value)
|
38077
|
+
|
38078
|
+
@_builtins.property
|
38079
|
+
@pulumi.getter
|
38080
|
+
def leader(self) -> Optional[pulumi.Input['RegionBackendServiceHaPolicyLeaderArgs']]:
|
38081
|
+
"""
|
38082
|
+
Selects one of the network endpoints attached to the backend NEGs of this service as the
|
38083
|
+
active endpoint (the leader) that receives all traffic.
|
38084
|
+
Structure is documented below.
|
38085
|
+
"""
|
38086
|
+
return pulumi.get(self, "leader")
|
38087
|
+
|
38088
|
+
@leader.setter
|
38089
|
+
def leader(self, value: Optional[pulumi.Input['RegionBackendServiceHaPolicyLeaderArgs']]):
|
38090
|
+
pulumi.set(self, "leader", value)
|
38091
|
+
|
38092
|
+
|
38093
|
+
if not MYPY:
|
38094
|
+
class RegionBackendServiceHaPolicyLeaderArgsDict(TypedDict):
|
38095
|
+
backend_group: NotRequired[pulumi.Input[_builtins.str]]
|
38096
|
+
"""
|
38097
|
+
A fully-qualified URL of the zonal Network Endpoint Group (NEG) that the leader is
|
38098
|
+
attached to.
|
38099
|
+
"""
|
38100
|
+
network_endpoint: NotRequired[pulumi.Input['RegionBackendServiceHaPolicyLeaderNetworkEndpointArgsDict']]
|
38101
|
+
"""
|
38102
|
+
The network endpoint within the leader.backendGroup that is designated as the leader.
|
38103
|
+
Structure is documented below.
|
38104
|
+
"""
|
38105
|
+
elif False:
|
38106
|
+
RegionBackendServiceHaPolicyLeaderArgsDict: TypeAlias = Mapping[str, Any]
|
38107
|
+
|
38108
|
+
@pulumi.input_type
|
38109
|
+
class RegionBackendServiceHaPolicyLeaderArgs:
|
38110
|
+
def __init__(__self__, *,
|
38111
|
+
backend_group: Optional[pulumi.Input[_builtins.str]] = None,
|
38112
|
+
network_endpoint: Optional[pulumi.Input['RegionBackendServiceHaPolicyLeaderNetworkEndpointArgs']] = None):
|
38113
|
+
"""
|
38114
|
+
:param pulumi.Input[_builtins.str] backend_group: A fully-qualified URL of the zonal Network Endpoint Group (NEG) that the leader is
|
38115
|
+
attached to.
|
38116
|
+
:param pulumi.Input['RegionBackendServiceHaPolicyLeaderNetworkEndpointArgs'] network_endpoint: The network endpoint within the leader.backendGroup that is designated as the leader.
|
38117
|
+
Structure is documented below.
|
38118
|
+
"""
|
38119
|
+
if backend_group is not None:
|
38120
|
+
pulumi.set(__self__, "backend_group", backend_group)
|
38121
|
+
if network_endpoint is not None:
|
38122
|
+
pulumi.set(__self__, "network_endpoint", network_endpoint)
|
38123
|
+
|
38124
|
+
@_builtins.property
|
38125
|
+
@pulumi.getter(name="backendGroup")
|
38126
|
+
def backend_group(self) -> Optional[pulumi.Input[_builtins.str]]:
|
38127
|
+
"""
|
38128
|
+
A fully-qualified URL of the zonal Network Endpoint Group (NEG) that the leader is
|
38129
|
+
attached to.
|
38130
|
+
"""
|
38131
|
+
return pulumi.get(self, "backend_group")
|
38132
|
+
|
38133
|
+
@backend_group.setter
|
38134
|
+
def backend_group(self, value: Optional[pulumi.Input[_builtins.str]]):
|
38135
|
+
pulumi.set(self, "backend_group", value)
|
38136
|
+
|
38137
|
+
@_builtins.property
|
38138
|
+
@pulumi.getter(name="networkEndpoint")
|
38139
|
+
def network_endpoint(self) -> Optional[pulumi.Input['RegionBackendServiceHaPolicyLeaderNetworkEndpointArgs']]:
|
38140
|
+
"""
|
38141
|
+
The network endpoint within the leader.backendGroup that is designated as the leader.
|
38142
|
+
Structure is documented below.
|
38143
|
+
"""
|
38144
|
+
return pulumi.get(self, "network_endpoint")
|
38145
|
+
|
38146
|
+
@network_endpoint.setter
|
38147
|
+
def network_endpoint(self, value: Optional[pulumi.Input['RegionBackendServiceHaPolicyLeaderNetworkEndpointArgs']]):
|
38148
|
+
pulumi.set(self, "network_endpoint", value)
|
38149
|
+
|
38150
|
+
|
38151
|
+
if not MYPY:
|
38152
|
+
class RegionBackendServiceHaPolicyLeaderNetworkEndpointArgsDict(TypedDict):
|
38153
|
+
instance: NotRequired[pulumi.Input[_builtins.str]]
|
38154
|
+
"""
|
38155
|
+
The name of the VM instance of the leader network endpoint. The instance must
|
38156
|
+
already be attached to the NEG specified in the haPolicy.leader.backendGroup.
|
38157
|
+
"""
|
38158
|
+
elif False:
|
38159
|
+
RegionBackendServiceHaPolicyLeaderNetworkEndpointArgsDict: TypeAlias = Mapping[str, Any]
|
38160
|
+
|
38161
|
+
@pulumi.input_type
|
38162
|
+
class RegionBackendServiceHaPolicyLeaderNetworkEndpointArgs:
|
38163
|
+
def __init__(__self__, *,
|
38164
|
+
instance: Optional[pulumi.Input[_builtins.str]] = None):
|
38165
|
+
"""
|
38166
|
+
:param pulumi.Input[_builtins.str] instance: The name of the VM instance of the leader network endpoint. The instance must
|
38167
|
+
already be attached to the NEG specified in the haPolicy.leader.backendGroup.
|
38168
|
+
"""
|
38169
|
+
if instance is not None:
|
38170
|
+
pulumi.set(__self__, "instance", instance)
|
38171
|
+
|
38172
|
+
@_builtins.property
|
38173
|
+
@pulumi.getter
|
38174
|
+
def instance(self) -> Optional[pulumi.Input[_builtins.str]]:
|
38175
|
+
"""
|
38176
|
+
The name of the VM instance of the leader network endpoint. The instance must
|
38177
|
+
already be attached to the NEG specified in the haPolicy.leader.backendGroup.
|
38178
|
+
"""
|
38179
|
+
return pulumi.get(self, "instance")
|
38180
|
+
|
38181
|
+
@instance.setter
|
38182
|
+
def instance(self, value: Optional[pulumi.Input[_builtins.str]]):
|
38183
|
+
pulumi.set(self, "instance", value)
|
38184
|
+
|
38185
|
+
|
37989
38186
|
if not MYPY:
|
37990
38187
|
class RegionBackendServiceIamBindingConditionArgsDict(TypedDict):
|
37991
38188
|
expression: pulumi.Input[_builtins.str]
|
@@ -49323,6 +49520,164 @@ class RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfoArgs:
|
|
49323
49520
|
pulumi.set(self, "rollout_status", value)
|
49324
49521
|
|
49325
49522
|
|
49523
|
+
if not MYPY:
|
49524
|
+
class RegionSecurityPolicyAdvancedOptionsConfigArgsDict(TypedDict):
|
49525
|
+
json_custom_config: NotRequired[pulumi.Input['RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgsDict']]
|
49526
|
+
"""
|
49527
|
+
Custom configuration to apply the JSON parsing. Only applicable when JSON parsing is set to STANDARD.
|
49528
|
+
Structure is documented below.
|
49529
|
+
"""
|
49530
|
+
json_parsing: NotRequired[pulumi.Input[_builtins.str]]
|
49531
|
+
"""
|
49532
|
+
JSON body parsing. Supported values include: "DISABLED", "STANDARD", "STANDARD_WITH_GRAPHQL".
|
49533
|
+
Possible values are: `DISABLED`, `STANDARD`, `STANDARD_WITH_GRAPHQL`.
|
49534
|
+
"""
|
49535
|
+
log_level: NotRequired[pulumi.Input[_builtins.str]]
|
49536
|
+
"""
|
49537
|
+
Logging level. Supported values include: "NORMAL", "VERBOSE".
|
49538
|
+
Possible values are: `NORMAL`, `VERBOSE`.
|
49539
|
+
"""
|
49540
|
+
request_body_inspection_size: NotRequired[pulumi.Input[_builtins.str]]
|
49541
|
+
"""
|
49542
|
+
The maximum request size chosen by the customer with Waf enabled. Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
|
49543
|
+
Values are case insensitive.
|
49544
|
+
Possible values are: `8KB`, `16KB`, `32KB`, `48KB`, `64KB`.
|
49545
|
+
"""
|
49546
|
+
user_ip_request_headers: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
49547
|
+
"""
|
49548
|
+
An optional list of case-insensitive request header names to use for resolving the callers client IP address.
|
49549
|
+
"""
|
49550
|
+
elif False:
|
49551
|
+
RegionSecurityPolicyAdvancedOptionsConfigArgsDict: TypeAlias = Mapping[str, Any]
|
49552
|
+
|
49553
|
+
@pulumi.input_type
|
49554
|
+
class RegionSecurityPolicyAdvancedOptionsConfigArgs:
|
49555
|
+
def __init__(__self__, *,
|
49556
|
+
json_custom_config: Optional[pulumi.Input['RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgs']] = None,
|
49557
|
+
json_parsing: Optional[pulumi.Input[_builtins.str]] = None,
|
49558
|
+
log_level: Optional[pulumi.Input[_builtins.str]] = None,
|
49559
|
+
request_body_inspection_size: Optional[pulumi.Input[_builtins.str]] = None,
|
49560
|
+
user_ip_request_headers: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
|
49561
|
+
"""
|
49562
|
+
:param pulumi.Input['RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgs'] json_custom_config: Custom configuration to apply the JSON parsing. Only applicable when JSON parsing is set to STANDARD.
|
49563
|
+
Structure is documented below.
|
49564
|
+
:param pulumi.Input[_builtins.str] json_parsing: JSON body parsing. Supported values include: "DISABLED", "STANDARD", "STANDARD_WITH_GRAPHQL".
|
49565
|
+
Possible values are: `DISABLED`, `STANDARD`, `STANDARD_WITH_GRAPHQL`.
|
49566
|
+
:param pulumi.Input[_builtins.str] log_level: Logging level. Supported values include: "NORMAL", "VERBOSE".
|
49567
|
+
Possible values are: `NORMAL`, `VERBOSE`.
|
49568
|
+
:param pulumi.Input[_builtins.str] request_body_inspection_size: The maximum request size chosen by the customer with Waf enabled. Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
|
49569
|
+
Values are case insensitive.
|
49570
|
+
Possible values are: `8KB`, `16KB`, `32KB`, `48KB`, `64KB`.
|
49571
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] user_ip_request_headers: An optional list of case-insensitive request header names to use for resolving the callers client IP address.
|
49572
|
+
"""
|
49573
|
+
if json_custom_config is not None:
|
49574
|
+
pulumi.set(__self__, "json_custom_config", json_custom_config)
|
49575
|
+
if json_parsing is not None:
|
49576
|
+
pulumi.set(__self__, "json_parsing", json_parsing)
|
49577
|
+
if log_level is not None:
|
49578
|
+
pulumi.set(__self__, "log_level", log_level)
|
49579
|
+
if request_body_inspection_size is not None:
|
49580
|
+
pulumi.set(__self__, "request_body_inspection_size", request_body_inspection_size)
|
49581
|
+
if user_ip_request_headers is not None:
|
49582
|
+
pulumi.set(__self__, "user_ip_request_headers", user_ip_request_headers)
|
49583
|
+
|
49584
|
+
@_builtins.property
|
49585
|
+
@pulumi.getter(name="jsonCustomConfig")
|
49586
|
+
def json_custom_config(self) -> Optional[pulumi.Input['RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgs']]:
|
49587
|
+
"""
|
49588
|
+
Custom configuration to apply the JSON parsing. Only applicable when JSON parsing is set to STANDARD.
|
49589
|
+
Structure is documented below.
|
49590
|
+
"""
|
49591
|
+
return pulumi.get(self, "json_custom_config")
|
49592
|
+
|
49593
|
+
@json_custom_config.setter
|
49594
|
+
def json_custom_config(self, value: Optional[pulumi.Input['RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgs']]):
|
49595
|
+
pulumi.set(self, "json_custom_config", value)
|
49596
|
+
|
49597
|
+
@_builtins.property
|
49598
|
+
@pulumi.getter(name="jsonParsing")
|
49599
|
+
def json_parsing(self) -> Optional[pulumi.Input[_builtins.str]]:
|
49600
|
+
"""
|
49601
|
+
JSON body parsing. Supported values include: "DISABLED", "STANDARD", "STANDARD_WITH_GRAPHQL".
|
49602
|
+
Possible values are: `DISABLED`, `STANDARD`, `STANDARD_WITH_GRAPHQL`.
|
49603
|
+
"""
|
49604
|
+
return pulumi.get(self, "json_parsing")
|
49605
|
+
|
49606
|
+
@json_parsing.setter
|
49607
|
+
def json_parsing(self, value: Optional[pulumi.Input[_builtins.str]]):
|
49608
|
+
pulumi.set(self, "json_parsing", value)
|
49609
|
+
|
49610
|
+
@_builtins.property
|
49611
|
+
@pulumi.getter(name="logLevel")
|
49612
|
+
def log_level(self) -> Optional[pulumi.Input[_builtins.str]]:
|
49613
|
+
"""
|
49614
|
+
Logging level. Supported values include: "NORMAL", "VERBOSE".
|
49615
|
+
Possible values are: `NORMAL`, `VERBOSE`.
|
49616
|
+
"""
|
49617
|
+
return pulumi.get(self, "log_level")
|
49618
|
+
|
49619
|
+
@log_level.setter
|
49620
|
+
def log_level(self, value: Optional[pulumi.Input[_builtins.str]]):
|
49621
|
+
pulumi.set(self, "log_level", value)
|
49622
|
+
|
49623
|
+
@_builtins.property
|
49624
|
+
@pulumi.getter(name="requestBodyInspectionSize")
|
49625
|
+
def request_body_inspection_size(self) -> Optional[pulumi.Input[_builtins.str]]:
|
49626
|
+
"""
|
49627
|
+
The maximum request size chosen by the customer with Waf enabled. Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
|
49628
|
+
Values are case insensitive.
|
49629
|
+
Possible values are: `8KB`, `16KB`, `32KB`, `48KB`, `64KB`.
|
49630
|
+
"""
|
49631
|
+
return pulumi.get(self, "request_body_inspection_size")
|
49632
|
+
|
49633
|
+
@request_body_inspection_size.setter
|
49634
|
+
def request_body_inspection_size(self, value: Optional[pulumi.Input[_builtins.str]]):
|
49635
|
+
pulumi.set(self, "request_body_inspection_size", value)
|
49636
|
+
|
49637
|
+
@_builtins.property
|
49638
|
+
@pulumi.getter(name="userIpRequestHeaders")
|
49639
|
+
def user_ip_request_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
49640
|
+
"""
|
49641
|
+
An optional list of case-insensitive request header names to use for resolving the callers client IP address.
|
49642
|
+
"""
|
49643
|
+
return pulumi.get(self, "user_ip_request_headers")
|
49644
|
+
|
49645
|
+
@user_ip_request_headers.setter
|
49646
|
+
def user_ip_request_headers(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
49647
|
+
pulumi.set(self, "user_ip_request_headers", value)
|
49648
|
+
|
49649
|
+
|
49650
|
+
if not MYPY:
|
49651
|
+
class RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgsDict(TypedDict):
|
49652
|
+
content_types: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
49653
|
+
"""
|
49654
|
+
A list of custom Content-Type header values to apply the JSON parsing.
|
49655
|
+
"""
|
49656
|
+
elif False:
|
49657
|
+
RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgsDict: TypeAlias = Mapping[str, Any]
|
49658
|
+
|
49659
|
+
@pulumi.input_type
|
49660
|
+
class RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgs:
|
49661
|
+
def __init__(__self__, *,
|
49662
|
+
content_types: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
49663
|
+
"""
|
49664
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] content_types: A list of custom Content-Type header values to apply the JSON parsing.
|
49665
|
+
"""
|
49666
|
+
pulumi.set(__self__, "content_types", content_types)
|
49667
|
+
|
49668
|
+
@_builtins.property
|
49669
|
+
@pulumi.getter(name="contentTypes")
|
49670
|
+
def content_types(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
49671
|
+
"""
|
49672
|
+
A list of custom Content-Type header values to apply the JSON parsing.
|
49673
|
+
"""
|
49674
|
+
return pulumi.get(self, "content_types")
|
49675
|
+
|
49676
|
+
@content_types.setter
|
49677
|
+
def content_types(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
49678
|
+
pulumi.set(self, "content_types", value)
|
49679
|
+
|
49680
|
+
|
49326
49681
|
if not MYPY:
|
49327
49682
|
class RegionSecurityPolicyDdosProtectionConfigArgsDict(TypedDict):
|
49328
49683
|
ddos_protection: pulumi.Input[_builtins.str]
|
@@ -27,7 +27,7 @@ class GetRegionBackendServiceResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getRegionBackendService.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, affinity_cookie_ttl_sec=None, backends=None, cdn_policies=None, circuit_breakers=None, connection_draining_timeout_sec=None, connection_tracking_policies=None, consistent_hashes=None, creation_timestamp=None, custom_metrics=None, description=None, dynamic_forwardings=None, enable_cdn=None, failover_policies=None, fingerprint=None, generated_id=None, health_checks=None, iaps=None, id=None, ip_address_selection_policy=None, load_balancing_scheme=None, locality_lb_policy=None, log_configs=None, name=None, network=None, outlier_detections=None, port_name=None, project=None, protocol=None, region=None, security_policy=None, self_link=None, session_affinity=None, strong_session_affinity_cookies=None, subsettings=None, timeout_sec=None):
|
30
|
+
def __init__(__self__, affinity_cookie_ttl_sec=None, backends=None, cdn_policies=None, circuit_breakers=None, connection_draining_timeout_sec=None, connection_tracking_policies=None, consistent_hashes=None, creation_timestamp=None, custom_metrics=None, description=None, dynamic_forwardings=None, enable_cdn=None, failover_policies=None, fingerprint=None, generated_id=None, ha_policies=None, health_checks=None, iaps=None, id=None, ip_address_selection_policy=None, load_balancing_scheme=None, locality_lb_policy=None, log_configs=None, name=None, network=None, outlier_detections=None, port_name=None, project=None, protocol=None, region=None, security_policy=None, self_link=None, session_affinity=None, strong_session_affinity_cookies=None, subsettings=None, timeout_sec=None):
|
31
31
|
if affinity_cookie_ttl_sec and not isinstance(affinity_cookie_ttl_sec, int):
|
32
32
|
raise TypeError("Expected argument 'affinity_cookie_ttl_sec' to be a int")
|
33
33
|
pulumi.set(__self__, "affinity_cookie_ttl_sec", affinity_cookie_ttl_sec)
|
@@ -73,6 +73,9 @@ class GetRegionBackendServiceResult:
|
|
73
73
|
if generated_id and not isinstance(generated_id, int):
|
74
74
|
raise TypeError("Expected argument 'generated_id' to be a int")
|
75
75
|
pulumi.set(__self__, "generated_id", generated_id)
|
76
|
+
if ha_policies and not isinstance(ha_policies, list):
|
77
|
+
raise TypeError("Expected argument 'ha_policies' to be a list")
|
78
|
+
pulumi.set(__self__, "ha_policies", ha_policies)
|
76
79
|
if health_checks and not isinstance(health_checks, list):
|
77
80
|
raise TypeError("Expected argument 'health_checks' to be a list")
|
78
81
|
pulumi.set(__self__, "health_checks", health_checks)
|
@@ -209,6 +212,11 @@ class GetRegionBackendServiceResult:
|
|
209
212
|
def generated_id(self) -> _builtins.int:
|
210
213
|
return pulumi.get(self, "generated_id")
|
211
214
|
|
215
|
+
@_builtins.property
|
216
|
+
@pulumi.getter(name="haPolicies")
|
217
|
+
def ha_policies(self) -> Sequence['outputs.GetRegionBackendServiceHaPolicyResult']:
|
218
|
+
return pulumi.get(self, "ha_policies")
|
219
|
+
|
212
220
|
@_builtins.property
|
213
221
|
@pulumi.getter(name="healthChecks")
|
214
222
|
def health_checks(self) -> Sequence[_builtins.str]:
|
@@ -334,6 +342,7 @@ class AwaitableGetRegionBackendServiceResult(GetRegionBackendServiceResult):
|
|
334
342
|
failover_policies=self.failover_policies,
|
335
343
|
fingerprint=self.fingerprint,
|
336
344
|
generated_id=self.generated_id,
|
345
|
+
ha_policies=self.ha_policies,
|
337
346
|
health_checks=self.health_checks,
|
338
347
|
iaps=self.iaps,
|
339
348
|
id=self.id,
|
@@ -404,6 +413,7 @@ def get_region_backend_service(name: Optional[_builtins.str] = None,
|
|
404
413
|
failover_policies=pulumi.get(__ret__, 'failover_policies'),
|
405
414
|
fingerprint=pulumi.get(__ret__, 'fingerprint'),
|
406
415
|
generated_id=pulumi.get(__ret__, 'generated_id'),
|
416
|
+
ha_policies=pulumi.get(__ret__, 'ha_policies'),
|
407
417
|
health_checks=pulumi.get(__ret__, 'health_checks'),
|
408
418
|
iaps=pulumi.get(__ret__, 'iaps'),
|
409
419
|
id=pulumi.get(__ret__, 'id'),
|
@@ -471,6 +481,7 @@ def get_region_backend_service_output(name: Optional[pulumi.Input[_builtins.str]
|
|
471
481
|
failover_policies=pulumi.get(__response__, 'failover_policies'),
|
472
482
|
fingerprint=pulumi.get(__response__, 'fingerprint'),
|
473
483
|
generated_id=pulumi.get(__response__, 'generated_id'),
|
484
|
+
ha_policies=pulumi.get(__response__, 'ha_policies'),
|
474
485
|
health_checks=pulumi.get(__response__, 'health_checks'),
|
475
486
|
iaps=pulumi.get(__response__, 'iaps'),
|
476
487
|
id=pulumi.get(__response__, 'id'),
|