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
pulumi_gcp/gkeonprem/_inputs.py
CHANGED
@@ -6057,7 +6057,7 @@ if not MYPY:
|
|
6057
6057
|
"""
|
6058
6058
|
Whether to enable control plane node auto resizing.
|
6059
6059
|
|
6060
|
-
<a name="
|
6060
|
+
<a name="nested_control_plane_node_vsphere_config"></a>The `vsphere_config` block contains:
|
6061
6061
|
"""
|
6062
6062
|
elif False:
|
6063
6063
|
VMwareClusterControlPlaneNodeAutoResizeConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -6069,7 +6069,7 @@ class VMwareClusterControlPlaneNodeAutoResizeConfigArgs:
|
|
6069
6069
|
"""
|
6070
6070
|
:param pulumi.Input[bool] enabled: Whether to enable control plane node auto resizing.
|
6071
6071
|
|
6072
|
-
<a name="
|
6072
|
+
<a name="nested_control_plane_node_vsphere_config"></a>The `vsphere_config` block contains:
|
6073
6073
|
"""
|
6074
6074
|
pulumi.set(__self__, "enabled", enabled)
|
6075
6075
|
|
@@ -6079,7 +6079,7 @@ class VMwareClusterControlPlaneNodeAutoResizeConfigArgs:
|
|
6079
6079
|
"""
|
6080
6080
|
Whether to enable control plane node auto resizing.
|
6081
6081
|
|
6082
|
-
<a name="
|
6082
|
+
<a name="nested_control_plane_node_vsphere_config"></a>The `vsphere_config` block contains:
|
6083
6083
|
"""
|
6084
6084
|
return pulumi.get(self, "enabled")
|
6085
6085
|
|
@@ -6697,7 +6697,7 @@ if not MYPY:
|
|
6697
6697
|
"""
|
6698
6698
|
The VIP which you previously set aside for ingress traffic into this cluster.
|
6699
6699
|
|
6700
|
-
<a name="
|
6700
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
6701
6701
|
"""
|
6702
6702
|
elif False:
|
6703
6703
|
VMwareClusterLoadBalancerVipConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -6711,7 +6711,7 @@ class VMwareClusterLoadBalancerVipConfigArgs:
|
|
6711
6711
|
:param pulumi.Input[str] control_plane_vip: The VIP which you previously set aside for the Kubernetes API of this cluster.
|
6712
6712
|
:param pulumi.Input[str] ingress_vip: The VIP which you previously set aside for ingress traffic into this cluster.
|
6713
6713
|
|
6714
|
-
<a name="
|
6714
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
6715
6715
|
"""
|
6716
6716
|
if control_plane_vip is not None:
|
6717
6717
|
pulumi.set(__self__, "control_plane_vip", control_plane_vip)
|
@@ -6736,7 +6736,7 @@ class VMwareClusterLoadBalancerVipConfigArgs:
|
|
6736
6736
|
"""
|
6737
6737
|
The VIP which you previously set aside for ingress traffic into this cluster.
|
6738
6738
|
|
6739
|
-
<a name="
|
6739
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
6740
6740
|
"""
|
6741
6741
|
return pulumi.get(self, "ingress_vip")
|
6742
6742
|
|
@@ -7115,7 +7115,7 @@ if not MYPY:
|
|
7115
7115
|
"""
|
7116
7116
|
DNS search domains.
|
7117
7117
|
|
7118
|
-
<a name="
|
7118
|
+
<a name="nested_network_config_control_plane_v2_config"></a>The `control_plane_v2_config` block supports:
|
7119
7119
|
"""
|
7120
7120
|
dns_servers: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
7121
7121
|
"""
|
@@ -7137,7 +7137,7 @@ class VMwareClusterNetworkConfigHostConfigArgs:
|
|
7137
7137
|
"""
|
7138
7138
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_search_domains: DNS search domains.
|
7139
7139
|
|
7140
|
-
<a name="
|
7140
|
+
<a name="nested_network_config_control_plane_v2_config"></a>The `control_plane_v2_config` block supports:
|
7141
7141
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns_servers: DNS servers.
|
7142
7142
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntp_servers: NTP servers.
|
7143
7143
|
"""
|
@@ -7154,7 +7154,7 @@ class VMwareClusterNetworkConfigHostConfigArgs:
|
|
7154
7154
|
"""
|
7155
7155
|
DNS search domains.
|
7156
7156
|
|
7157
|
-
<a name="
|
7157
|
+
<a name="nested_network_config_control_plane_v2_config"></a>The `control_plane_v2_config` block supports:
|
7158
7158
|
"""
|
7159
7159
|
return pulumi.get(self, "dns_search_domains")
|
7160
7160
|
|
@@ -9398,7 +9398,7 @@ if not MYPY:
|
|
9398
9398
|
"""
|
9399
9399
|
The VIP to configure the load balancer for add-ons.
|
9400
9400
|
|
9401
|
-
<a name="
|
9401
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
9402
9402
|
"""
|
9403
9403
|
elif False:
|
9404
9404
|
VmwareAdminClusterLoadBalancerVipConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -9413,7 +9413,7 @@ class VmwareAdminClusterLoadBalancerVipConfigArgs:
|
|
9413
9413
|
API of this VMware Admin Cluster.
|
9414
9414
|
:param pulumi.Input[str] addons_vip: The VIP to configure the load balancer for add-ons.
|
9415
9415
|
|
9416
|
-
<a name="
|
9416
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
9417
9417
|
"""
|
9418
9418
|
pulumi.set(__self__, "control_plane_vip", control_plane_vip)
|
9419
9419
|
if addons_vip is not None:
|
@@ -9438,7 +9438,7 @@ class VmwareAdminClusterLoadBalancerVipConfigArgs:
|
|
9438
9438
|
"""
|
9439
9439
|
The VIP to configure the load balancer for add-ons.
|
9440
9440
|
|
9441
|
-
<a name="
|
9441
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
9442
9442
|
"""
|
9443
9443
|
return pulumi.get(self, "addons_vip")
|
9444
9444
|
|
@@ -10080,7 +10080,7 @@ if not MYPY:
|
|
10080
10080
|
Structure is documented below.
|
10081
10081
|
|
10082
10082
|
|
10083
|
-
<a name="
|
10083
|
+
<a name="nested_platform_config_bundles_bundles_status"></a>The `status` block contains:
|
10084
10084
|
"""
|
10085
10085
|
elif False:
|
10086
10086
|
VmwareAdminClusterPlatformConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -10108,7 +10108,7 @@ class VmwareAdminClusterPlatformConfigArgs:
|
|
10108
10108
|
Structure is documented below.
|
10109
10109
|
|
10110
10110
|
|
10111
|
-
<a name="
|
10111
|
+
<a name="nested_platform_config_bundles_bundles_status"></a>The `status` block contains:
|
10112
10112
|
"""
|
10113
10113
|
if bundles is not None:
|
10114
10114
|
pulumi.set(__self__, "bundles", bundles)
|
@@ -10171,7 +10171,7 @@ class VmwareAdminClusterPlatformConfigArgs:
|
|
10171
10171
|
Structure is documented below.
|
10172
10172
|
|
10173
10173
|
|
10174
|
-
<a name="
|
10174
|
+
<a name="nested_platform_config_bundles_bundles_status"></a>The `status` block contains:
|
10175
10175
|
"""
|
10176
10176
|
return pulumi.get(self, "statuses")
|
10177
10177
|
|
pulumi_gcp/gkeonprem/outputs.py
CHANGED
@@ -4769,7 +4769,7 @@ class VMwareClusterControlPlaneNodeAutoResizeConfig(dict):
|
|
4769
4769
|
"""
|
4770
4770
|
:param bool enabled: Whether to enable control plane node auto resizing.
|
4771
4771
|
|
4772
|
-
<a name="
|
4772
|
+
<a name="nested_control_plane_node_vsphere_config"></a>The `vsphere_config` block contains:
|
4773
4773
|
"""
|
4774
4774
|
pulumi.set(__self__, "enabled", enabled)
|
4775
4775
|
|
@@ -4779,7 +4779,7 @@ class VMwareClusterControlPlaneNodeAutoResizeConfig(dict):
|
|
4779
4779
|
"""
|
4780
4780
|
Whether to enable control plane node auto resizing.
|
4781
4781
|
|
4782
|
-
<a name="
|
4782
|
+
<a name="nested_control_plane_node_vsphere_config"></a>The `vsphere_config` block contains:
|
4783
4783
|
"""
|
4784
4784
|
return pulumi.get(self, "enabled")
|
4785
4785
|
|
@@ -5310,7 +5310,7 @@ class VMwareClusterLoadBalancerVipConfig(dict):
|
|
5310
5310
|
:param str control_plane_vip: The VIP which you previously set aside for the Kubernetes API of this cluster.
|
5311
5311
|
:param str ingress_vip: The VIP which you previously set aside for ingress traffic into this cluster.
|
5312
5312
|
|
5313
|
-
<a name="
|
5313
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
5314
5314
|
"""
|
5315
5315
|
if control_plane_vip is not None:
|
5316
5316
|
pulumi.set(__self__, "control_plane_vip", control_plane_vip)
|
@@ -5331,7 +5331,7 @@ class VMwareClusterLoadBalancerVipConfig(dict):
|
|
5331
5331
|
"""
|
5332
5332
|
The VIP which you previously set aside for ingress traffic into this cluster.
|
5333
5333
|
|
5334
|
-
<a name="
|
5334
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
5335
5335
|
"""
|
5336
5336
|
return pulumi.get(self, "ingress_vip")
|
5337
5337
|
|
@@ -5630,7 +5630,7 @@ class VMwareClusterNetworkConfigHostConfig(dict):
|
|
5630
5630
|
"""
|
5631
5631
|
:param Sequence[str] dns_search_domains: DNS search domains.
|
5632
5632
|
|
5633
|
-
<a name="
|
5633
|
+
<a name="nested_network_config_control_plane_v2_config"></a>The `control_plane_v2_config` block supports:
|
5634
5634
|
:param Sequence[str] dns_servers: DNS servers.
|
5635
5635
|
:param Sequence[str] ntp_servers: NTP servers.
|
5636
5636
|
"""
|
@@ -5647,7 +5647,7 @@ class VMwareClusterNetworkConfigHostConfig(dict):
|
|
5647
5647
|
"""
|
5648
5648
|
DNS search domains.
|
5649
5649
|
|
5650
|
-
<a name="
|
5650
|
+
<a name="nested_network_config_control_plane_v2_config"></a>The `control_plane_v2_config` block supports:
|
5651
5651
|
"""
|
5652
5652
|
return pulumi.get(self, "dns_search_domains")
|
5653
5653
|
|
@@ -7336,7 +7336,7 @@ class VmwareAdminClusterLoadBalancerVipConfig(dict):
|
|
7336
7336
|
API of this VMware Admin Cluster.
|
7337
7337
|
:param str addons_vip: The VIP to configure the load balancer for add-ons.
|
7338
7338
|
|
7339
|
-
<a name="
|
7339
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
7340
7340
|
"""
|
7341
7341
|
pulumi.set(__self__, "control_plane_vip", control_plane_vip)
|
7342
7342
|
if addons_vip is not None:
|
@@ -7357,7 +7357,7 @@ class VmwareAdminClusterLoadBalancerVipConfig(dict):
|
|
7357
7357
|
"""
|
7358
7358
|
The VIP to configure the load balancer for add-ons.
|
7359
7359
|
|
7360
|
-
<a name="
|
7360
|
+
<a name="nested_load_balancer_f5_config"></a>The `f5_config` block supports:
|
7361
7361
|
"""
|
7362
7362
|
return pulumi.get(self, "addons_vip")
|
7363
7363
|
|
@@ -7848,7 +7848,7 @@ class VmwareAdminClusterPlatformConfig(dict):
|
|
7848
7848
|
Structure is documented below.
|
7849
7849
|
|
7850
7850
|
|
7851
|
-
<a name="
|
7851
|
+
<a name="nested_platform_config_bundles_bundles_status"></a>The `status` block contains:
|
7852
7852
|
"""
|
7853
7853
|
if bundles is not None:
|
7854
7854
|
pulumi.set(__self__, "bundles", bundles)
|
@@ -7899,7 +7899,7 @@ class VmwareAdminClusterPlatformConfig(dict):
|
|
7899
7899
|
Structure is documented below.
|
7900
7900
|
|
7901
7901
|
|
7902
|
-
<a name="
|
7902
|
+
<a name="nested_platform_config_bundles_bundles_status"></a>The `status` block contains:
|
7903
7903
|
"""
|
7904
7904
|
return pulumi.get(self, "statuses")
|
7905
7905
|
|
@@ -2008,7 +2008,7 @@ class VMwareCluster(pulumi.CustomResource):
|
|
2008
2008
|
|
2009
2009
|
@property
|
2010
2010
|
@pulumi.getter
|
2011
|
-
def vcenter(self) -> pulumi.Output[
|
2011
|
+
def vcenter(self) -> pulumi.Output['outputs.VMwareClusterVcenter']:
|
2012
2012
|
"""
|
2013
2013
|
VmwareVCenterConfig specifies vCenter config for the user cluster. Inherited from the admin cluster.
|
2014
2014
|
"""
|
pulumi_gcp/iap/_inputs.py
CHANGED
@@ -426,6 +426,7 @@ if not MYPY:
|
|
426
426
|
gcip_settings: NotRequired[pulumi.Input['SettingsAccessSettingsGcipSettingsArgsDict']]
|
427
427
|
"""
|
428
428
|
GCIP claims and endpoint configurations for 3p identity providers.
|
429
|
+
* Enabling gcipSetting significantly changes the way IAP authenticates users. Identity Platform does not support IAM, so IAP will not enforce any IAM policies for requests to your application.
|
429
430
|
Structure is documented below.
|
430
431
|
"""
|
431
432
|
identity_sources: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
@@ -471,6 +472,7 @@ class SettingsAccessSettingsArgs:
|
|
471
472
|
:param pulumi.Input['SettingsAccessSettingsCorsSettingsArgs'] cors_settings: Configuration to allow cross-origin requests via IAP.
|
472
473
|
Structure is documented below.
|
473
474
|
:param pulumi.Input['SettingsAccessSettingsGcipSettingsArgs'] gcip_settings: GCIP claims and endpoint configurations for 3p identity providers.
|
475
|
+
* Enabling gcipSetting significantly changes the way IAP authenticates users. Identity Platform does not support IAM, so IAP will not enforce any IAM policies for requests to your application.
|
474
476
|
Structure is documented below.
|
475
477
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] identity_sources: Identity sources that IAP can use to authenticate the end user. Only one identity source
|
476
478
|
can be configured. The possible values are:
|
@@ -531,6 +533,7 @@ class SettingsAccessSettingsArgs:
|
|
531
533
|
def gcip_settings(self) -> Optional[pulumi.Input['SettingsAccessSettingsGcipSettingsArgs']]:
|
532
534
|
"""
|
533
535
|
GCIP claims and endpoint configurations for 3p identity providers.
|
536
|
+
* Enabling gcipSetting significantly changes the way IAP authenticates users. Identity Platform does not support IAM, so IAP will not enforce any IAM policies for requests to your application.
|
534
537
|
Structure is documented below.
|
535
538
|
"""
|
536
539
|
return pulumi.get(self, "gcip_settings")
|
@@ -762,6 +765,7 @@ if not MYPY:
|
|
762
765
|
(https://developers.google.com/identity/protocols/OpenIDConnect#hd-param)
|
763
766
|
Note: IAP does not verify that the id token's hd claim matches this value
|
764
767
|
since access behavior is managed by IAM policies.
|
768
|
+
* loginHint setting is not a replacement for access control. Always enforce an appropriate access policy if you want to restrict access to users outside your domain.
|
765
769
|
"""
|
766
770
|
programmatic_clients: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
767
771
|
"""
|
@@ -781,6 +785,7 @@ class SettingsAccessSettingsOauthSettingsArgs:
|
|
781
785
|
(https://developers.google.com/identity/protocols/OpenIDConnect#hd-param)
|
782
786
|
Note: IAP does not verify that the id token's hd claim matches this value
|
783
787
|
since access behavior is managed by IAM policies.
|
788
|
+
* loginHint setting is not a replacement for access control. Always enforce an appropriate access policy if you want to restrict access to users outside your domain.
|
784
789
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] programmatic_clients: List of client ids allowed to use IAP programmatically.
|
785
790
|
"""
|
786
791
|
if login_hint is not None:
|
@@ -797,6 +802,7 @@ class SettingsAccessSettingsOauthSettingsArgs:
|
|
797
802
|
(https://developers.google.com/identity/protocols/OpenIDConnect#hd-param)
|
798
803
|
Note: IAP does not verify that the id token's hd claim matches this value
|
799
804
|
since access behavior is managed by IAM policies.
|
805
|
+
* loginHint setting is not a replacement for access control. Always enforce an appropriate access policy if you want to restrict access to users outside your domain.
|
800
806
|
"""
|
801
807
|
return pulumi.get(self, "login_hint")
|
802
808
|
|
@@ -931,7 +937,7 @@ if not MYPY:
|
|
931
937
|
Structure is documented below.
|
932
938
|
|
933
939
|
|
934
|
-
<a name="
|
940
|
+
<a name="nested_access_settings_workforce_identity_settings_oauth2"></a>The `oauth2` block supports:
|
935
941
|
"""
|
936
942
|
workforce_pools: NotRequired[pulumi.Input[str]]
|
937
943
|
"""
|
@@ -951,7 +957,7 @@ class SettingsAccessSettingsWorkforceIdentitySettingsArgs:
|
|
951
957
|
Structure is documented below.
|
952
958
|
|
953
959
|
|
954
|
-
<a name="
|
960
|
+
<a name="nested_access_settings_workforce_identity_settings_oauth2"></a>The `oauth2` block supports:
|
955
961
|
:param pulumi.Input[str] workforce_pools: The workforce pool resources. Only one workforce pool is accepted.
|
956
962
|
"""
|
957
963
|
if oauth2 is not None:
|
@@ -968,7 +974,7 @@ class SettingsAccessSettingsWorkforceIdentitySettingsArgs:
|
|
968
974
|
Structure is documented below.
|
969
975
|
|
970
976
|
|
971
|
-
<a name="
|
977
|
+
<a name="nested_access_settings_workforce_identity_settings_oauth2"></a>The `oauth2` block supports:
|
972
978
|
"""
|
973
979
|
return pulumi.get(self, "oauth2")
|
974
980
|
|
pulumi_gcp/iap/outputs.py
CHANGED
@@ -291,6 +291,7 @@ class SettingsAccessSettings(dict):
|
|
291
291
|
:param 'SettingsAccessSettingsCorsSettingsArgs' cors_settings: Configuration to allow cross-origin requests via IAP.
|
292
292
|
Structure is documented below.
|
293
293
|
:param 'SettingsAccessSettingsGcipSettingsArgs' gcip_settings: GCIP claims and endpoint configurations for 3p identity providers.
|
294
|
+
* Enabling gcipSetting significantly changes the way IAP authenticates users. Identity Platform does not support IAM, so IAP will not enforce any IAM policies for requests to your application.
|
294
295
|
Structure is documented below.
|
295
296
|
:param Sequence[str] identity_sources: Identity sources that IAP can use to authenticate the end user. Only one identity source
|
296
297
|
can be configured. The possible values are:
|
@@ -343,6 +344,7 @@ class SettingsAccessSettings(dict):
|
|
343
344
|
def gcip_settings(self) -> Optional['outputs.SettingsAccessSettingsGcipSettings']:
|
344
345
|
"""
|
345
346
|
GCIP claims and endpoint configurations for 3p identity providers.
|
347
|
+
* Enabling gcipSetting significantly changes the way IAP authenticates users. Identity Platform does not support IAM, so IAP will not enforce any IAM policies for requests to your application.
|
346
348
|
Structure is documented below.
|
347
349
|
"""
|
348
350
|
return pulumi.get(self, "gcip_settings")
|
@@ -549,6 +551,7 @@ class SettingsAccessSettingsOauthSettings(dict):
|
|
549
551
|
(https://developers.google.com/identity/protocols/OpenIDConnect#hd-param)
|
550
552
|
Note: IAP does not verify that the id token's hd claim matches this value
|
551
553
|
since access behavior is managed by IAM policies.
|
554
|
+
* loginHint setting is not a replacement for access control. Always enforce an appropriate access policy if you want to restrict access to users outside your domain.
|
552
555
|
:param Sequence[str] programmatic_clients: List of client ids allowed to use IAP programmatically.
|
553
556
|
"""
|
554
557
|
if login_hint is not None:
|
@@ -565,6 +568,7 @@ class SettingsAccessSettingsOauthSettings(dict):
|
|
565
568
|
(https://developers.google.com/identity/protocols/OpenIDConnect#hd-param)
|
566
569
|
Note: IAP does not verify that the id token's hd claim matches this value
|
567
570
|
since access behavior is managed by IAM policies.
|
571
|
+
* loginHint setting is not a replacement for access control. Always enforce an appropriate access policy if you want to restrict access to users outside your domain.
|
568
572
|
"""
|
569
573
|
return pulumi.get(self, "login_hint")
|
570
574
|
|
@@ -688,7 +692,7 @@ class SettingsAccessSettingsWorkforceIdentitySettings(dict):
|
|
688
692
|
Structure is documented below.
|
689
693
|
|
690
694
|
|
691
|
-
<a name="
|
695
|
+
<a name="nested_access_settings_workforce_identity_settings_oauth2"></a>The `oauth2` block supports:
|
692
696
|
:param str workforce_pools: The workforce pool resources. Only one workforce pool is accepted.
|
693
697
|
"""
|
694
698
|
if oauth2 is not None:
|
@@ -705,7 +709,7 @@ class SettingsAccessSettingsWorkforceIdentitySettings(dict):
|
|
705
709
|
Structure is documented below.
|
706
710
|
|
707
711
|
|
708
|
-
<a name="
|
712
|
+
<a name="nested_access_settings_workforce_identity_settings_oauth2"></a>The `oauth2` block supports:
|
709
713
|
"""
|
710
714
|
return pulumi.get(self, "oauth2")
|
711
715
|
|
pulumi_gcp/iap/settings.py
CHANGED
@@ -33,15 +33,15 @@ class SettingsArgs:
|
|
33
33
|
:param pulumi.Input[str] name: The resource name of the IAP protected resource. Name can have below resources:
|
34
34
|
* organizations/{organization_id}
|
35
35
|
* folders/{folder_id}
|
36
|
-
* projects/{
|
37
|
-
* projects/{
|
38
|
-
* projects/{
|
39
|
-
* projects/{
|
40
|
-
* projects/{
|
41
|
-
* projects/{
|
42
|
-
* projects/{
|
43
|
-
* projects/{
|
44
|
-
* projects/{
|
36
|
+
* projects/{project_id}
|
37
|
+
* projects/{project_id}/iap_web
|
38
|
+
* projects/{project_id}/iap_web/compute
|
39
|
+
* projects/{project_id}/iap_web/compute-{region}
|
40
|
+
* projects/{project_id}/iap_web/compute/services/{service_id}
|
41
|
+
* projects/{project_id}/iap_web/compute-{region}/services/{service_id}
|
42
|
+
* projects/{project_id}/iap_web/appengine-{app_id}
|
43
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}
|
44
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}/version/{version_id}
|
45
45
|
|
46
46
|
|
47
47
|
- - -
|
@@ -86,15 +86,15 @@ class SettingsArgs:
|
|
86
86
|
The resource name of the IAP protected resource. Name can have below resources:
|
87
87
|
* organizations/{organization_id}
|
88
88
|
* folders/{folder_id}
|
89
|
-
* projects/{
|
90
|
-
* projects/{
|
91
|
-
* projects/{
|
92
|
-
* projects/{
|
93
|
-
* projects/{
|
94
|
-
* projects/{
|
95
|
-
* projects/{
|
96
|
-
* projects/{
|
97
|
-
* projects/{
|
89
|
+
* projects/{project_id}
|
90
|
+
* projects/{project_id}/iap_web
|
91
|
+
* projects/{project_id}/iap_web/compute
|
92
|
+
* projects/{project_id}/iap_web/compute-{region}
|
93
|
+
* projects/{project_id}/iap_web/compute/services/{service_id}
|
94
|
+
* projects/{project_id}/iap_web/compute-{region}/services/{service_id}
|
95
|
+
* projects/{project_id}/iap_web/appengine-{app_id}
|
96
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}
|
97
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}/version/{version_id}
|
98
98
|
|
99
99
|
|
100
100
|
- - -
|
@@ -121,15 +121,15 @@ class _SettingsState:
|
|
121
121
|
:param pulumi.Input[str] name: The resource name of the IAP protected resource. Name can have below resources:
|
122
122
|
* organizations/{organization_id}
|
123
123
|
* folders/{folder_id}
|
124
|
-
* projects/{
|
125
|
-
* projects/{
|
126
|
-
* projects/{
|
127
|
-
* projects/{
|
128
|
-
* projects/{
|
129
|
-
* projects/{
|
130
|
-
* projects/{
|
131
|
-
* projects/{
|
132
|
-
* projects/{
|
124
|
+
* projects/{project_id}
|
125
|
+
* projects/{project_id}/iap_web
|
126
|
+
* projects/{project_id}/iap_web/compute
|
127
|
+
* projects/{project_id}/iap_web/compute-{region}
|
128
|
+
* projects/{project_id}/iap_web/compute/services/{service_id}
|
129
|
+
* projects/{project_id}/iap_web/compute-{region}/services/{service_id}
|
130
|
+
* projects/{project_id}/iap_web/appengine-{app_id}
|
131
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}
|
132
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}/version/{version_id}
|
133
133
|
|
134
134
|
|
135
135
|
- - -
|
@@ -174,15 +174,15 @@ class _SettingsState:
|
|
174
174
|
The resource name of the IAP protected resource. Name can have below resources:
|
175
175
|
* organizations/{organization_id}
|
176
176
|
* folders/{folder_id}
|
177
|
-
* projects/{
|
178
|
-
* projects/{
|
179
|
-
* projects/{
|
180
|
-
* projects/{
|
181
|
-
* projects/{
|
182
|
-
* projects/{
|
183
|
-
* projects/{
|
184
|
-
* projects/{
|
185
|
-
* projects/{
|
177
|
+
* projects/{project_id}
|
178
|
+
* projects/{project_id}/iap_web
|
179
|
+
* projects/{project_id}/iap_web/compute
|
180
|
+
* projects/{project_id}/iap_web/compute-{region}
|
181
|
+
* projects/{project_id}/iap_web/compute/services/{service_id}
|
182
|
+
* projects/{project_id}/iap_web/compute-{region}/services/{service_id}
|
183
|
+
* projects/{project_id}/iap_web/appengine-{app_id}
|
184
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}
|
185
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}/version/{version_id}
|
186
186
|
|
187
187
|
|
188
188
|
- - -
|
@@ -309,15 +309,15 @@ class Settings(pulumi.CustomResource):
|
|
309
309
|
:param pulumi.Input[str] name: The resource name of the IAP protected resource. Name can have below resources:
|
310
310
|
* organizations/{organization_id}
|
311
311
|
* folders/{folder_id}
|
312
|
-
* projects/{
|
313
|
-
* projects/{
|
314
|
-
* projects/{
|
315
|
-
* projects/{
|
316
|
-
* projects/{
|
317
|
-
* projects/{
|
318
|
-
* projects/{
|
319
|
-
* projects/{
|
320
|
-
* projects/{
|
312
|
+
* projects/{project_id}
|
313
|
+
* projects/{project_id}/iap_web
|
314
|
+
* projects/{project_id}/iap_web/compute
|
315
|
+
* projects/{project_id}/iap_web/compute-{region}
|
316
|
+
* projects/{project_id}/iap_web/compute/services/{service_id}
|
317
|
+
* projects/{project_id}/iap_web/compute-{region}/services/{service_id}
|
318
|
+
* projects/{project_id}/iap_web/appengine-{app_id}
|
319
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}
|
320
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}/version/{version_id}
|
321
321
|
|
322
322
|
|
323
323
|
- - -
|
@@ -482,15 +482,15 @@ class Settings(pulumi.CustomResource):
|
|
482
482
|
:param pulumi.Input[str] name: The resource name of the IAP protected resource. Name can have below resources:
|
483
483
|
* organizations/{organization_id}
|
484
484
|
* folders/{folder_id}
|
485
|
-
* projects/{
|
486
|
-
* projects/{
|
487
|
-
* projects/{
|
488
|
-
* projects/{
|
489
|
-
* projects/{
|
490
|
-
* projects/{
|
491
|
-
* projects/{
|
492
|
-
* projects/{
|
493
|
-
* projects/{
|
485
|
+
* projects/{project_id}
|
486
|
+
* projects/{project_id}/iap_web
|
487
|
+
* projects/{project_id}/iap_web/compute
|
488
|
+
* projects/{project_id}/iap_web/compute-{region}
|
489
|
+
* projects/{project_id}/iap_web/compute/services/{service_id}
|
490
|
+
* projects/{project_id}/iap_web/compute-{region}/services/{service_id}
|
491
|
+
* projects/{project_id}/iap_web/appengine-{app_id}
|
492
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}
|
493
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}/version/{version_id}
|
494
494
|
|
495
495
|
|
496
496
|
- - -
|
@@ -529,15 +529,15 @@ class Settings(pulumi.CustomResource):
|
|
529
529
|
The resource name of the IAP protected resource. Name can have below resources:
|
530
530
|
* organizations/{organization_id}
|
531
531
|
* folders/{folder_id}
|
532
|
-
* projects/{
|
533
|
-
* projects/{
|
534
|
-
* projects/{
|
535
|
-
* projects/{
|
536
|
-
* projects/{
|
537
|
-
* projects/{
|
538
|
-
* projects/{
|
539
|
-
* projects/{
|
540
|
-
* projects/{
|
532
|
+
* projects/{project_id}
|
533
|
+
* projects/{project_id}/iap_web
|
534
|
+
* projects/{project_id}/iap_web/compute
|
535
|
+
* projects/{project_id}/iap_web/compute-{region}
|
536
|
+
* projects/{project_id}/iap_web/compute/services/{service_id}
|
537
|
+
* projects/{project_id}/iap_web/compute-{region}/services/{service_id}
|
538
|
+
* projects/{project_id}/iap_web/appengine-{app_id}
|
539
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}
|
540
|
+
* projects/{project_id}/iap_web/appengine-{app_id}/services/{service_id}/version/{version_id}
|
541
541
|
|
542
542
|
|
543
543
|
- - -
|
@@ -954,7 +954,7 @@ if not MYPY:
|
|
954
954
|
"""
|
955
955
|
Whether anonymous user auth is enabled for the project or not.
|
956
956
|
|
957
|
-
<a name="
|
957
|
+
<a name="nested_sign_in_hash_config"></a>The `hash_config` block contains:
|
958
958
|
"""
|
959
959
|
elif False:
|
960
960
|
ConfigSignInAnonymousArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -966,7 +966,7 @@ class ConfigSignInAnonymousArgs:
|
|
966
966
|
"""
|
967
967
|
:param pulumi.Input[bool] enabled: Whether anonymous user auth is enabled for the project or not.
|
968
968
|
|
969
|
-
<a name="
|
969
|
+
<a name="nested_sign_in_hash_config"></a>The `hash_config` block contains:
|
970
970
|
"""
|
971
971
|
pulumi.set(__self__, "enabled", enabled)
|
972
972
|
|
@@ -976,7 +976,7 @@ class ConfigSignInAnonymousArgs:
|
|
976
976
|
"""
|
977
977
|
Whether anonymous user auth is enabled for the project or not.
|
978
978
|
|
979
|
-
<a name="
|
979
|
+
<a name="nested_sign_in_hash_config"></a>The `hash_config` block contains:
|
980
980
|
"""
|
981
981
|
return pulumi.get(self, "enabled")
|
982
982
|
|
@@ -1464,7 +1464,7 @@ if not MYPY:
|
|
1464
1464
|
Structure is documented below.
|
1465
1465
|
|
1466
1466
|
|
1467
|
-
<a name="
|
1467
|
+
<a name="nested_sp_config_sp_certificates"></a>The `sp_certificates` block contains:
|
1468
1468
|
"""
|
1469
1469
|
sp_entity_id: NotRequired[pulumi.Input[str]]
|
1470
1470
|
"""
|
@@ -1486,7 +1486,7 @@ class InboundSamlConfigSpConfigArgs:
|
|
1486
1486
|
Structure is documented below.
|
1487
1487
|
|
1488
1488
|
|
1489
|
-
<a name="
|
1489
|
+
<a name="nested_sp_config_sp_certificates"></a>The `sp_certificates` block contains:
|
1490
1490
|
:param pulumi.Input[str] sp_entity_id: Unique identifier for all SAML entities.
|
1491
1491
|
"""
|
1492
1492
|
if callback_uri is not None:
|
@@ -1517,7 +1517,7 @@ class InboundSamlConfigSpConfigArgs:
|
|
1517
1517
|
Structure is documented below.
|
1518
1518
|
|
1519
1519
|
|
1520
|
-
<a name="
|
1520
|
+
<a name="nested_sp_config_sp_certificates"></a>The `sp_certificates` block contains:
|
1521
1521
|
"""
|
1522
1522
|
return pulumi.get(self, "sp_certificates")
|
1523
1523
|
|
@@ -1711,7 +1711,7 @@ if not MYPY:
|
|
1711
1711
|
Structure is documented below.
|
1712
1712
|
|
1713
1713
|
|
1714
|
-
<a name="
|
1714
|
+
<a name="nested_sp_config_sp_certificates"></a>The `sp_certificates` block contains:
|
1715
1715
|
"""
|
1716
1716
|
elif False:
|
1717
1717
|
TenantInboundSamlConfigSpConfigArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1730,7 +1730,7 @@ class TenantInboundSamlConfigSpConfigArgs:
|
|
1730
1730
|
Structure is documented below.
|
1731
1731
|
|
1732
1732
|
|
1733
|
-
<a name="
|
1733
|
+
<a name="nested_sp_config_sp_certificates"></a>The `sp_certificates` block contains:
|
1734
1734
|
"""
|
1735
1735
|
pulumi.set(__self__, "callback_uri", callback_uri)
|
1736
1736
|
pulumi.set(__self__, "sp_entity_id", sp_entity_id)
|
@@ -1770,7 +1770,7 @@ class TenantInboundSamlConfigSpConfigArgs:
|
|
1770
1770
|
Structure is documented below.
|
1771
1771
|
|
1772
1772
|
|
1773
|
-
<a name="
|
1773
|
+
<a name="nested_sp_config_sp_certificates"></a>The `sp_certificates` block contains:
|
1774
1774
|
"""
|
1775
1775
|
return pulumi.get(self, "sp_certificates")
|
1776
1776
|
|