pulumi-gcp 7.19.0__py3-none-any.whl → 7.19.0a1713292926__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 +0 -11
- pulumi_gcp/accesscontextmanager/access_policy.py +4 -4
- pulumi_gcp/apigee/sync_authorization.py +4 -4
- pulumi_gcp/compute/_inputs.py +0 -24
- pulumi_gcp/compute/get_router_nat.py +1 -11
- pulumi_gcp/compute/instance_settings.py +0 -16
- pulumi_gcp/compute/outputs.py +0 -41
- pulumi_gcp/compute/router_interface.py +0 -47
- pulumi_gcp/compute/router_nat.py +0 -68
- pulumi_gcp/compute/router_peer.py +0 -141
- pulumi_gcp/config/__init__.pyi +0 -2
- pulumi_gcp/config/vars.py +0 -4
- pulumi_gcp/container/_inputs.py +7 -48
- pulumi_gcp/container/outputs.py +8 -67
- pulumi_gcp/datastore/data_store_index.py +0 -14
- pulumi_gcp/dns/_inputs.py +22 -22
- pulumi_gcp/dns/outputs.py +22 -22
- pulumi_gcp/firestore/_inputs.py +11 -80
- pulumi_gcp/firestore/document.py +4 -0
- pulumi_gcp/firestore/index.py +42 -116
- pulumi_gcp/firestore/outputs.py +11 -70
- pulumi_gcp/gkebackup/_inputs.py +3 -358
- pulumi_gcp/gkebackup/backup_plan.py +0 -294
- pulumi_gcp/gkebackup/outputs.py +3 -353
- pulumi_gcp/networksecurity/firewall_endpoint.py +0 -2
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -61
- pulumi_gcp/provider.py +0 -20
- pulumi_gcp/sql/_inputs.py +0 -16
- pulumi_gcp/sql/outputs.py +0 -36
- pulumi_gcp/tags/__init__.py +0 -2
- pulumi_gcp/tags/outputs.py +0 -200
- pulumi_gcp/vmwareengine/get_private_cloud.py +1 -21
- pulumi_gcp/vmwareengine/private_cloud.py +7 -101
- {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/RECORD +37 -41
- pulumi_gcp/parallelstore/__init__.py +0 -8
- pulumi_gcp/parallelstore/instance.py +0 -1128
- pulumi_gcp/tags/get_tag_keys.py +0 -101
- pulumi_gcp/tags/get_tag_values.py +0 -101
- {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.19.0.dist-info → pulumi_gcp-7.19.0a1713292926.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/outputs.py
CHANGED
@@ -91,7 +91,6 @@ __all__ = [
|
|
91
91
|
'ClusterAddonsConfigIstioConfig',
|
92
92
|
'ClusterAddonsConfigKalmConfig',
|
93
93
|
'ClusterAddonsConfigNetworkPolicyConfig',
|
94
|
-
'ClusterAddonsConfigStatefulHaConfig',
|
95
94
|
'ClusterAuthenticatorGroupsConfig',
|
96
95
|
'ClusterBinaryAuthorization',
|
97
96
|
'ClusterClusterAutoscaling',
|
@@ -260,7 +259,6 @@ __all__ = [
|
|
260
259
|
'GetClusterAddonsConfigIstioConfigResult',
|
261
260
|
'GetClusterAddonsConfigKalmConfigResult',
|
262
261
|
'GetClusterAddonsConfigNetworkPolicyConfigResult',
|
263
|
-
'GetClusterAddonsConfigStatefulHaConfigResult',
|
264
262
|
'GetClusterAuthenticatorGroupsConfigResult',
|
265
263
|
'GetClusterBinaryAuthorizationResult',
|
266
264
|
'GetClusterClusterAutoscalingResult',
|
@@ -3722,8 +3720,6 @@ class ClusterAddonsConfig(dict):
|
|
3722
3720
|
suggest = "kalm_config"
|
3723
3721
|
elif key == "networkPolicyConfig":
|
3724
3722
|
suggest = "network_policy_config"
|
3725
|
-
elif key == "statefulHaConfig":
|
3726
|
-
suggest = "stateful_ha_config"
|
3727
3723
|
|
3728
3724
|
if suggest:
|
3729
3725
|
pulumi.log.warn(f"Key '{key}' not found in ClusterAddonsConfig. Access the value via the '{suggest}' property getter instead.")
|
@@ -3748,12 +3744,14 @@ class ClusterAddonsConfig(dict):
|
|
3748
3744
|
http_load_balancing: Optional['outputs.ClusterAddonsConfigHttpLoadBalancing'] = None,
|
3749
3745
|
istio_config: Optional['outputs.ClusterAddonsConfigIstioConfig'] = None,
|
3750
3746
|
kalm_config: Optional['outputs.ClusterAddonsConfigKalmConfig'] = None,
|
3751
|
-
network_policy_config: Optional['outputs.ClusterAddonsConfigNetworkPolicyConfig'] = None
|
3752
|
-
stateful_ha_config: Optional['outputs.ClusterAddonsConfigStatefulHaConfig'] = None):
|
3747
|
+
network_policy_config: Optional['outputs.ClusterAddonsConfigNetworkPolicyConfig'] = None):
|
3753
3748
|
"""
|
3754
3749
|
:param 'ClusterAddonsConfigCloudrunConfigArgs' cloudrun_config: . Structure is documented below.
|
3755
3750
|
:param 'ClusterAddonsConfigConfigConnectorConfigArgs' config_connector_config: .
|
3756
3751
|
The status of the ConfigConnector addon. It is disabled by default; Set `enabled = true` to enable.
|
3752
|
+
|
3753
|
+
|
3754
|
+
This example `addons_config` disables two addons:
|
3757
3755
|
:param 'ClusterAddonsConfigDnsCacheConfigArgs' dns_cache_config: .
|
3758
3756
|
The status of the NodeLocal DNSCache addon. It is disabled by default.
|
3759
3757
|
Set `enabled = true` to enable.
|
@@ -3792,11 +3790,6 @@ class ClusterAddonsConfig(dict):
|
|
3792
3790
|
otherwise nothing will happen.
|
3793
3791
|
It can only be disabled if the nodes already do not have network policies enabled.
|
3794
3792
|
Defaults to disabled; set `disabled = false` to enable.
|
3795
|
-
:param 'ClusterAddonsConfigStatefulHaConfigArgs' stateful_ha_config: .
|
3796
|
-
The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications.
|
3797
|
-
It is disabled by default for Standard clusters. Set `enabled = true` to enable.
|
3798
|
-
|
3799
|
-
This example `addons_config` disables two addons:
|
3800
3793
|
"""
|
3801
3794
|
if cloudrun_config is not None:
|
3802
3795
|
pulumi.set(__self__, "cloudrun_config", cloudrun_config)
|
@@ -3822,8 +3815,6 @@ class ClusterAddonsConfig(dict):
|
|
3822
3815
|
pulumi.set(__self__, "kalm_config", kalm_config)
|
3823
3816
|
if network_policy_config is not None:
|
3824
3817
|
pulumi.set(__self__, "network_policy_config", network_policy_config)
|
3825
|
-
if stateful_ha_config is not None:
|
3826
|
-
pulumi.set(__self__, "stateful_ha_config", stateful_ha_config)
|
3827
3818
|
|
3828
3819
|
@property
|
3829
3820
|
@pulumi.getter(name="cloudrunConfig")
|
@@ -3839,6 +3830,9 @@ class ClusterAddonsConfig(dict):
|
|
3839
3830
|
"""
|
3840
3831
|
.
|
3841
3832
|
The status of the ConfigConnector addon. It is disabled by default; Set `enabled = true` to enable.
|
3833
|
+
|
3834
|
+
|
3835
|
+
This example `addons_config` disables two addons:
|
3842
3836
|
"""
|
3843
3837
|
return pulumi.get(self, "config_connector_config")
|
3844
3838
|
|
@@ -3950,18 +3944,6 @@ class ClusterAddonsConfig(dict):
|
|
3950
3944
|
"""
|
3951
3945
|
return pulumi.get(self, "network_policy_config")
|
3952
3946
|
|
3953
|
-
@property
|
3954
|
-
@pulumi.getter(name="statefulHaConfig")
|
3955
|
-
def stateful_ha_config(self) -> Optional['outputs.ClusterAddonsConfigStatefulHaConfig']:
|
3956
|
-
"""
|
3957
|
-
.
|
3958
|
-
The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications.
|
3959
|
-
It is disabled by default for Standard clusters. Set `enabled = true` to enable.
|
3960
|
-
|
3961
|
-
This example `addons_config` disables two addons:
|
3962
|
-
"""
|
3963
|
-
return pulumi.get(self, "stateful_ha_config")
|
3964
|
-
|
3965
3947
|
|
3966
3948
|
@pulumi.output_type
|
3967
3949
|
class ClusterAddonsConfigCloudrunConfig(dict):
|
@@ -4236,24 +4218,6 @@ class ClusterAddonsConfigNetworkPolicyConfig(dict):
|
|
4236
4218
|
return pulumi.get(self, "disabled")
|
4237
4219
|
|
4238
4220
|
|
4239
|
-
@pulumi.output_type
|
4240
|
-
class ClusterAddonsConfigStatefulHaConfig(dict):
|
4241
|
-
def __init__(__self__, *,
|
4242
|
-
enabled: bool):
|
4243
|
-
"""
|
4244
|
-
:param bool enabled: Enable Binary Authorization for this cluster. Deprecated in favor of `evaluation_mode`.
|
4245
|
-
"""
|
4246
|
-
pulumi.set(__self__, "enabled", enabled)
|
4247
|
-
|
4248
|
-
@property
|
4249
|
-
@pulumi.getter
|
4250
|
-
def enabled(self) -> bool:
|
4251
|
-
"""
|
4252
|
-
Enable Binary Authorization for this cluster. Deprecated in favor of `evaluation_mode`.
|
4253
|
-
"""
|
4254
|
-
return pulumi.get(self, "enabled")
|
4255
|
-
|
4256
|
-
|
4257
4221
|
@pulumi.output_type
|
4258
4222
|
class ClusterAuthenticatorGroupsConfig(dict):
|
4259
4223
|
@staticmethod
|
@@ -13693,8 +13657,7 @@ class GetClusterAddonsConfigResult(dict):
|
|
13693
13657
|
http_load_balancings: Sequence['outputs.GetClusterAddonsConfigHttpLoadBalancingResult'],
|
13694
13658
|
istio_configs: Sequence['outputs.GetClusterAddonsConfigIstioConfigResult'],
|
13695
13659
|
kalm_configs: Sequence['outputs.GetClusterAddonsConfigKalmConfigResult'],
|
13696
|
-
network_policy_configs: Sequence['outputs.GetClusterAddonsConfigNetworkPolicyConfigResult']
|
13697
|
-
stateful_ha_configs: Sequence['outputs.GetClusterAddonsConfigStatefulHaConfigResult']):
|
13660
|
+
network_policy_configs: Sequence['outputs.GetClusterAddonsConfigNetworkPolicyConfigResult']):
|
13698
13661
|
"""
|
13699
13662
|
:param Sequence['GetClusterAddonsConfigCloudrunConfigArgs'] cloudrun_configs: The status of the CloudRun addon. It is disabled by default. Set disabled = false to enable.
|
13700
13663
|
:param Sequence['GetClusterAddonsConfigConfigConnectorConfigArgs'] config_connector_configs: The of the Config Connector addon.
|
@@ -13708,7 +13671,6 @@ class GetClusterAddonsConfigResult(dict):
|
|
13708
13671
|
:param Sequence['GetClusterAddonsConfigIstioConfigArgs'] istio_configs: The status of the Istio addon.
|
13709
13672
|
:param Sequence['GetClusterAddonsConfigKalmConfigArgs'] kalm_configs: Configuration for the KALM addon, which manages the lifecycle of k8s. It is disabled by default; Set enabled = true to enable.
|
13710
13673
|
:param Sequence['GetClusterAddonsConfigNetworkPolicyConfigArgs'] network_policy_configs: Whether we should enable the network policy addon for the master. This must be enabled in order to enable network policy for the nodes. To enable this, you must also define a network_policy block, otherwise nothing will happen. It can only be disabled if the nodes already do not have network policies enabled. Defaults to disabled; set disabled = false to enable.
|
13711
|
-
:param Sequence['GetClusterAddonsConfigStatefulHaConfigArgs'] stateful_ha_configs: The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications. Defaults to disabled; set enabled = true to enable.
|
13712
13674
|
"""
|
13713
13675
|
pulumi.set(__self__, "cloudrun_configs", cloudrun_configs)
|
13714
13676
|
pulumi.set(__self__, "config_connector_configs", config_connector_configs)
|
@@ -13722,7 +13684,6 @@ class GetClusterAddonsConfigResult(dict):
|
|
13722
13684
|
pulumi.set(__self__, "istio_configs", istio_configs)
|
13723
13685
|
pulumi.set(__self__, "kalm_configs", kalm_configs)
|
13724
13686
|
pulumi.set(__self__, "network_policy_configs", network_policy_configs)
|
13725
|
-
pulumi.set(__self__, "stateful_ha_configs", stateful_ha_configs)
|
13726
13687
|
|
13727
13688
|
@property
|
13728
13689
|
@pulumi.getter(name="cloudrunConfigs")
|
@@ -13820,14 +13781,6 @@ class GetClusterAddonsConfigResult(dict):
|
|
13820
13781
|
"""
|
13821
13782
|
return pulumi.get(self, "network_policy_configs")
|
13822
13783
|
|
13823
|
-
@property
|
13824
|
-
@pulumi.getter(name="statefulHaConfigs")
|
13825
|
-
def stateful_ha_configs(self) -> Sequence['outputs.GetClusterAddonsConfigStatefulHaConfigResult']:
|
13826
|
-
"""
|
13827
|
-
The status of the Stateful HA addon, which provides automatic configurable failover for stateful applications. Defaults to disabled; set enabled = true to enable.
|
13828
|
-
"""
|
13829
|
-
return pulumi.get(self, "stateful_ha_configs")
|
13830
|
-
|
13831
13784
|
|
13832
13785
|
@pulumi.output_type
|
13833
13786
|
class GetClusterAddonsConfigCloudrunConfigResult(dict):
|
@@ -13997,18 +13950,6 @@ class GetClusterAddonsConfigNetworkPolicyConfigResult(dict):
|
|
13997
13950
|
return pulumi.get(self, "disabled")
|
13998
13951
|
|
13999
13952
|
|
14000
|
-
@pulumi.output_type
|
14001
|
-
class GetClusterAddonsConfigStatefulHaConfigResult(dict):
|
14002
|
-
def __init__(__self__, *,
|
14003
|
-
enabled: bool):
|
14004
|
-
pulumi.set(__self__, "enabled", enabled)
|
14005
|
-
|
14006
|
-
@property
|
14007
|
-
@pulumi.getter
|
14008
|
-
def enabled(self) -> bool:
|
14009
|
-
return pulumi.get(self, "enabled")
|
14010
|
-
|
14011
|
-
|
14012
13953
|
@pulumi.output_type
|
14013
13954
|
class GetClusterAuthenticatorGroupsConfigResult(dict):
|
14014
13955
|
def __init__(__self__, *,
|
@@ -234,13 +234,6 @@ class DataStoreIndex(pulumi.CustomResource):
|
|
234
234
|
import pulumi
|
235
235
|
import pulumi_gcp as gcp
|
236
236
|
|
237
|
-
database = gcp.firestore.Database("database",
|
238
|
-
project="my-project-name",
|
239
|
-
name="(default)",
|
240
|
-
location_id="nam5",
|
241
|
-
type="DATASTORE_MODE",
|
242
|
-
delete_protection_state="DELETE_PROTECTION_DISABLED",
|
243
|
-
deletion_policy="DELETE")
|
244
237
|
default = gcp.datastore.DataStoreIndex("default",
|
245
238
|
kind="foo",
|
246
239
|
properties=[
|
@@ -324,13 +317,6 @@ class DataStoreIndex(pulumi.CustomResource):
|
|
324
317
|
import pulumi
|
325
318
|
import pulumi_gcp as gcp
|
326
319
|
|
327
|
-
database = gcp.firestore.Database("database",
|
328
|
-
project="my-project-name",
|
329
|
-
name="(default)",
|
330
|
-
location_id="nam5",
|
331
|
-
type="DATASTORE_MODE",
|
332
|
-
delete_protection_state="DELETE_PROTECTION_DISABLED",
|
333
|
-
deletion_policy="DELETE")
|
334
320
|
default = gcp.datastore.DataStoreIndex("default",
|
335
321
|
kind="foo",
|
336
322
|
properties=[
|
pulumi_gcp/dns/_inputs.py
CHANGED
@@ -690,11 +690,11 @@ class RecordSetRoutingPolicyArgs:
|
|
690
690
|
"""
|
691
691
|
:param pulumi.Input[bool] enable_geo_fencing: Specifies whether to enable fencing for geo queries.
|
692
692
|
:param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyGeoArgs']]] geos: The configuration for Geolocation based routing policy.
|
693
|
-
Structure is
|
693
|
+
Structure is document below.
|
694
694
|
:param pulumi.Input['RecordSetRoutingPolicyPrimaryBackupArgs'] primary_backup: The configuration for a primary-backup policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy.
|
695
|
-
Structure is
|
695
|
+
Structure is document below.
|
696
696
|
:param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyWrrArgs']]] wrrs: The configuration for Weighted Round Robin based routing policy.
|
697
|
-
Structure is
|
697
|
+
Structure is document below.
|
698
698
|
"""
|
699
699
|
if enable_geo_fencing is not None:
|
700
700
|
pulumi.set(__self__, "enable_geo_fencing", enable_geo_fencing)
|
@@ -722,7 +722,7 @@ class RecordSetRoutingPolicyArgs:
|
|
722
722
|
def geos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyGeoArgs']]]]:
|
723
723
|
"""
|
724
724
|
The configuration for Geolocation based routing policy.
|
725
|
-
Structure is
|
725
|
+
Structure is document below.
|
726
726
|
"""
|
727
727
|
return pulumi.get(self, "geos")
|
728
728
|
|
@@ -735,7 +735,7 @@ class RecordSetRoutingPolicyArgs:
|
|
735
735
|
def primary_backup(self) -> Optional[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupArgs']]:
|
736
736
|
"""
|
737
737
|
The configuration for a primary-backup policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy.
|
738
|
-
Structure is
|
738
|
+
Structure is document below.
|
739
739
|
"""
|
740
740
|
return pulumi.get(self, "primary_backup")
|
741
741
|
|
@@ -748,7 +748,7 @@ class RecordSetRoutingPolicyArgs:
|
|
748
748
|
def wrrs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyWrrArgs']]]]:
|
749
749
|
"""
|
750
750
|
The configuration for Weighted Round Robin based routing policy.
|
751
|
-
Structure is
|
751
|
+
Structure is document below.
|
752
752
|
"""
|
753
753
|
return pulumi.get(self, "wrrs")
|
754
754
|
|
@@ -766,7 +766,7 @@ class RecordSetRoutingPolicyGeoArgs:
|
|
766
766
|
"""
|
767
767
|
:param pulumi.Input[str] location: The location name defined in Google Cloud.
|
768
768
|
:param pulumi.Input['RecordSetRoutingPolicyGeoHealthCheckedTargetsArgs'] health_checked_targets: For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
769
|
-
Structure is
|
769
|
+
Structure is document below.
|
770
770
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] rrdatas: Same as `rrdatas` above.
|
771
771
|
"""
|
772
772
|
pulumi.set(__self__, "location", location)
|
@@ -792,7 +792,7 @@ class RecordSetRoutingPolicyGeoArgs:
|
|
792
792
|
def health_checked_targets(self) -> Optional[pulumi.Input['RecordSetRoutingPolicyGeoHealthCheckedTargetsArgs']]:
|
793
793
|
"""
|
794
794
|
For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
795
|
-
Structure is
|
795
|
+
Structure is document below.
|
796
796
|
"""
|
797
797
|
return pulumi.get(self, "health_checked_targets")
|
798
798
|
|
@@ -819,7 +819,7 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsArgs:
|
|
819
819
|
internal_load_balancers: pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancerArgs']]]):
|
820
820
|
"""
|
821
821
|
:param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancerArgs']]] internal_load_balancers: The list of internal load balancers to health check.
|
822
|
-
Structure is
|
822
|
+
Structure is document below.
|
823
823
|
"""
|
824
824
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
825
825
|
|
@@ -828,7 +828,7 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargetsArgs:
|
|
828
828
|
def internal_load_balancers(self) -> pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancerArgs']]]:
|
829
829
|
"""
|
830
830
|
The list of internal load balancers to health check.
|
831
|
-
Structure is
|
831
|
+
Structure is document below.
|
832
832
|
"""
|
833
833
|
return pulumi.get(self, "internal_load_balancers")
|
834
834
|
|
@@ -961,7 +961,7 @@ class RecordSetRoutingPolicyPrimaryBackupArgs:
|
|
961
961
|
:param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupBackupGeoArgs']]] backup_geos: The backup geo targets, which provide a regional failover policy for the otherwise global primary targets.
|
962
962
|
Structure is document above.
|
963
963
|
:param pulumi.Input['RecordSetRoutingPolicyPrimaryBackupPrimaryArgs'] primary: The list of global primary targets to be health checked.
|
964
|
-
Structure is
|
964
|
+
Structure is document below.
|
965
965
|
:param pulumi.Input[bool] enable_geo_fencing_for_backups: Specifies whether to enable fencing for backup geo queries.
|
966
966
|
:param pulumi.Input[float] trickle_ratio: Specifies the percentage of traffic to send to the backup targets even when the primary targets are healthy.
|
967
967
|
"""
|
@@ -990,7 +990,7 @@ class RecordSetRoutingPolicyPrimaryBackupArgs:
|
|
990
990
|
def primary(self) -> pulumi.Input['RecordSetRoutingPolicyPrimaryBackupPrimaryArgs']:
|
991
991
|
"""
|
992
992
|
The list of global primary targets to be health checked.
|
993
|
-
Structure is
|
993
|
+
Structure is document below.
|
994
994
|
"""
|
995
995
|
return pulumi.get(self, "primary")
|
996
996
|
|
@@ -1032,7 +1032,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoArgs:
|
|
1032
1032
|
"""
|
1033
1033
|
:param pulumi.Input[str] location: The location name defined in Google Cloud.
|
1034
1034
|
:param pulumi.Input['RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsArgs'] health_checked_targets: For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
1035
|
-
Structure is
|
1035
|
+
Structure is document below.
|
1036
1036
|
"""
|
1037
1037
|
pulumi.set(__self__, "location", location)
|
1038
1038
|
if health_checked_targets is not None:
|
@@ -1057,7 +1057,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoArgs:
|
|
1057
1057
|
def health_checked_targets(self) -> Optional[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsArgs']]:
|
1058
1058
|
"""
|
1059
1059
|
For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
1060
|
-
Structure is
|
1060
|
+
Structure is document below.
|
1061
1061
|
"""
|
1062
1062
|
return pulumi.get(self, "health_checked_targets")
|
1063
1063
|
|
@@ -1081,7 +1081,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsArgs:
|
|
1081
1081
|
internal_load_balancers: pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLoadBalancerArgs']]]):
|
1082
1082
|
"""
|
1083
1083
|
:param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLoadBalancerArgs']]] internal_load_balancers: The list of internal load balancers to health check.
|
1084
|
-
Structure is
|
1084
|
+
Structure is document below.
|
1085
1085
|
"""
|
1086
1086
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
1087
1087
|
|
@@ -1090,7 +1090,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsArgs:
|
|
1090
1090
|
def internal_load_balancers(self) -> pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLoadBalancerArgs']]]:
|
1091
1091
|
"""
|
1092
1092
|
The list of internal load balancers to health check.
|
1093
|
-
Structure is
|
1093
|
+
Structure is document below.
|
1094
1094
|
"""
|
1095
1095
|
return pulumi.get(self, "internal_load_balancers")
|
1096
1096
|
|
@@ -1218,7 +1218,7 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryArgs:
|
|
1218
1218
|
internal_load_balancers: pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancerArgs']]]):
|
1219
1219
|
"""
|
1220
1220
|
:param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancerArgs']]] internal_load_balancers: The list of internal load balancers to health check.
|
1221
|
-
Structure is
|
1221
|
+
Structure is document below.
|
1222
1222
|
"""
|
1223
1223
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
1224
1224
|
|
@@ -1227,7 +1227,7 @@ class RecordSetRoutingPolicyPrimaryBackupPrimaryArgs:
|
|
1227
1227
|
def internal_load_balancers(self) -> pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancerArgs']]]:
|
1228
1228
|
"""
|
1229
1229
|
The list of internal load balancers to health check.
|
1230
|
-
Structure is
|
1230
|
+
Structure is document below.
|
1231
1231
|
"""
|
1232
1232
|
return pulumi.get(self, "internal_load_balancers")
|
1233
1233
|
|
@@ -1358,7 +1358,7 @@ class RecordSetRoutingPolicyWrrArgs:
|
|
1358
1358
|
"""
|
1359
1359
|
:param pulumi.Input[float] weight: The ratio of traffic routed to the target.
|
1360
1360
|
:param pulumi.Input['RecordSetRoutingPolicyWrrHealthCheckedTargetsArgs'] health_checked_targets: The list of targets to be health checked. Note that if DNSSEC is enabled for this zone, only one of `rrdatas` or `health_checked_targets` can be set.
|
1361
|
-
Structure is
|
1361
|
+
Structure is document below.
|
1362
1362
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] rrdatas: Same as `rrdatas` above.
|
1363
1363
|
"""
|
1364
1364
|
pulumi.set(__self__, "weight", weight)
|
@@ -1384,7 +1384,7 @@ class RecordSetRoutingPolicyWrrArgs:
|
|
1384
1384
|
def health_checked_targets(self) -> Optional[pulumi.Input['RecordSetRoutingPolicyWrrHealthCheckedTargetsArgs']]:
|
1385
1385
|
"""
|
1386
1386
|
The list of targets to be health checked. Note that if DNSSEC is enabled for this zone, only one of `rrdatas` or `health_checked_targets` can be set.
|
1387
|
-
Structure is
|
1387
|
+
Structure is document below.
|
1388
1388
|
"""
|
1389
1389
|
return pulumi.get(self, "health_checked_targets")
|
1390
1390
|
|
@@ -1411,7 +1411,7 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsArgs:
|
|
1411
1411
|
internal_load_balancers: pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancerArgs']]]):
|
1412
1412
|
"""
|
1413
1413
|
:param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancerArgs']]] internal_load_balancers: The list of internal load balancers to health check.
|
1414
|
-
Structure is
|
1414
|
+
Structure is document below.
|
1415
1415
|
"""
|
1416
1416
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
1417
1417
|
|
@@ -1420,7 +1420,7 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargetsArgs:
|
|
1420
1420
|
def internal_load_balancers(self) -> pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancerArgs']]]:
|
1421
1421
|
"""
|
1422
1422
|
The list of internal load balancers to health check.
|
1423
|
-
Structure is
|
1423
|
+
Structure is document below.
|
1424
1424
|
"""
|
1425
1425
|
return pulumi.get(self, "internal_load_balancers")
|
1426
1426
|
|
pulumi_gcp/dns/outputs.py
CHANGED
@@ -840,11 +840,11 @@ class RecordSetRoutingPolicy(dict):
|
|
840
840
|
"""
|
841
841
|
:param bool enable_geo_fencing: Specifies whether to enable fencing for geo queries.
|
842
842
|
:param Sequence['RecordSetRoutingPolicyGeoArgs'] geos: The configuration for Geolocation based routing policy.
|
843
|
-
Structure is
|
843
|
+
Structure is document below.
|
844
844
|
:param 'RecordSetRoutingPolicyPrimaryBackupArgs' primary_backup: The configuration for a primary-backup policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy.
|
845
|
-
Structure is
|
845
|
+
Structure is document below.
|
846
846
|
:param Sequence['RecordSetRoutingPolicyWrrArgs'] wrrs: The configuration for Weighted Round Robin based routing policy.
|
847
|
-
Structure is
|
847
|
+
Structure is document below.
|
848
848
|
"""
|
849
849
|
if enable_geo_fencing is not None:
|
850
850
|
pulumi.set(__self__, "enable_geo_fencing", enable_geo_fencing)
|
@@ -868,7 +868,7 @@ class RecordSetRoutingPolicy(dict):
|
|
868
868
|
def geos(self) -> Optional[Sequence['outputs.RecordSetRoutingPolicyGeo']]:
|
869
869
|
"""
|
870
870
|
The configuration for Geolocation based routing policy.
|
871
|
-
Structure is
|
871
|
+
Structure is document below.
|
872
872
|
"""
|
873
873
|
return pulumi.get(self, "geos")
|
874
874
|
|
@@ -877,7 +877,7 @@ class RecordSetRoutingPolicy(dict):
|
|
877
877
|
def primary_backup(self) -> Optional['outputs.RecordSetRoutingPolicyPrimaryBackup']:
|
878
878
|
"""
|
879
879
|
The configuration for a primary-backup policy with global to regional failover. Queries are responded to with the global primary targets, but if none of the primary targets are healthy, then we fallback to a regional failover policy.
|
880
|
-
Structure is
|
880
|
+
Structure is document below.
|
881
881
|
"""
|
882
882
|
return pulumi.get(self, "primary_backup")
|
883
883
|
|
@@ -886,7 +886,7 @@ class RecordSetRoutingPolicy(dict):
|
|
886
886
|
def wrrs(self) -> Optional[Sequence['outputs.RecordSetRoutingPolicyWrr']]:
|
887
887
|
"""
|
888
888
|
The configuration for Weighted Round Robin based routing policy.
|
889
|
-
Structure is
|
889
|
+
Structure is document below.
|
890
890
|
"""
|
891
891
|
return pulumi.get(self, "wrrs")
|
892
892
|
|
@@ -917,7 +917,7 @@ class RecordSetRoutingPolicyGeo(dict):
|
|
917
917
|
"""
|
918
918
|
:param str location: The location name defined in Google Cloud.
|
919
919
|
:param 'RecordSetRoutingPolicyGeoHealthCheckedTargetsArgs' health_checked_targets: For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
920
|
-
Structure is
|
920
|
+
Structure is document below.
|
921
921
|
:param Sequence[str] rrdatas: Same as `rrdatas` above.
|
922
922
|
"""
|
923
923
|
pulumi.set(__self__, "location", location)
|
@@ -939,7 +939,7 @@ class RecordSetRoutingPolicyGeo(dict):
|
|
939
939
|
def health_checked_targets(self) -> Optional['outputs.RecordSetRoutingPolicyGeoHealthCheckedTargets']:
|
940
940
|
"""
|
941
941
|
For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
942
|
-
Structure is
|
942
|
+
Structure is document below.
|
943
943
|
"""
|
944
944
|
return pulumi.get(self, "health_checked_targets")
|
945
945
|
|
@@ -975,7 +975,7 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargets(dict):
|
|
975
975
|
internal_load_balancers: Sequence['outputs.RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancer']):
|
976
976
|
"""
|
977
977
|
:param Sequence['RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancerArgs'] internal_load_balancers: The list of internal load balancers to health check.
|
978
|
-
Structure is
|
978
|
+
Structure is document below.
|
979
979
|
"""
|
980
980
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
981
981
|
|
@@ -984,7 +984,7 @@ class RecordSetRoutingPolicyGeoHealthCheckedTargets(dict):
|
|
984
984
|
def internal_load_balancers(self) -> Sequence['outputs.RecordSetRoutingPolicyGeoHealthCheckedTargetsInternalLoadBalancer']:
|
985
985
|
"""
|
986
986
|
The list of internal load balancers to health check.
|
987
|
-
Structure is
|
987
|
+
Structure is document below.
|
988
988
|
"""
|
989
989
|
return pulumi.get(self, "internal_load_balancers")
|
990
990
|
|
@@ -1129,7 +1129,7 @@ class RecordSetRoutingPolicyPrimaryBackup(dict):
|
|
1129
1129
|
:param Sequence['RecordSetRoutingPolicyPrimaryBackupBackupGeoArgs'] backup_geos: The backup geo targets, which provide a regional failover policy for the otherwise global primary targets.
|
1130
1130
|
Structure is document above.
|
1131
1131
|
:param 'RecordSetRoutingPolicyPrimaryBackupPrimaryArgs' primary: The list of global primary targets to be health checked.
|
1132
|
-
Structure is
|
1132
|
+
Structure is document below.
|
1133
1133
|
:param bool enable_geo_fencing_for_backups: Specifies whether to enable fencing for backup geo queries.
|
1134
1134
|
:param float trickle_ratio: Specifies the percentage of traffic to send to the backup targets even when the primary targets are healthy.
|
1135
1135
|
"""
|
@@ -1154,7 +1154,7 @@ class RecordSetRoutingPolicyPrimaryBackup(dict):
|
|
1154
1154
|
def primary(self) -> 'outputs.RecordSetRoutingPolicyPrimaryBackupPrimary':
|
1155
1155
|
"""
|
1156
1156
|
The list of global primary targets to be health checked.
|
1157
|
-
Structure is
|
1157
|
+
Structure is document below.
|
1158
1158
|
"""
|
1159
1159
|
return pulumi.get(self, "primary")
|
1160
1160
|
|
@@ -1201,7 +1201,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeo(dict):
|
|
1201
1201
|
"""
|
1202
1202
|
:param str location: The location name defined in Google Cloud.
|
1203
1203
|
:param 'RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsArgs' health_checked_targets: For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
1204
|
-
Structure is
|
1204
|
+
Structure is document below.
|
1205
1205
|
"""
|
1206
1206
|
pulumi.set(__self__, "location", location)
|
1207
1207
|
if health_checked_targets is not None:
|
@@ -1222,7 +1222,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeo(dict):
|
|
1222
1222
|
def health_checked_targets(self) -> Optional['outputs.RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargets']:
|
1223
1223
|
"""
|
1224
1224
|
For A and AAAA types only. The list of targets to be health checked. These can be specified along with `rrdatas` within this item.
|
1225
|
-
Structure is
|
1225
|
+
Structure is document below.
|
1226
1226
|
"""
|
1227
1227
|
return pulumi.get(self, "health_checked_targets")
|
1228
1228
|
|
@@ -1255,7 +1255,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargets(dict):
|
|
1255
1255
|
internal_load_balancers: Sequence['outputs.RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLoadBalancer']):
|
1256
1256
|
"""
|
1257
1257
|
:param Sequence['RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLoadBalancerArgs'] internal_load_balancers: The list of internal load balancers to health check.
|
1258
|
-
Structure is
|
1258
|
+
Structure is document below.
|
1259
1259
|
"""
|
1260
1260
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
1261
1261
|
|
@@ -1264,7 +1264,7 @@ class RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargets(dict):
|
|
1264
1264
|
def internal_load_balancers(self) -> Sequence['outputs.RecordSetRoutingPolicyPrimaryBackupBackupGeoHealthCheckedTargetsInternalLoadBalancer']:
|
1265
1265
|
"""
|
1266
1266
|
The list of internal load balancers to health check.
|
1267
|
-
Structure is
|
1267
|
+
Structure is document below.
|
1268
1268
|
"""
|
1269
1269
|
return pulumi.get(self, "internal_load_balancers")
|
1270
1270
|
|
@@ -1400,7 +1400,7 @@ class RecordSetRoutingPolicyPrimaryBackupPrimary(dict):
|
|
1400
1400
|
internal_load_balancers: Sequence['outputs.RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancer']):
|
1401
1401
|
"""
|
1402
1402
|
:param Sequence['RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancerArgs'] internal_load_balancers: The list of internal load balancers to health check.
|
1403
|
-
Structure is
|
1403
|
+
Structure is document below.
|
1404
1404
|
"""
|
1405
1405
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
1406
1406
|
|
@@ -1409,7 +1409,7 @@ class RecordSetRoutingPolicyPrimaryBackupPrimary(dict):
|
|
1409
1409
|
def internal_load_balancers(self) -> Sequence['outputs.RecordSetRoutingPolicyPrimaryBackupPrimaryInternalLoadBalancer']:
|
1410
1410
|
"""
|
1411
1411
|
The list of internal load balancers to health check.
|
1412
|
-
Structure is
|
1412
|
+
Structure is document below.
|
1413
1413
|
"""
|
1414
1414
|
return pulumi.get(self, "internal_load_balancers")
|
1415
1415
|
|
@@ -1548,7 +1548,7 @@ class RecordSetRoutingPolicyWrr(dict):
|
|
1548
1548
|
"""
|
1549
1549
|
:param float weight: The ratio of traffic routed to the target.
|
1550
1550
|
:param 'RecordSetRoutingPolicyWrrHealthCheckedTargetsArgs' health_checked_targets: The list of targets to be health checked. Note that if DNSSEC is enabled for this zone, only one of `rrdatas` or `health_checked_targets` can be set.
|
1551
|
-
Structure is
|
1551
|
+
Structure is document below.
|
1552
1552
|
:param Sequence[str] rrdatas: Same as `rrdatas` above.
|
1553
1553
|
"""
|
1554
1554
|
pulumi.set(__self__, "weight", weight)
|
@@ -1570,7 +1570,7 @@ class RecordSetRoutingPolicyWrr(dict):
|
|
1570
1570
|
def health_checked_targets(self) -> Optional['outputs.RecordSetRoutingPolicyWrrHealthCheckedTargets']:
|
1571
1571
|
"""
|
1572
1572
|
The list of targets to be health checked. Note that if DNSSEC is enabled for this zone, only one of `rrdatas` or `health_checked_targets` can be set.
|
1573
|
-
Structure is
|
1573
|
+
Structure is document below.
|
1574
1574
|
"""
|
1575
1575
|
return pulumi.get(self, "health_checked_targets")
|
1576
1576
|
|
@@ -1606,7 +1606,7 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargets(dict):
|
|
1606
1606
|
internal_load_balancers: Sequence['outputs.RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancer']):
|
1607
1607
|
"""
|
1608
1608
|
:param Sequence['RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancerArgs'] internal_load_balancers: The list of internal load balancers to health check.
|
1609
|
-
Structure is
|
1609
|
+
Structure is document below.
|
1610
1610
|
"""
|
1611
1611
|
pulumi.set(__self__, "internal_load_balancers", internal_load_balancers)
|
1612
1612
|
|
@@ -1615,7 +1615,7 @@ class RecordSetRoutingPolicyWrrHealthCheckedTargets(dict):
|
|
1615
1615
|
def internal_load_balancers(self) -> Sequence['outputs.RecordSetRoutingPolicyWrrHealthCheckedTargetsInternalLoadBalancer']:
|
1616
1616
|
"""
|
1617
1617
|
The list of internal load balancers to health check.
|
1618
|
-
Structure is
|
1618
|
+
Structure is document below.
|
1619
1619
|
"""
|
1620
1620
|
return pulumi.get(self, "internal_load_balancers")
|
1621
1621
|
|