pulumi-gcp 7.19.0a1713292926__py3-none-any.whl → 7.19.0a1713444144__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.
Files changed (41) hide show
  1. pulumi_gcp/__init__.py +11 -0
  2. pulumi_gcp/accesscontextmanager/access_policy.py +4 -4
  3. pulumi_gcp/apigee/sync_authorization.py +4 -4
  4. pulumi_gcp/compute/_inputs.py +24 -0
  5. pulumi_gcp/compute/get_router_nat.py +11 -1
  6. pulumi_gcp/compute/instance_settings.py +16 -0
  7. pulumi_gcp/compute/outputs.py +41 -0
  8. pulumi_gcp/compute/router_interface.py +47 -0
  9. pulumi_gcp/compute/router_nat.py +68 -0
  10. pulumi_gcp/compute/router_peer.py +141 -0
  11. pulumi_gcp/config/__init__.pyi +2 -0
  12. pulumi_gcp/config/vars.py +4 -0
  13. pulumi_gcp/container/_inputs.py +48 -7
  14. pulumi_gcp/container/outputs.py +67 -8
  15. pulumi_gcp/datastore/data_store_index.py +14 -0
  16. pulumi_gcp/dns/_inputs.py +22 -22
  17. pulumi_gcp/dns/outputs.py +22 -22
  18. pulumi_gcp/firestore/_inputs.py +80 -11
  19. pulumi_gcp/firestore/document.py +0 -4
  20. pulumi_gcp/firestore/index.py +116 -42
  21. pulumi_gcp/firestore/outputs.py +70 -11
  22. pulumi_gcp/gkebackup/_inputs.py +358 -3
  23. pulumi_gcp/gkebackup/backup_plan.py +294 -0
  24. pulumi_gcp/gkebackup/outputs.py +353 -3
  25. pulumi_gcp/networksecurity/firewall_endpoint.py +2 -0
  26. pulumi_gcp/networksecurity/firewall_endpoint_association.py +61 -0
  27. pulumi_gcp/parallelstore/__init__.py +8 -0
  28. pulumi_gcp/parallelstore/instance.py +1128 -0
  29. pulumi_gcp/provider.py +20 -0
  30. pulumi_gcp/sql/_inputs.py +16 -0
  31. pulumi_gcp/sql/outputs.py +36 -0
  32. pulumi_gcp/tags/__init__.py +2 -0
  33. pulumi_gcp/tags/get_tag_keys.py +101 -0
  34. pulumi_gcp/tags/get_tag_values.py +101 -0
  35. pulumi_gcp/tags/outputs.py +200 -0
  36. pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
  37. pulumi_gcp/vmwareengine/private_cloud.py +101 -7
  38. {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/METADATA +1 -1
  39. {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/RECORD +41 -37
  40. {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/WHEEL +0 -0
  41. {pulumi_gcp-7.19.0a1713292926.dist-info → pulumi_gcp-7.19.0a1713444144.dist-info}/top_level.txt +0 -0
@@ -91,6 +91,7 @@ __all__ = [
91
91
  'ClusterAddonsConfigIstioConfig',
92
92
  'ClusterAddonsConfigKalmConfig',
93
93
  'ClusterAddonsConfigNetworkPolicyConfig',
94
+ 'ClusterAddonsConfigStatefulHaConfig',
94
95
  'ClusterAuthenticatorGroupsConfig',
95
96
  'ClusterBinaryAuthorization',
96
97
  'ClusterClusterAutoscaling',
@@ -259,6 +260,7 @@ __all__ = [
259
260
  'GetClusterAddonsConfigIstioConfigResult',
260
261
  'GetClusterAddonsConfigKalmConfigResult',
261
262
  'GetClusterAddonsConfigNetworkPolicyConfigResult',
263
+ 'GetClusterAddonsConfigStatefulHaConfigResult',
262
264
  'GetClusterAuthenticatorGroupsConfigResult',
263
265
  'GetClusterBinaryAuthorizationResult',
264
266
  'GetClusterClusterAutoscalingResult',
@@ -3720,6 +3722,8 @@ class ClusterAddonsConfig(dict):
3720
3722
  suggest = "kalm_config"
3721
3723
  elif key == "networkPolicyConfig":
3722
3724
  suggest = "network_policy_config"
3725
+ elif key == "statefulHaConfig":
3726
+ suggest = "stateful_ha_config"
3723
3727
 
3724
3728
  if suggest:
3725
3729
  pulumi.log.warn(f"Key '{key}' not found in ClusterAddonsConfig. Access the value via the '{suggest}' property getter instead.")
@@ -3744,14 +3748,12 @@ class ClusterAddonsConfig(dict):
3744
3748
  http_load_balancing: Optional['outputs.ClusterAddonsConfigHttpLoadBalancing'] = None,
3745
3749
  istio_config: Optional['outputs.ClusterAddonsConfigIstioConfig'] = None,
3746
3750
  kalm_config: Optional['outputs.ClusterAddonsConfigKalmConfig'] = None,
3747
- network_policy_config: Optional['outputs.ClusterAddonsConfigNetworkPolicyConfig'] = None):
3751
+ network_policy_config: Optional['outputs.ClusterAddonsConfigNetworkPolicyConfig'] = None,
3752
+ stateful_ha_config: Optional['outputs.ClusterAddonsConfigStatefulHaConfig'] = None):
3748
3753
  """
3749
3754
  :param 'ClusterAddonsConfigCloudrunConfigArgs' cloudrun_config: . Structure is documented below.
3750
3755
  :param 'ClusterAddonsConfigConfigConnectorConfigArgs' config_connector_config: .
3751
3756
  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:
3755
3757
  :param 'ClusterAddonsConfigDnsCacheConfigArgs' dns_cache_config: .
3756
3758
  The status of the NodeLocal DNSCache addon. It is disabled by default.
3757
3759
  Set `enabled = true` to enable.
@@ -3790,6 +3792,11 @@ class ClusterAddonsConfig(dict):
3790
3792
  otherwise nothing will happen.
3791
3793
  It can only be disabled if the nodes already do not have network policies enabled.
3792
3794
  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:
3793
3800
  """
3794
3801
  if cloudrun_config is not None:
3795
3802
  pulumi.set(__self__, "cloudrun_config", cloudrun_config)
@@ -3815,6 +3822,8 @@ class ClusterAddonsConfig(dict):
3815
3822
  pulumi.set(__self__, "kalm_config", kalm_config)
3816
3823
  if network_policy_config is not None:
3817
3824
  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)
3818
3827
 
3819
3828
  @property
3820
3829
  @pulumi.getter(name="cloudrunConfig")
@@ -3830,9 +3839,6 @@ class ClusterAddonsConfig(dict):
3830
3839
  """
3831
3840
  .
3832
3841
  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:
3836
3842
  """
3837
3843
  return pulumi.get(self, "config_connector_config")
3838
3844
 
@@ -3944,6 +3950,18 @@ class ClusterAddonsConfig(dict):
3944
3950
  """
3945
3951
  return pulumi.get(self, "network_policy_config")
3946
3952
 
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
+
3947
3965
 
3948
3966
  @pulumi.output_type
3949
3967
  class ClusterAddonsConfigCloudrunConfig(dict):
@@ -4218,6 +4236,24 @@ class ClusterAddonsConfigNetworkPolicyConfig(dict):
4218
4236
  return pulumi.get(self, "disabled")
4219
4237
 
4220
4238
 
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
+
4221
4257
  @pulumi.output_type
4222
4258
  class ClusterAuthenticatorGroupsConfig(dict):
4223
4259
  @staticmethod
@@ -13657,7 +13693,8 @@ class GetClusterAddonsConfigResult(dict):
13657
13693
  http_load_balancings: Sequence['outputs.GetClusterAddonsConfigHttpLoadBalancingResult'],
13658
13694
  istio_configs: Sequence['outputs.GetClusterAddonsConfigIstioConfigResult'],
13659
13695
  kalm_configs: Sequence['outputs.GetClusterAddonsConfigKalmConfigResult'],
13660
- network_policy_configs: Sequence['outputs.GetClusterAddonsConfigNetworkPolicyConfigResult']):
13696
+ network_policy_configs: Sequence['outputs.GetClusterAddonsConfigNetworkPolicyConfigResult'],
13697
+ stateful_ha_configs: Sequence['outputs.GetClusterAddonsConfigStatefulHaConfigResult']):
13661
13698
  """
13662
13699
  :param Sequence['GetClusterAddonsConfigCloudrunConfigArgs'] cloudrun_configs: The status of the CloudRun addon. It is disabled by default. Set disabled = false to enable.
13663
13700
  :param Sequence['GetClusterAddonsConfigConfigConnectorConfigArgs'] config_connector_configs: The of the Config Connector addon.
@@ -13671,6 +13708,7 @@ class GetClusterAddonsConfigResult(dict):
13671
13708
  :param Sequence['GetClusterAddonsConfigIstioConfigArgs'] istio_configs: The status of the Istio addon.
13672
13709
  :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.
13673
13710
  :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.
13674
13712
  """
13675
13713
  pulumi.set(__self__, "cloudrun_configs", cloudrun_configs)
13676
13714
  pulumi.set(__self__, "config_connector_configs", config_connector_configs)
@@ -13684,6 +13722,7 @@ class GetClusterAddonsConfigResult(dict):
13684
13722
  pulumi.set(__self__, "istio_configs", istio_configs)
13685
13723
  pulumi.set(__self__, "kalm_configs", kalm_configs)
13686
13724
  pulumi.set(__self__, "network_policy_configs", network_policy_configs)
13725
+ pulumi.set(__self__, "stateful_ha_configs", stateful_ha_configs)
13687
13726
 
13688
13727
  @property
13689
13728
  @pulumi.getter(name="cloudrunConfigs")
@@ -13781,6 +13820,14 @@ class GetClusterAddonsConfigResult(dict):
13781
13820
  """
13782
13821
  return pulumi.get(self, "network_policy_configs")
13783
13822
 
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
+
13784
13831
 
13785
13832
  @pulumi.output_type
13786
13833
  class GetClusterAddonsConfigCloudrunConfigResult(dict):
@@ -13950,6 +13997,18 @@ class GetClusterAddonsConfigNetworkPolicyConfigResult(dict):
13950
13997
  return pulumi.get(self, "disabled")
13951
13998
 
13952
13999
 
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
+
13953
14012
  @pulumi.output_type
13954
14013
  class GetClusterAuthenticatorGroupsConfigResult(dict):
13955
14014
  def __init__(__self__, *,
@@ -234,6 +234,13 @@ 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")
237
244
  default = gcp.datastore.DataStoreIndex("default",
238
245
  kind="foo",
239
246
  properties=[
@@ -317,6 +324,13 @@ class DataStoreIndex(pulumi.CustomResource):
317
324
  import pulumi
318
325
  import pulumi_gcp as gcp
319
326
 
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")
320
334
  default = gcp.datastore.DataStoreIndex("default",
321
335
  kind="foo",
322
336
  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 document below.
693
+ Structure is documented 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 document below.
695
+ Structure is documented below.
696
696
  :param pulumi.Input[Sequence[pulumi.Input['RecordSetRoutingPolicyWrrArgs']]] wrrs: The configuration for Weighted Round Robin based routing policy.
697
- Structure is document below.
697
+ Structure is documented 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 document below.
725
+ Structure is documented 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 document below.
738
+ Structure is documented 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 document below.
751
+ Structure is documented 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 document below.
769
+ Structure is documented 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 document below.
795
+ Structure is documented 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 document below.
822
+ Structure is documented 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 document below.
831
+ Structure is documented 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 document below.
964
+ Structure is documented 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 document below.
993
+ Structure is documented 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 document below.
1035
+ Structure is documented 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 document below.
1060
+ Structure is documented 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 document below.
1084
+ Structure is documented 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 document below.
1093
+ Structure is documented 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 document below.
1221
+ Structure is documented 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 document below.
1230
+ Structure is documented 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 document below.
1361
+ Structure is documented 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 document below.
1387
+ Structure is documented 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 document below.
1414
+ Structure is documented 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 document below.
1423
+ Structure is documented 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 document below.
843
+ Structure is documented 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 document below.
845
+ Structure is documented below.
846
846
  :param Sequence['RecordSetRoutingPolicyWrrArgs'] wrrs: The configuration for Weighted Round Robin based routing policy.
847
- Structure is document below.
847
+ Structure is documented 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 document below.
871
+ Structure is documented 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 document below.
880
+ Structure is documented 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 document below.
889
+ Structure is documented 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 document below.
920
+ Structure is documented 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 document below.
942
+ Structure is documented 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 document below.
978
+ Structure is documented 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 document below.
987
+ Structure is documented 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 document below.
1132
+ Structure is documented 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 document below.
1157
+ Structure is documented 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 document below.
1204
+ Structure is documented 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 document below.
1225
+ Structure is documented 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 document below.
1258
+ Structure is documented 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 document below.
1267
+ Structure is documented 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 document below.
1403
+ Structure is documented 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 document below.
1412
+ Structure is documented 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 document below.
1551
+ Structure is documented 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 document below.
1573
+ Structure is documented 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 document below.
1609
+ Structure is documented 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 document below.
1618
+ Structure is documented below.
1619
1619
  """
1620
1620
  return pulumi.get(self, "internal_load_balancers")
1621
1621