pulumi-gcp 8.41.0a1755297349__py3-none-any.whl → 8.41.0a1755638986__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. pulumi_gcp/__init__.py +16 -0
  2. pulumi_gcp/artifactregistry/__init__.py +3 -0
  3. pulumi_gcp/artifactregistry/get_package.py +220 -0
  4. pulumi_gcp/artifactregistry/get_repositories.py +160 -0
  5. pulumi_gcp/artifactregistry/get_version.py +261 -0
  6. pulumi_gcp/artifactregistry/outputs.py +100 -0
  7. pulumi_gcp/backupdisasterrecovery/backup_plan.py +114 -7
  8. pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +12 -1
  9. pulumi_gcp/bigquery/dataset.py +2 -2
  10. pulumi_gcp/composer/user_workloads_config_map.py +26 -2
  11. pulumi_gcp/compute/_inputs.py +355 -0
  12. pulumi_gcp/compute/get_region_backend_service.py +12 -1
  13. pulumi_gcp/compute/outputs.py +404 -0
  14. pulumi_gcp/compute/region_backend_service.py +257 -0
  15. pulumi_gcp/compute/region_security_policy.py +54 -0
  16. pulumi_gcp/compute/service_attachment.py +126 -0
  17. pulumi_gcp/container/_inputs.py +435 -15
  18. pulumi_gcp/container/outputs.py +494 -13
  19. pulumi_gcp/diagflow/__init__.py +1 -0
  20. pulumi_gcp/diagflow/_inputs.py +168 -0
  21. pulumi_gcp/diagflow/cx_playbook.py +967 -0
  22. pulumi_gcp/diagflow/outputs.py +117 -0
  23. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +24 -3
  24. pulumi_gcp/memorystore/get_instance.py +12 -1
  25. pulumi_gcp/memorystore/instance.py +70 -0
  26. pulumi_gcp/pubsub/subscription.py +84 -0
  27. pulumi_gcp/pubsub/topic.py +80 -0
  28. pulumi_gcp/pulumi-plugin.json +1 -1
  29. pulumi_gcp/sql/_inputs.py +82 -4
  30. pulumi_gcp/sql/database_instance.py +108 -7
  31. pulumi_gcp/sql/get_database_instance.py +12 -1
  32. pulumi_gcp/sql/outputs.py +154 -7
  33. pulumi_gcp/storage/_inputs.py +104 -12
  34. pulumi_gcp/storage/outputs.py +84 -7
  35. pulumi_gcp/vertex/__init__.py +1 -0
  36. pulumi_gcp/vertex/_inputs.py +122 -0
  37. pulumi_gcp/vertex/ai_rag_engine_config.py +354 -0
  38. pulumi_gcp/vertex/outputs.py +69 -0
  39. {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/METADATA +1 -1
  40. {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/RECORD +42 -37
  41. {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/WHEEL +0 -0
  42. {pulumi_gcp-8.41.0a1755297349.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/top_level.txt +0 -0
@@ -378,6 +378,9 @@ __all__ = [
378
378
  'RegionBackendServiceDynamicForwarding',
379
379
  'RegionBackendServiceDynamicForwardingIpPortSelection',
380
380
  'RegionBackendServiceFailoverPolicy',
381
+ 'RegionBackendServiceHaPolicy',
382
+ 'RegionBackendServiceHaPolicyLeader',
383
+ 'RegionBackendServiceHaPolicyLeaderNetworkEndpoint',
381
384
  'RegionBackendServiceIamBindingCondition',
382
385
  'RegionBackendServiceIamMemberCondition',
383
386
  'RegionBackendServiceIap',
@@ -490,6 +493,8 @@ __all__ = [
490
493
  'RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailHelpLink',
491
494
  'RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailLocalizedMessage',
492
495
  'RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfo',
496
+ 'RegionSecurityPolicyAdvancedOptionsConfig',
497
+ 'RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfig',
493
498
  'RegionSecurityPolicyDdosProtectionConfig',
494
499
  'RegionSecurityPolicyRule',
495
500
  'RegionSecurityPolicyRuleMatch',
@@ -966,6 +971,9 @@ __all__ = [
966
971
  'GetRegionBackendServiceDynamicForwardingResult',
967
972
  'GetRegionBackendServiceDynamicForwardingIpPortSelectionResult',
968
973
  'GetRegionBackendServiceFailoverPolicyResult',
974
+ 'GetRegionBackendServiceHaPolicyResult',
975
+ 'GetRegionBackendServiceHaPolicyLeaderResult',
976
+ 'GetRegionBackendServiceHaPolicyLeaderNetworkEndpointResult',
969
977
  'GetRegionBackendServiceIapResult',
970
978
  'GetRegionBackendServiceLogConfigResult',
971
979
  'GetRegionBackendServiceOutlierDetectionResult',
@@ -28443,6 +28451,157 @@ class RegionBackendServiceFailoverPolicy(dict):
28443
28451
  return pulumi.get(self, "failover_ratio")
28444
28452
 
28445
28453
 
28454
+ @pulumi.output_type
28455
+ class RegionBackendServiceHaPolicy(dict):
28456
+ @staticmethod
28457
+ def __key_warning(key: str):
28458
+ suggest = None
28459
+ if key == "fastIpMove":
28460
+ suggest = "fast_ip_move"
28461
+
28462
+ if suggest:
28463
+ pulumi.log.warn(f"Key '{key}' not found in RegionBackendServiceHaPolicy. Access the value via the '{suggest}' property getter instead.")
28464
+
28465
+ def __getitem__(self, key: str) -> Any:
28466
+ RegionBackendServiceHaPolicy.__key_warning(key)
28467
+ return super().__getitem__(key)
28468
+
28469
+ def get(self, key: str, default = None) -> Any:
28470
+ RegionBackendServiceHaPolicy.__key_warning(key)
28471
+ return super().get(key, default)
28472
+
28473
+ def __init__(__self__, *,
28474
+ fast_ip_move: Optional[_builtins.str] = None,
28475
+ leader: Optional['outputs.RegionBackendServiceHaPolicyLeader'] = None):
28476
+ """
28477
+ :param _builtins.str fast_ip_move: Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it.
28478
+ Supported values are:
28479
+ * `DISABLED`: Fast IP Move is disabled. You can only use the haPolicy.leader API to
28480
+ update the leader.
28481
+ * `GARP_RA`: Provides a method to very quickly define a new network endpoint as the
28482
+ leader. This method is faster than updating the leader using the
28483
+ haPolicy.leader API. Fast IP move works as follows: The VM hosting the
28484
+ network endpoint that should become the new leader sends either a
28485
+ Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA)
28486
+ packet (IPv6). Google Cloud immediately but temporarily associates the
28487
+ forwarding rule IP address with that VM, and both new and in-flight packets
28488
+ are quickly delivered to that VM.
28489
+ Possible values are: `DISABLED`, `GARP_RA`.
28490
+ :param 'RegionBackendServiceHaPolicyLeaderArgs' leader: Selects one of the network endpoints attached to the backend NEGs of this service as the
28491
+ active endpoint (the leader) that receives all traffic.
28492
+ Structure is documented below.
28493
+ """
28494
+ if fast_ip_move is not None:
28495
+ pulumi.set(__self__, "fast_ip_move", fast_ip_move)
28496
+ if leader is not None:
28497
+ pulumi.set(__self__, "leader", leader)
28498
+
28499
+ @_builtins.property
28500
+ @pulumi.getter(name="fastIpMove")
28501
+ def fast_ip_move(self) -> Optional[_builtins.str]:
28502
+ """
28503
+ Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it.
28504
+ Supported values are:
28505
+ * `DISABLED`: Fast IP Move is disabled. You can only use the haPolicy.leader API to
28506
+ update the leader.
28507
+ * `GARP_RA`: Provides a method to very quickly define a new network endpoint as the
28508
+ leader. This method is faster than updating the leader using the
28509
+ haPolicy.leader API. Fast IP move works as follows: The VM hosting the
28510
+ network endpoint that should become the new leader sends either a
28511
+ Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA)
28512
+ packet (IPv6). Google Cloud immediately but temporarily associates the
28513
+ forwarding rule IP address with that VM, and both new and in-flight packets
28514
+ are quickly delivered to that VM.
28515
+ Possible values are: `DISABLED`, `GARP_RA`.
28516
+ """
28517
+ return pulumi.get(self, "fast_ip_move")
28518
+
28519
+ @_builtins.property
28520
+ @pulumi.getter
28521
+ def leader(self) -> Optional['outputs.RegionBackendServiceHaPolicyLeader']:
28522
+ """
28523
+ Selects one of the network endpoints attached to the backend NEGs of this service as the
28524
+ active endpoint (the leader) that receives all traffic.
28525
+ Structure is documented below.
28526
+ """
28527
+ return pulumi.get(self, "leader")
28528
+
28529
+
28530
+ @pulumi.output_type
28531
+ class RegionBackendServiceHaPolicyLeader(dict):
28532
+ @staticmethod
28533
+ def __key_warning(key: str):
28534
+ suggest = None
28535
+ if key == "backendGroup":
28536
+ suggest = "backend_group"
28537
+ elif key == "networkEndpoint":
28538
+ suggest = "network_endpoint"
28539
+
28540
+ if suggest:
28541
+ pulumi.log.warn(f"Key '{key}' not found in RegionBackendServiceHaPolicyLeader. Access the value via the '{suggest}' property getter instead.")
28542
+
28543
+ def __getitem__(self, key: str) -> Any:
28544
+ RegionBackendServiceHaPolicyLeader.__key_warning(key)
28545
+ return super().__getitem__(key)
28546
+
28547
+ def get(self, key: str, default = None) -> Any:
28548
+ RegionBackendServiceHaPolicyLeader.__key_warning(key)
28549
+ return super().get(key, default)
28550
+
28551
+ def __init__(__self__, *,
28552
+ backend_group: Optional[_builtins.str] = None,
28553
+ network_endpoint: Optional['outputs.RegionBackendServiceHaPolicyLeaderNetworkEndpoint'] = None):
28554
+ """
28555
+ :param _builtins.str backend_group: A fully-qualified URL of the zonal Network Endpoint Group (NEG) that the leader is
28556
+ attached to.
28557
+ :param 'RegionBackendServiceHaPolicyLeaderNetworkEndpointArgs' network_endpoint: The network endpoint within the leader.backendGroup that is designated as the leader.
28558
+ Structure is documented below.
28559
+ """
28560
+ if backend_group is not None:
28561
+ pulumi.set(__self__, "backend_group", backend_group)
28562
+ if network_endpoint is not None:
28563
+ pulumi.set(__self__, "network_endpoint", network_endpoint)
28564
+
28565
+ @_builtins.property
28566
+ @pulumi.getter(name="backendGroup")
28567
+ def backend_group(self) -> Optional[_builtins.str]:
28568
+ """
28569
+ A fully-qualified URL of the zonal Network Endpoint Group (NEG) that the leader is
28570
+ attached to.
28571
+ """
28572
+ return pulumi.get(self, "backend_group")
28573
+
28574
+ @_builtins.property
28575
+ @pulumi.getter(name="networkEndpoint")
28576
+ def network_endpoint(self) -> Optional['outputs.RegionBackendServiceHaPolicyLeaderNetworkEndpoint']:
28577
+ """
28578
+ The network endpoint within the leader.backendGroup that is designated as the leader.
28579
+ Structure is documented below.
28580
+ """
28581
+ return pulumi.get(self, "network_endpoint")
28582
+
28583
+
28584
+ @pulumi.output_type
28585
+ class RegionBackendServiceHaPolicyLeaderNetworkEndpoint(dict):
28586
+ def __init__(__self__, *,
28587
+ instance: Optional[_builtins.str] = None):
28588
+ """
28589
+ :param _builtins.str instance: The name of the VM instance of the leader network endpoint. The instance must
28590
+ already be attached to the NEG specified in the haPolicy.leader.backendGroup.
28591
+ """
28592
+ if instance is not None:
28593
+ pulumi.set(__self__, "instance", instance)
28594
+
28595
+ @_builtins.property
28596
+ @pulumi.getter
28597
+ def instance(self) -> Optional[_builtins.str]:
28598
+ """
28599
+ The name of the VM instance of the leader network endpoint. The instance must
28600
+ already be attached to the NEG specified in the haPolicy.leader.backendGroup.
28601
+ """
28602
+ return pulumi.get(self, "instance")
28603
+
28604
+
28446
28605
  @pulumi.output_type
28447
28606
  class RegionBackendServiceIamBindingCondition(dict):
28448
28607
  def __init__(__self__, *,
@@ -36879,6 +37038,143 @@ class RegionResizeRequestStatusLastAttemptErrorErrorErrorDetailQuotaInfo(dict):
36879
37038
  return pulumi.get(self, "rollout_status")
36880
37039
 
36881
37040
 
37041
+ @pulumi.output_type
37042
+ class RegionSecurityPolicyAdvancedOptionsConfig(dict):
37043
+ @staticmethod
37044
+ def __key_warning(key: str):
37045
+ suggest = None
37046
+ if key == "jsonCustomConfig":
37047
+ suggest = "json_custom_config"
37048
+ elif key == "jsonParsing":
37049
+ suggest = "json_parsing"
37050
+ elif key == "logLevel":
37051
+ suggest = "log_level"
37052
+ elif key == "requestBodyInspectionSize":
37053
+ suggest = "request_body_inspection_size"
37054
+ elif key == "userIpRequestHeaders":
37055
+ suggest = "user_ip_request_headers"
37056
+
37057
+ if suggest:
37058
+ pulumi.log.warn(f"Key '{key}' not found in RegionSecurityPolicyAdvancedOptionsConfig. Access the value via the '{suggest}' property getter instead.")
37059
+
37060
+ def __getitem__(self, key: str) -> Any:
37061
+ RegionSecurityPolicyAdvancedOptionsConfig.__key_warning(key)
37062
+ return super().__getitem__(key)
37063
+
37064
+ def get(self, key: str, default = None) -> Any:
37065
+ RegionSecurityPolicyAdvancedOptionsConfig.__key_warning(key)
37066
+ return super().get(key, default)
37067
+
37068
+ def __init__(__self__, *,
37069
+ json_custom_config: Optional['outputs.RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfig'] = None,
37070
+ json_parsing: Optional[_builtins.str] = None,
37071
+ log_level: Optional[_builtins.str] = None,
37072
+ request_body_inspection_size: Optional[_builtins.str] = None,
37073
+ user_ip_request_headers: Optional[Sequence[_builtins.str]] = None):
37074
+ """
37075
+ :param 'RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfigArgs' json_custom_config: Custom configuration to apply the JSON parsing. Only applicable when JSON parsing is set to STANDARD.
37076
+ Structure is documented below.
37077
+ :param _builtins.str json_parsing: JSON body parsing. Supported values include: "DISABLED", "STANDARD", "STANDARD_WITH_GRAPHQL".
37078
+ Possible values are: `DISABLED`, `STANDARD`, `STANDARD_WITH_GRAPHQL`.
37079
+ :param _builtins.str log_level: Logging level. Supported values include: "NORMAL", "VERBOSE".
37080
+ Possible values are: `NORMAL`, `VERBOSE`.
37081
+ :param _builtins.str request_body_inspection_size: The maximum request size chosen by the customer with Waf enabled. Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
37082
+ Values are case insensitive.
37083
+ Possible values are: `8KB`, `16KB`, `32KB`, `48KB`, `64KB`.
37084
+ :param Sequence[_builtins.str] user_ip_request_headers: An optional list of case-insensitive request header names to use for resolving the callers client IP address.
37085
+ """
37086
+ if json_custom_config is not None:
37087
+ pulumi.set(__self__, "json_custom_config", json_custom_config)
37088
+ if json_parsing is not None:
37089
+ pulumi.set(__self__, "json_parsing", json_parsing)
37090
+ if log_level is not None:
37091
+ pulumi.set(__self__, "log_level", log_level)
37092
+ if request_body_inspection_size is not None:
37093
+ pulumi.set(__self__, "request_body_inspection_size", request_body_inspection_size)
37094
+ if user_ip_request_headers is not None:
37095
+ pulumi.set(__self__, "user_ip_request_headers", user_ip_request_headers)
37096
+
37097
+ @_builtins.property
37098
+ @pulumi.getter(name="jsonCustomConfig")
37099
+ def json_custom_config(self) -> Optional['outputs.RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfig']:
37100
+ """
37101
+ Custom configuration to apply the JSON parsing. Only applicable when JSON parsing is set to STANDARD.
37102
+ Structure is documented below.
37103
+ """
37104
+ return pulumi.get(self, "json_custom_config")
37105
+
37106
+ @_builtins.property
37107
+ @pulumi.getter(name="jsonParsing")
37108
+ def json_parsing(self) -> Optional[_builtins.str]:
37109
+ """
37110
+ JSON body parsing. Supported values include: "DISABLED", "STANDARD", "STANDARD_WITH_GRAPHQL".
37111
+ Possible values are: `DISABLED`, `STANDARD`, `STANDARD_WITH_GRAPHQL`.
37112
+ """
37113
+ return pulumi.get(self, "json_parsing")
37114
+
37115
+ @_builtins.property
37116
+ @pulumi.getter(name="logLevel")
37117
+ def log_level(self) -> Optional[_builtins.str]:
37118
+ """
37119
+ Logging level. Supported values include: "NORMAL", "VERBOSE".
37120
+ Possible values are: `NORMAL`, `VERBOSE`.
37121
+ """
37122
+ return pulumi.get(self, "log_level")
37123
+
37124
+ @_builtins.property
37125
+ @pulumi.getter(name="requestBodyInspectionSize")
37126
+ def request_body_inspection_size(self) -> Optional[_builtins.str]:
37127
+ """
37128
+ The maximum request size chosen by the customer with Waf enabled. Values supported are "8KB", "16KB, "32KB", "48KB" and "64KB".
37129
+ Values are case insensitive.
37130
+ Possible values are: `8KB`, `16KB`, `32KB`, `48KB`, `64KB`.
37131
+ """
37132
+ return pulumi.get(self, "request_body_inspection_size")
37133
+
37134
+ @_builtins.property
37135
+ @pulumi.getter(name="userIpRequestHeaders")
37136
+ def user_ip_request_headers(self) -> Optional[Sequence[_builtins.str]]:
37137
+ """
37138
+ An optional list of case-insensitive request header names to use for resolving the callers client IP address.
37139
+ """
37140
+ return pulumi.get(self, "user_ip_request_headers")
37141
+
37142
+
37143
+ @pulumi.output_type
37144
+ class RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfig(dict):
37145
+ @staticmethod
37146
+ def __key_warning(key: str):
37147
+ suggest = None
37148
+ if key == "contentTypes":
37149
+ suggest = "content_types"
37150
+
37151
+ if suggest:
37152
+ pulumi.log.warn(f"Key '{key}' not found in RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfig. Access the value via the '{suggest}' property getter instead.")
37153
+
37154
+ def __getitem__(self, key: str) -> Any:
37155
+ RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfig.__key_warning(key)
37156
+ return super().__getitem__(key)
37157
+
37158
+ def get(self, key: str, default = None) -> Any:
37159
+ RegionSecurityPolicyAdvancedOptionsConfigJsonCustomConfig.__key_warning(key)
37160
+ return super().get(key, default)
37161
+
37162
+ def __init__(__self__, *,
37163
+ content_types: Sequence[_builtins.str]):
37164
+ """
37165
+ :param Sequence[_builtins.str] content_types: A list of custom Content-Type header values to apply the JSON parsing.
37166
+ """
37167
+ pulumi.set(__self__, "content_types", content_types)
37168
+
37169
+ @_builtins.property
37170
+ @pulumi.getter(name="contentTypes")
37171
+ def content_types(self) -> Sequence[_builtins.str]:
37172
+ """
37173
+ A list of custom Content-Type header values to apply the JSON parsing.
37174
+ """
37175
+ return pulumi.get(self, "content_types")
37176
+
37177
+
36882
37178
  @pulumi.output_type
36883
37179
  class RegionSecurityPolicyDdosProtectionConfig(dict):
36884
37180
  @staticmethod
@@ -69930,6 +70226,114 @@ class GetRegionBackendServiceFailoverPolicyResult(dict):
69930
70226
  return pulumi.get(self, "failover_ratio")
69931
70227
 
69932
70228
 
70229
+ @pulumi.output_type
70230
+ class GetRegionBackendServiceHaPolicyResult(dict):
70231
+ def __init__(__self__, *,
70232
+ fast_ip_move: _builtins.str,
70233
+ leaders: Sequence['outputs.GetRegionBackendServiceHaPolicyLeaderResult']):
70234
+ """
70235
+ :param _builtins.str fast_ip_move: Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it.
70236
+ Supported values are:
70237
+
70238
+ * 'DISABLED': Fast IP Move is disabled. You can only use the haPolicy.leader API to
70239
+ update the leader.
70240
+
70241
+ * 'GARP_RA': Provides a method to very quickly define a new network endpoint as the
70242
+ leader. This method is faster than updating the leader using the
70243
+ haPolicy.leader API. Fast IP move works as follows: The VM hosting the
70244
+ network endpoint that should become the new leader sends either a
70245
+ Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA)
70246
+ packet (IPv6). Google Cloud immediately but temporarily associates the
70247
+ forwarding rule IP address with that VM, and both new and in-flight packets
70248
+ are quickly delivered to that VM. Possible values: ["DISABLED", "GARP_RA"]
70249
+ :param Sequence['GetRegionBackendServiceHaPolicyLeaderArgs'] leaders: Selects one of the network endpoints attached to the backend NEGs of this service as the
70250
+ active endpoint (the leader) that receives all traffic.
70251
+ """
70252
+ pulumi.set(__self__, "fast_ip_move", fast_ip_move)
70253
+ pulumi.set(__self__, "leaders", leaders)
70254
+
70255
+ @_builtins.property
70256
+ @pulumi.getter(name="fastIpMove")
70257
+ def fast_ip_move(self) -> _builtins.str:
70258
+ """
70259
+ Specifies whether fast IP move is enabled, and if so, the mechanism to achieve it.
70260
+ Supported values are:
70261
+
70262
+ * 'DISABLED': Fast IP Move is disabled. You can only use the haPolicy.leader API to
70263
+ update the leader.
70264
+
70265
+ * 'GARP_RA': Provides a method to very quickly define a new network endpoint as the
70266
+ leader. This method is faster than updating the leader using the
70267
+ haPolicy.leader API. Fast IP move works as follows: The VM hosting the
70268
+ network endpoint that should become the new leader sends either a
70269
+ Gratuitous ARP (GARP) packet (IPv4) or an ICMPv6 Router Advertisement(RA)
70270
+ packet (IPv6). Google Cloud immediately but temporarily associates the
70271
+ forwarding rule IP address with that VM, and both new and in-flight packets
70272
+ are quickly delivered to that VM. Possible values: ["DISABLED", "GARP_RA"]
70273
+ """
70274
+ return pulumi.get(self, "fast_ip_move")
70275
+
70276
+ @_builtins.property
70277
+ @pulumi.getter
70278
+ def leaders(self) -> Sequence['outputs.GetRegionBackendServiceHaPolicyLeaderResult']:
70279
+ """
70280
+ Selects one of the network endpoints attached to the backend NEGs of this service as the
70281
+ active endpoint (the leader) that receives all traffic.
70282
+ """
70283
+ return pulumi.get(self, "leaders")
70284
+
70285
+
70286
+ @pulumi.output_type
70287
+ class GetRegionBackendServiceHaPolicyLeaderResult(dict):
70288
+ def __init__(__self__, *,
70289
+ backend_group: _builtins.str,
70290
+ network_endpoints: Sequence['outputs.GetRegionBackendServiceHaPolicyLeaderNetworkEndpointResult']):
70291
+ """
70292
+ :param _builtins.str backend_group: A fully-qualified URL of the zonal Network Endpoint Group (NEG) that the leader is
70293
+ attached to.
70294
+ :param Sequence['GetRegionBackendServiceHaPolicyLeaderNetworkEndpointArgs'] network_endpoints: The network endpoint within the leader.backendGroup that is designated as the leader.
70295
+ """
70296
+ pulumi.set(__self__, "backend_group", backend_group)
70297
+ pulumi.set(__self__, "network_endpoints", network_endpoints)
70298
+
70299
+ @_builtins.property
70300
+ @pulumi.getter(name="backendGroup")
70301
+ def backend_group(self) -> _builtins.str:
70302
+ """
70303
+ A fully-qualified URL of the zonal Network Endpoint Group (NEG) that the leader is
70304
+ attached to.
70305
+ """
70306
+ return pulumi.get(self, "backend_group")
70307
+
70308
+ @_builtins.property
70309
+ @pulumi.getter(name="networkEndpoints")
70310
+ def network_endpoints(self) -> Sequence['outputs.GetRegionBackendServiceHaPolicyLeaderNetworkEndpointResult']:
70311
+ """
70312
+ The network endpoint within the leader.backendGroup that is designated as the leader.
70313
+ """
70314
+ return pulumi.get(self, "network_endpoints")
70315
+
70316
+
70317
+ @pulumi.output_type
70318
+ class GetRegionBackendServiceHaPolicyLeaderNetworkEndpointResult(dict):
70319
+ def __init__(__self__, *,
70320
+ instance: _builtins.str):
70321
+ """
70322
+ :param _builtins.str instance: The name of the VM instance of the leader network endpoint. The instance must
70323
+ already be attached to the NEG specified in the haPolicy.leader.backendGroup.
70324
+ """
70325
+ pulumi.set(__self__, "instance", instance)
70326
+
70327
+ @_builtins.property
70328
+ @pulumi.getter
70329
+ def instance(self) -> _builtins.str:
70330
+ """
70331
+ The name of the VM instance of the leader network endpoint. The instance must
70332
+ already be attached to the NEG specified in the haPolicy.leader.backendGroup.
70333
+ """
70334
+ return pulumi.get(self, "instance")
70335
+
70336
+
69933
70337
  @pulumi.output_type
69934
70338
  class GetRegionBackendServiceIapResult(dict):
69935
70339
  def __init__(__self__, *,