oci.NetworkLoadBalancer.NetworkLoadBalancersBackendSetsUnified
Explore with Pulumi AI
This resource provides the Network Load Balancers Backend Sets Unified resource in Oracle Cloud Infrastructure Network Load Balancer service.
Adds a backend set to a network load balancer.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testNetworkLoadBalancersBackendSetsUnified = new oci.networkloadbalancer.NetworkLoadBalancersBackendSetsUnified("test_network_load_balancers_backend_sets_unified", {
    healthChecker: {
        protocol: networkLoadBalancersBackendSetsUnifiedHealthCheckerProtocol,
        dns: {
            domainName: testDomain.name,
            queryClass: networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryClass,
            queryType: networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryType,
            rcodes: networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsRcodes,
            transportProtocol: networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsTransportProtocol,
        },
        intervalInMillis: networkLoadBalancersBackendSetsUnifiedHealthCheckerIntervalInMillis,
        port: networkLoadBalancersBackendSetsUnifiedHealthCheckerPort,
        requestData: networkLoadBalancersBackendSetsUnifiedHealthCheckerRequestData,
        responseBodyRegex: networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseBodyRegex,
        responseData: networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseData,
        retries: networkLoadBalancersBackendSetsUnifiedHealthCheckerRetries,
        returnCode: networkLoadBalancersBackendSetsUnifiedHealthCheckerReturnCode,
        timeoutInMillis: networkLoadBalancersBackendSetsUnifiedHealthCheckerTimeoutInMillis,
        urlPath: networkLoadBalancersBackendSetsUnifiedHealthCheckerUrlPath,
    },
    name: networkLoadBalancersBackendSetsUnifiedName,
    networkLoadBalancerId: testNetworkLoadBalancer.id,
    policy: networkLoadBalancersBackendSetsUnifiedPolicy,
    areOperationallyActiveBackendsPreferred: networkLoadBalancersBackendSetsUnifiedAreOperationallyActiveBackendsPreferred,
    backends: [{
        port: networkLoadBalancersBackendSetsUnifiedBackendsPort,
        ipAddress: networkLoadBalancersBackendSetsUnifiedBackendsIpAddress,
        isBackup: networkLoadBalancersBackendSetsUnifiedBackendsIsBackup,
        isDrain: networkLoadBalancersBackendSetsUnifiedBackendsIsDrain,
        isOffline: networkLoadBalancersBackendSetsUnifiedBackendsIsOffline,
        name: networkLoadBalancersBackendSetsUnifiedBackendsName,
        targetId: testTarget.id,
        weight: networkLoadBalancersBackendSetsUnifiedBackendsWeight,
    }],
    ipVersion: networkLoadBalancersBackendSetsUnifiedIpVersion,
    isFailOpen: networkLoadBalancersBackendSetsUnifiedIsFailOpen,
    isInstantFailoverEnabled: networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled,
    isInstantFailoverTcpResetEnabled: networkLoadBalancersBackendSetsUnifiedIsInstantFailoverTcpResetEnabled,
    isPreserveSource: networkLoadBalancersBackendSetsUnifiedIsPreserveSource,
});
import pulumi
import pulumi_oci as oci
test_network_load_balancers_backend_sets_unified = oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnified("test_network_load_balancers_backend_sets_unified",
    health_checker={
        "protocol": network_load_balancers_backend_sets_unified_health_checker_protocol,
        "dns": {
            "domain_name": test_domain["name"],
            "query_class": network_load_balancers_backend_sets_unified_health_checker_dns_query_class,
            "query_type": network_load_balancers_backend_sets_unified_health_checker_dns_query_type,
            "rcodes": network_load_balancers_backend_sets_unified_health_checker_dns_rcodes,
            "transport_protocol": network_load_balancers_backend_sets_unified_health_checker_dns_transport_protocol,
        },
        "interval_in_millis": network_load_balancers_backend_sets_unified_health_checker_interval_in_millis,
        "port": network_load_balancers_backend_sets_unified_health_checker_port,
        "request_data": network_load_balancers_backend_sets_unified_health_checker_request_data,
        "response_body_regex": network_load_balancers_backend_sets_unified_health_checker_response_body_regex,
        "response_data": network_load_balancers_backend_sets_unified_health_checker_response_data,
        "retries": network_load_balancers_backend_sets_unified_health_checker_retries,
        "return_code": network_load_balancers_backend_sets_unified_health_checker_return_code,
        "timeout_in_millis": network_load_balancers_backend_sets_unified_health_checker_timeout_in_millis,
        "url_path": network_load_balancers_backend_sets_unified_health_checker_url_path,
    },
    name=network_load_balancers_backend_sets_unified_name,
    network_load_balancer_id=test_network_load_balancer["id"],
    policy=network_load_balancers_backend_sets_unified_policy,
    are_operationally_active_backends_preferred=network_load_balancers_backend_sets_unified_are_operationally_active_backends_preferred,
    backends=[{
        "port": network_load_balancers_backend_sets_unified_backends_port,
        "ip_address": network_load_balancers_backend_sets_unified_backends_ip_address,
        "is_backup": network_load_balancers_backend_sets_unified_backends_is_backup,
        "is_drain": network_load_balancers_backend_sets_unified_backends_is_drain,
        "is_offline": network_load_balancers_backend_sets_unified_backends_is_offline,
        "name": network_load_balancers_backend_sets_unified_backends_name,
        "target_id": test_target["id"],
        "weight": network_load_balancers_backend_sets_unified_backends_weight,
    }],
    ip_version=network_load_balancers_backend_sets_unified_ip_version,
    is_fail_open=network_load_balancers_backend_sets_unified_is_fail_open,
    is_instant_failover_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_enabled,
    is_instant_failover_tcp_reset_enabled=network_load_balancers_backend_sets_unified_is_instant_failover_tcp_reset_enabled,
    is_preserve_source=network_load_balancers_backend_sets_unified_is_preserve_source)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/networkloadbalancer"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkloadbalancer.NewNetworkLoadBalancersBackendSetsUnified(ctx, "test_network_load_balancers_backend_sets_unified", &networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedArgs{
			HealthChecker: &networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs{
				Protocol: pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerProtocol),
				Dns: &networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs{
					DomainName:        pulumi.Any(testDomain.Name),
					QueryClass:        pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryClass),
					QueryType:         pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryType),
					Rcodes:            pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsRcodes),
					TransportProtocol: pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsTransportProtocol),
				},
				IntervalInMillis:  pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerIntervalInMillis),
				Port:              pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerPort),
				RequestData:       pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerRequestData),
				ResponseBodyRegex: pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseBodyRegex),
				ResponseData:      pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseData),
				Retries:           pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerRetries),
				ReturnCode:        pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerReturnCode),
				TimeoutInMillis:   pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerTimeoutInMillis),
				UrlPath:           pulumi.Any(networkLoadBalancersBackendSetsUnifiedHealthCheckerUrlPath),
			},
			Name:                                    pulumi.Any(networkLoadBalancersBackendSetsUnifiedName),
			NetworkLoadBalancerId:                   pulumi.Any(testNetworkLoadBalancer.Id),
			Policy:                                  pulumi.Any(networkLoadBalancersBackendSetsUnifiedPolicy),
			AreOperationallyActiveBackendsPreferred: pulumi.Any(networkLoadBalancersBackendSetsUnifiedAreOperationallyActiveBackendsPreferred),
			Backends: networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedBackendArray{
				&networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedBackendArgs{
					Port:      pulumi.Any(networkLoadBalancersBackendSetsUnifiedBackendsPort),
					IpAddress: pulumi.Any(networkLoadBalancersBackendSetsUnifiedBackendsIpAddress),
					IsBackup:  pulumi.Any(networkLoadBalancersBackendSetsUnifiedBackendsIsBackup),
					IsDrain:   pulumi.Any(networkLoadBalancersBackendSetsUnifiedBackendsIsDrain),
					IsOffline: pulumi.Any(networkLoadBalancersBackendSetsUnifiedBackendsIsOffline),
					Name:      pulumi.Any(networkLoadBalancersBackendSetsUnifiedBackendsName),
					TargetId:  pulumi.Any(testTarget.Id),
					Weight:    pulumi.Any(networkLoadBalancersBackendSetsUnifiedBackendsWeight),
				},
			},
			IpVersion:                        pulumi.Any(networkLoadBalancersBackendSetsUnifiedIpVersion),
			IsFailOpen:                       pulumi.Any(networkLoadBalancersBackendSetsUnifiedIsFailOpen),
			IsInstantFailoverEnabled:         pulumi.Any(networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled),
			IsInstantFailoverTcpResetEnabled: pulumi.Any(networkLoadBalancersBackendSetsUnifiedIsInstantFailoverTcpResetEnabled),
			IsPreserveSource:                 pulumi.Any(networkLoadBalancersBackendSetsUnifiedIsPreserveSource),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testNetworkLoadBalancersBackendSetsUnified = new Oci.NetworkLoadBalancer.NetworkLoadBalancersBackendSetsUnified("test_network_load_balancers_backend_sets_unified", new()
    {
        HealthChecker = new Oci.NetworkLoadBalancer.Inputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs
        {
            Protocol = networkLoadBalancersBackendSetsUnifiedHealthCheckerProtocol,
            Dns = new Oci.NetworkLoadBalancer.Inputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs
            {
                DomainName = testDomain.Name,
                QueryClass = networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryClass,
                QueryType = networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryType,
                Rcodes = networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsRcodes,
                TransportProtocol = networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsTransportProtocol,
            },
            IntervalInMillis = networkLoadBalancersBackendSetsUnifiedHealthCheckerIntervalInMillis,
            Port = networkLoadBalancersBackendSetsUnifiedHealthCheckerPort,
            RequestData = networkLoadBalancersBackendSetsUnifiedHealthCheckerRequestData,
            ResponseBodyRegex = networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseBodyRegex,
            ResponseData = networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseData,
            Retries = networkLoadBalancersBackendSetsUnifiedHealthCheckerRetries,
            ReturnCode = networkLoadBalancersBackendSetsUnifiedHealthCheckerReturnCode,
            TimeoutInMillis = networkLoadBalancersBackendSetsUnifiedHealthCheckerTimeoutInMillis,
            UrlPath = networkLoadBalancersBackendSetsUnifiedHealthCheckerUrlPath,
        },
        Name = networkLoadBalancersBackendSetsUnifiedName,
        NetworkLoadBalancerId = testNetworkLoadBalancer.Id,
        Policy = networkLoadBalancersBackendSetsUnifiedPolicy,
        AreOperationallyActiveBackendsPreferred = networkLoadBalancersBackendSetsUnifiedAreOperationallyActiveBackendsPreferred,
        Backends = new[]
        {
            new Oci.NetworkLoadBalancer.Inputs.NetworkLoadBalancersBackendSetsUnifiedBackendArgs
            {
                Port = networkLoadBalancersBackendSetsUnifiedBackendsPort,
                IpAddress = networkLoadBalancersBackendSetsUnifiedBackendsIpAddress,
                IsBackup = networkLoadBalancersBackendSetsUnifiedBackendsIsBackup,
                IsDrain = networkLoadBalancersBackendSetsUnifiedBackendsIsDrain,
                IsOffline = networkLoadBalancersBackendSetsUnifiedBackendsIsOffline,
                Name = networkLoadBalancersBackendSetsUnifiedBackendsName,
                TargetId = testTarget.Id,
                Weight = networkLoadBalancersBackendSetsUnifiedBackendsWeight,
            },
        },
        IpVersion = networkLoadBalancersBackendSetsUnifiedIpVersion,
        IsFailOpen = networkLoadBalancersBackendSetsUnifiedIsFailOpen,
        IsInstantFailoverEnabled = networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled,
        IsInstantFailoverTcpResetEnabled = networkLoadBalancersBackendSetsUnifiedIsInstantFailoverTcpResetEnabled,
        IsPreserveSource = networkLoadBalancersBackendSetsUnifiedIsPreserveSource,
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.NetworkLoadBalancer.NetworkLoadBalancersBackendSetsUnified;
import com.pulumi.oci.NetworkLoadBalancer.NetworkLoadBalancersBackendSetsUnifiedArgs;
import com.pulumi.oci.NetworkLoadBalancer.inputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs;
import com.pulumi.oci.NetworkLoadBalancer.inputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs;
import com.pulumi.oci.NetworkLoadBalancer.inputs.NetworkLoadBalancersBackendSetsUnifiedBackendArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var testNetworkLoadBalancersBackendSetsUnified = new NetworkLoadBalancersBackendSetsUnified("testNetworkLoadBalancersBackendSetsUnified", NetworkLoadBalancersBackendSetsUnifiedArgs.builder()
            .healthChecker(NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs.builder()
                .protocol(networkLoadBalancersBackendSetsUnifiedHealthCheckerProtocol)
                .dns(NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs.builder()
                    .domainName(testDomain.name())
                    .queryClass(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryClass)
                    .queryType(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryType)
                    .rcodes(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsRcodes)
                    .transportProtocol(networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsTransportProtocol)
                    .build())
                .intervalInMillis(networkLoadBalancersBackendSetsUnifiedHealthCheckerIntervalInMillis)
                .port(networkLoadBalancersBackendSetsUnifiedHealthCheckerPort)
                .requestData(networkLoadBalancersBackendSetsUnifiedHealthCheckerRequestData)
                .responseBodyRegex(networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseBodyRegex)
                .responseData(networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseData)
                .retries(networkLoadBalancersBackendSetsUnifiedHealthCheckerRetries)
                .returnCode(networkLoadBalancersBackendSetsUnifiedHealthCheckerReturnCode)
                .timeoutInMillis(networkLoadBalancersBackendSetsUnifiedHealthCheckerTimeoutInMillis)
                .urlPath(networkLoadBalancersBackendSetsUnifiedHealthCheckerUrlPath)
                .build())
            .name(networkLoadBalancersBackendSetsUnifiedName)
            .networkLoadBalancerId(testNetworkLoadBalancer.id())
            .policy(networkLoadBalancersBackendSetsUnifiedPolicy)
            .areOperationallyActiveBackendsPreferred(networkLoadBalancersBackendSetsUnifiedAreOperationallyActiveBackendsPreferred)
            .backends(NetworkLoadBalancersBackendSetsUnifiedBackendArgs.builder()
                .port(networkLoadBalancersBackendSetsUnifiedBackendsPort)
                .ipAddress(networkLoadBalancersBackendSetsUnifiedBackendsIpAddress)
                .isBackup(networkLoadBalancersBackendSetsUnifiedBackendsIsBackup)
                .isDrain(networkLoadBalancersBackendSetsUnifiedBackendsIsDrain)
                .isOffline(networkLoadBalancersBackendSetsUnifiedBackendsIsOffline)
                .name(networkLoadBalancersBackendSetsUnifiedBackendsName)
                .targetId(testTarget.id())
                .weight(networkLoadBalancersBackendSetsUnifiedBackendsWeight)
                .build())
            .ipVersion(networkLoadBalancersBackendSetsUnifiedIpVersion)
            .isFailOpen(networkLoadBalancersBackendSetsUnifiedIsFailOpen)
            .isInstantFailoverEnabled(networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled)
            .isInstantFailoverTcpResetEnabled(networkLoadBalancersBackendSetsUnifiedIsInstantFailoverTcpResetEnabled)
            .isPreserveSource(networkLoadBalancersBackendSetsUnifiedIsPreserveSource)
            .build());
    }
}
resources:
  testNetworkLoadBalancersBackendSetsUnified:
    type: oci:NetworkLoadBalancer:NetworkLoadBalancersBackendSetsUnified
    name: test_network_load_balancers_backend_sets_unified
    properties:
      healthChecker:
        protocol: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerProtocol}
        dns:
          domainName: ${testDomain.name}
          queryClass: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryClass}
          queryType: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsQueryType}
          rcodes: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsRcodes}
          transportProtocol: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerDnsTransportProtocol}
        intervalInMillis: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerIntervalInMillis}
        port: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerPort}
        requestData: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerRequestData}
        responseBodyRegex: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseBodyRegex}
        responseData: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerResponseData}
        retries: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerRetries}
        returnCode: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerReturnCode}
        timeoutInMillis: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerTimeoutInMillis}
        urlPath: ${networkLoadBalancersBackendSetsUnifiedHealthCheckerUrlPath}
      name: ${networkLoadBalancersBackendSetsUnifiedName}
      networkLoadBalancerId: ${testNetworkLoadBalancer.id}
      policy: ${networkLoadBalancersBackendSetsUnifiedPolicy}
      areOperationallyActiveBackendsPreferred: ${networkLoadBalancersBackendSetsUnifiedAreOperationallyActiveBackendsPreferred}
      backends:
        - port: ${networkLoadBalancersBackendSetsUnifiedBackendsPort}
          ipAddress: ${networkLoadBalancersBackendSetsUnifiedBackendsIpAddress}
          isBackup: ${networkLoadBalancersBackendSetsUnifiedBackendsIsBackup}
          isDrain: ${networkLoadBalancersBackendSetsUnifiedBackendsIsDrain}
          isOffline: ${networkLoadBalancersBackendSetsUnifiedBackendsIsOffline}
          name: ${networkLoadBalancersBackendSetsUnifiedBackendsName}
          targetId: ${testTarget.id}
          weight: ${networkLoadBalancersBackendSetsUnifiedBackendsWeight}
      ipVersion: ${networkLoadBalancersBackendSetsUnifiedIpVersion}
      isFailOpen: ${networkLoadBalancersBackendSetsUnifiedIsFailOpen}
      isInstantFailoverEnabled: ${networkLoadBalancersBackendSetsUnifiedIsInstantFailoverEnabled}
      isInstantFailoverTcpResetEnabled: ${networkLoadBalancersBackendSetsUnifiedIsInstantFailoverTcpResetEnabled}
      isPreserveSource: ${networkLoadBalancersBackendSetsUnifiedIsPreserveSource}
Create NetworkLoadBalancersBackendSetsUnified Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkLoadBalancersBackendSetsUnified(name: string, args: NetworkLoadBalancersBackendSetsUnifiedArgs, opts?: CustomResourceOptions);@overload
def NetworkLoadBalancersBackendSetsUnified(resource_name: str,
                                           args: NetworkLoadBalancersBackendSetsUnifiedArgs,
                                           opts: Optional[ResourceOptions] = None)
@overload
def NetworkLoadBalancersBackendSetsUnified(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           health_checker: Optional[NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs] = None,
                                           network_load_balancer_id: Optional[str] = None,
                                           policy: Optional[str] = None,
                                           are_operationally_active_backends_preferred: Optional[bool] = None,
                                           backends: Optional[Sequence[NetworkLoadBalancersBackendSetsUnifiedBackendArgs]] = None,
                                           ip_version: Optional[str] = None,
                                           is_fail_open: Optional[bool] = None,
                                           is_instant_failover_enabled: Optional[bool] = None,
                                           is_instant_failover_tcp_reset_enabled: Optional[bool] = None,
                                           is_preserve_source: Optional[bool] = None,
                                           name: Optional[str] = None)func NewNetworkLoadBalancersBackendSetsUnified(ctx *Context, name string, args NetworkLoadBalancersBackendSetsUnifiedArgs, opts ...ResourceOption) (*NetworkLoadBalancersBackendSetsUnified, error)public NetworkLoadBalancersBackendSetsUnified(string name, NetworkLoadBalancersBackendSetsUnifiedArgs args, CustomResourceOptions? opts = null)
public NetworkLoadBalancersBackendSetsUnified(String name, NetworkLoadBalancersBackendSetsUnifiedArgs args)
public NetworkLoadBalancersBackendSetsUnified(String name, NetworkLoadBalancersBackendSetsUnifiedArgs args, CustomResourceOptions options)
type: oci:NetworkLoadBalancer:NetworkLoadBalancersBackendSetsUnified
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args NetworkLoadBalancersBackendSetsUnifiedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args NetworkLoadBalancersBackendSetsUnifiedArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args NetworkLoadBalancersBackendSetsUnifiedArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkLoadBalancersBackendSetsUnifiedArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkLoadBalancersBackendSetsUnifiedArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var networkLoadBalancersBackendSetsUnifiedResource = new Oci.NetworkLoadBalancer.NetworkLoadBalancersBackendSetsUnified("networkLoadBalancersBackendSetsUnifiedResource", new()
{
    HealthChecker = new Oci.NetworkLoadBalancer.Inputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs
    {
        Protocol = "string",
        Dns = new Oci.NetworkLoadBalancer.Inputs.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs
        {
            DomainName = "string",
            QueryClass = "string",
            QueryType = "string",
            Rcodes = new[]
            {
                "string",
            },
            TransportProtocol = "string",
        },
        IntervalInMillis = 0,
        Port = 0,
        RequestData = "string",
        ResponseBodyRegex = "string",
        ResponseData = "string",
        Retries = 0,
        ReturnCode = 0,
        TimeoutInMillis = 0,
        UrlPath = "string",
    },
    NetworkLoadBalancerId = "string",
    Policy = "string",
    AreOperationallyActiveBackendsPreferred = false,
    Backends = new[]
    {
        new Oci.NetworkLoadBalancer.Inputs.NetworkLoadBalancersBackendSetsUnifiedBackendArgs
        {
            Port = 0,
            IpAddress = "string",
            IsBackup = false,
            IsDrain = false,
            IsOffline = false,
            Name = "string",
            TargetId = "string",
            Weight = 0,
        },
    },
    IpVersion = "string",
    IsFailOpen = false,
    IsInstantFailoverEnabled = false,
    IsInstantFailoverTcpResetEnabled = false,
    IsPreserveSource = false,
    Name = "string",
});
example, err := networkloadbalancer.NewNetworkLoadBalancersBackendSetsUnified(ctx, "networkLoadBalancersBackendSetsUnifiedResource", &networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedArgs{
	HealthChecker: &networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs{
		Protocol: pulumi.String("string"),
		Dns: &networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs{
			DomainName: pulumi.String("string"),
			QueryClass: pulumi.String("string"),
			QueryType:  pulumi.String("string"),
			Rcodes: pulumi.StringArray{
				pulumi.String("string"),
			},
			TransportProtocol: pulumi.String("string"),
		},
		IntervalInMillis:  pulumi.Int(0),
		Port:              pulumi.Int(0),
		RequestData:       pulumi.String("string"),
		ResponseBodyRegex: pulumi.String("string"),
		ResponseData:      pulumi.String("string"),
		Retries:           pulumi.Int(0),
		ReturnCode:        pulumi.Int(0),
		TimeoutInMillis:   pulumi.Int(0),
		UrlPath:           pulumi.String("string"),
	},
	NetworkLoadBalancerId:                   pulumi.String("string"),
	Policy:                                  pulumi.String("string"),
	AreOperationallyActiveBackendsPreferred: pulumi.Bool(false),
	Backends: networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedBackendArray{
		&networkloadbalancer.NetworkLoadBalancersBackendSetsUnifiedBackendArgs{
			Port:      pulumi.Int(0),
			IpAddress: pulumi.String("string"),
			IsBackup:  pulumi.Bool(false),
			IsDrain:   pulumi.Bool(false),
			IsOffline: pulumi.Bool(false),
			Name:      pulumi.String("string"),
			TargetId:  pulumi.String("string"),
			Weight:    pulumi.Int(0),
		},
	},
	IpVersion:                        pulumi.String("string"),
	IsFailOpen:                       pulumi.Bool(false),
	IsInstantFailoverEnabled:         pulumi.Bool(false),
	IsInstantFailoverTcpResetEnabled: pulumi.Bool(false),
	IsPreserveSource:                 pulumi.Bool(false),
	Name:                             pulumi.String("string"),
})
var networkLoadBalancersBackendSetsUnifiedResource = new NetworkLoadBalancersBackendSetsUnified("networkLoadBalancersBackendSetsUnifiedResource", NetworkLoadBalancersBackendSetsUnifiedArgs.builder()
    .healthChecker(NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs.builder()
        .protocol("string")
        .dns(NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs.builder()
            .domainName("string")
            .queryClass("string")
            .queryType("string")
            .rcodes("string")
            .transportProtocol("string")
            .build())
        .intervalInMillis(0)
        .port(0)
        .requestData("string")
        .responseBodyRegex("string")
        .responseData("string")
        .retries(0)
        .returnCode(0)
        .timeoutInMillis(0)
        .urlPath("string")
        .build())
    .networkLoadBalancerId("string")
    .policy("string")
    .areOperationallyActiveBackendsPreferred(false)
    .backends(NetworkLoadBalancersBackendSetsUnifiedBackendArgs.builder()
        .port(0)
        .ipAddress("string")
        .isBackup(false)
        .isDrain(false)
        .isOffline(false)
        .name("string")
        .targetId("string")
        .weight(0)
        .build())
    .ipVersion("string")
    .isFailOpen(false)
    .isInstantFailoverEnabled(false)
    .isInstantFailoverTcpResetEnabled(false)
    .isPreserveSource(false)
    .name("string")
    .build());
network_load_balancers_backend_sets_unified_resource = oci.network_load_balancer.NetworkLoadBalancersBackendSetsUnified("networkLoadBalancersBackendSetsUnifiedResource",
    health_checker={
        "protocol": "string",
        "dns": {
            "domain_name": "string",
            "query_class": "string",
            "query_type": "string",
            "rcodes": ["string"],
            "transport_protocol": "string",
        },
        "interval_in_millis": 0,
        "port": 0,
        "request_data": "string",
        "response_body_regex": "string",
        "response_data": "string",
        "retries": 0,
        "return_code": 0,
        "timeout_in_millis": 0,
        "url_path": "string",
    },
    network_load_balancer_id="string",
    policy="string",
    are_operationally_active_backends_preferred=False,
    backends=[{
        "port": 0,
        "ip_address": "string",
        "is_backup": False,
        "is_drain": False,
        "is_offline": False,
        "name": "string",
        "target_id": "string",
        "weight": 0,
    }],
    ip_version="string",
    is_fail_open=False,
    is_instant_failover_enabled=False,
    is_instant_failover_tcp_reset_enabled=False,
    is_preserve_source=False,
    name="string")
const networkLoadBalancersBackendSetsUnifiedResource = new oci.networkloadbalancer.NetworkLoadBalancersBackendSetsUnified("networkLoadBalancersBackendSetsUnifiedResource", {
    healthChecker: {
        protocol: "string",
        dns: {
            domainName: "string",
            queryClass: "string",
            queryType: "string",
            rcodes: ["string"],
            transportProtocol: "string",
        },
        intervalInMillis: 0,
        port: 0,
        requestData: "string",
        responseBodyRegex: "string",
        responseData: "string",
        retries: 0,
        returnCode: 0,
        timeoutInMillis: 0,
        urlPath: "string",
    },
    networkLoadBalancerId: "string",
    policy: "string",
    areOperationallyActiveBackendsPreferred: false,
    backends: [{
        port: 0,
        ipAddress: "string",
        isBackup: false,
        isDrain: false,
        isOffline: false,
        name: "string",
        targetId: "string",
        weight: 0,
    }],
    ipVersion: "string",
    isFailOpen: false,
    isInstantFailoverEnabled: false,
    isInstantFailoverTcpResetEnabled: false,
    isPreserveSource: false,
    name: "string",
});
type: oci:NetworkLoadBalancer:NetworkLoadBalancersBackendSetsUnified
properties:
    areOperationallyActiveBackendsPreferred: false
    backends:
        - ipAddress: string
          isBackup: false
          isDrain: false
          isOffline: false
          name: string
          port: 0
          targetId: string
          weight: 0
    healthChecker:
        dns:
            domainName: string
            queryClass: string
            queryType: string
            rcodes:
                - string
            transportProtocol: string
        intervalInMillis: 0
        port: 0
        protocol: string
        requestData: string
        responseBodyRegex: string
        responseData: string
        retries: 0
        returnCode: 0
        timeoutInMillis: 0
        urlPath: string
    ipVersion: string
    isFailOpen: false
    isInstantFailoverEnabled: false
    isInstantFailoverTcpResetEnabled: false
    isPreserveSource: false
    name: string
    networkLoadBalancerId: string
    policy: string
NetworkLoadBalancersBackendSetsUnified Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The NetworkLoadBalancersBackendSetsUnified resource accepts the following input properties:
- HealthChecker NetworkLoad Balancers Backend Sets Unified Health Checker 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- NetworkLoad stringBalancer Id 
- The OCID of the network load balancer to update.
- Policy string
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- AreOperationally boolActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- Backends
List<NetworkLoad Balancers Backend Sets Unified Backend> 
- (Updatable) An array of backends to be associated with the backend set.
- IpVersion string
- (Updatable) IP version associated with the backend set.
- IsFail boolOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- IsInstant boolFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- IsInstant boolFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- IsPreserve boolSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- Name string
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- HealthChecker NetworkLoad Balancers Backend Sets Unified Health Checker Args 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- NetworkLoad stringBalancer Id 
- The OCID of the network load balancer to update.
- Policy string
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- AreOperationally boolActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- Backends
[]NetworkLoad Balancers Backend Sets Unified Backend Args 
- (Updatable) An array of backends to be associated with the backend set.
- IpVersion string
- (Updatable) IP version associated with the backend set.
- IsFail boolOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- IsInstant boolFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- IsInstant boolFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- IsPreserve boolSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- Name string
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- healthChecker sBackend Sets Unified Health Checker 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- networkLoad StringBalancer Id 
- The OCID of the network load balancer to update.
- policy String
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- areOperationally BooleanActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends
List<sBackend Sets Unified Backend> 
- (Updatable) An array of backends to be associated with the backend set.
- ipVersion String
- (Updatable) IP version associated with the backend set.
- isFail BooleanOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- isInstant BooleanFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- isInstant BooleanFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- isPreserve BooleanSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name String
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- healthChecker NetworkLoad Balancers Backend Sets Unified Health Checker 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- networkLoad stringBalancer Id 
- The OCID of the network load balancer to update.
- policy string
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- areOperationally booleanActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends
NetworkLoad Balancers Backend Sets Unified Backend[] 
- (Updatable) An array of backends to be associated with the backend set.
- ipVersion string
- (Updatable) IP version associated with the backend set.
- isFail booleanOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- isInstant booleanFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- isInstant booleanFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- isPreserve booleanSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name string
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- health_checker NetworkLoad Balancers Backend Sets Unified Health Checker Args 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- network_load_ strbalancer_ id 
- The OCID of the network load balancer to update.
- policy str
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- are_operationally_ boolactive_ backends_ preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends
Sequence[NetworkLoad Balancers Backend Sets Unified Backend Args] 
- (Updatable) An array of backends to be associated with the backend set.
- ip_version str
- (Updatable) IP version associated with the backend set.
- is_fail_ boolopen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- is_instant_ boolfailover_ enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- is_instant_ boolfailover_ tcp_ reset_ enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- is_preserve_ boolsource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name str
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- healthChecker Property Map
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- networkLoad StringBalancer Id 
- The OCID of the network load balancer to update.
- policy String
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- areOperationally BooleanActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends List<Property Map>
- (Updatable) An array of backends to be associated with the backend set.
- ipVersion String
- (Updatable) IP version associated with the backend set.
- isFail BooleanOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- isInstant BooleanFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- isInstant BooleanFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- isPreserve BooleanSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name String
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkLoadBalancersBackendSetsUnified resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing NetworkLoadBalancersBackendSetsUnified Resource
Get an existing NetworkLoadBalancersBackendSetsUnified resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: NetworkLoadBalancersBackendSetsUnifiedState, opts?: CustomResourceOptions): NetworkLoadBalancersBackendSetsUnified@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        are_operationally_active_backends_preferred: Optional[bool] = None,
        backends: Optional[Sequence[NetworkLoadBalancersBackendSetsUnifiedBackendArgs]] = None,
        health_checker: Optional[NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs] = None,
        ip_version: Optional[str] = None,
        is_fail_open: Optional[bool] = None,
        is_instant_failover_enabled: Optional[bool] = None,
        is_instant_failover_tcp_reset_enabled: Optional[bool] = None,
        is_preserve_source: Optional[bool] = None,
        name: Optional[str] = None,
        network_load_balancer_id: Optional[str] = None,
        policy: Optional[str] = None) -> NetworkLoadBalancersBackendSetsUnifiedfunc GetNetworkLoadBalancersBackendSetsUnified(ctx *Context, name string, id IDInput, state *NetworkLoadBalancersBackendSetsUnifiedState, opts ...ResourceOption) (*NetworkLoadBalancersBackendSetsUnified, error)public static NetworkLoadBalancersBackendSetsUnified Get(string name, Input<string> id, NetworkLoadBalancersBackendSetsUnifiedState? state, CustomResourceOptions? opts = null)public static NetworkLoadBalancersBackendSetsUnified get(String name, Output<String> id, NetworkLoadBalancersBackendSetsUnifiedState state, CustomResourceOptions options)resources:  _:    type: oci:NetworkLoadBalancer:NetworkLoadBalancersBackendSetsUnified    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AreOperationally boolActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- Backends
List<NetworkLoad Balancers Backend Sets Unified Backend> 
- (Updatable) An array of backends to be associated with the backend set.
- HealthChecker NetworkLoad Balancers Backend Sets Unified Health Checker 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- IpVersion string
- (Updatable) IP version associated with the backend set.
- IsFail boolOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- IsInstant boolFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- IsInstant boolFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- IsPreserve boolSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- Name string
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- NetworkLoad stringBalancer Id 
- The OCID of the network load balancer to update.
- Policy string
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- AreOperationally boolActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- Backends
[]NetworkLoad Balancers Backend Sets Unified Backend Args 
- (Updatable) An array of backends to be associated with the backend set.
- HealthChecker NetworkLoad Balancers Backend Sets Unified Health Checker Args 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- IpVersion string
- (Updatable) IP version associated with the backend set.
- IsFail boolOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- IsInstant boolFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- IsInstant boolFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- IsPreserve boolSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- Name string
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- NetworkLoad stringBalancer Id 
- The OCID of the network load balancer to update.
- Policy string
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- areOperationally BooleanActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends
List<sBackend Sets Unified Backend> 
- (Updatable) An array of backends to be associated with the backend set.
- healthChecker sBackend Sets Unified Health Checker 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- ipVersion String
- (Updatable) IP version associated with the backend set.
- isFail BooleanOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- isInstant BooleanFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- isInstant BooleanFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- isPreserve BooleanSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name String
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- networkLoad StringBalancer Id 
- The OCID of the network load balancer to update.
- policy String
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- areOperationally booleanActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends
NetworkLoad Balancers Backend Sets Unified Backend[] 
- (Updatable) An array of backends to be associated with the backend set.
- healthChecker NetworkLoad Balancers Backend Sets Unified Health Checker 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- ipVersion string
- (Updatable) IP version associated with the backend set.
- isFail booleanOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- isInstant booleanFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- isInstant booleanFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- isPreserve booleanSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name string
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- networkLoad stringBalancer Id 
- The OCID of the network load balancer to update.
- policy string
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- are_operationally_ boolactive_ backends_ preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends
Sequence[NetworkLoad Balancers Backend Sets Unified Backend Args] 
- (Updatable) An array of backends to be associated with the backend set.
- health_checker NetworkLoad Balancers Backend Sets Unified Health Checker Args 
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- ip_version str
- (Updatable) IP version associated with the backend set.
- is_fail_ boolopen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- is_instant_ boolfailover_ enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- is_instant_ boolfailover_ tcp_ reset_ enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- is_preserve_ boolsource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name str
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- network_load_ strbalancer_ id 
- The OCID of the network load balancer to update.
- policy str
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- areOperationally BooleanActive Backends Preferred 
- (Updatable) If enabled, NLB supports active-standby backends. The standby backend takes over the traffic when the active node fails, and continues to serve the traffic even when the old active node is back healthy.
- backends List<Property Map>
- (Updatable) An array of backends to be associated with the backend set.
- healthChecker Property Map
- (Updatable) The health check policy configuration. For more information, see Editing Network Load Balancer Health Check Policies.
- ipVersion String
- (Updatable) IP version associated with the backend set.
- isFail BooleanOpen 
- (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
- isInstant BooleanFailover Enabled 
- (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
- isInstant BooleanFailover Tcp Reset Enabled 
- (Updatable) If enabled along with instant failover, the network load balancer will send TCP RST to the clients for the existing connections instead of failing over to a healthy backend. This only applies when using the instant failover. By default, TCP RST is enabled.
- isPreserve BooleanSource 
- (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
- name String
- A user-friendly name for the backend set that must be unique and cannot be changed. - Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. - Example: - example_backend_set
- networkLoad StringBalancer Id 
- The OCID of the network load balancer to update.
- policy String
- (Updatable) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`` - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Supporting Types
NetworkLoadBalancersBackendSetsUnifiedBackend, NetworkLoadBalancersBackendSetsUnifiedBackendArgs              
- Port int
- (Updatable) The communication port for the backend server. Example: 8080
- IpAddress string
- (Updatable) The IP address of the backend server. Example: 10.0.0.3
- IsBackup bool
- (Updatable) Whether the network load balancer should treat this server as a backup unit. If true, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example:false
- IsDrain bool
- (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: false
- IsOffline bool
- (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: false
- Name string
- (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: 10.0.0.3:8080, orocid1.privateip..oc1.<var><unique_ID></var>:443or10.0.0.3:0
- TargetId string
- (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: ocid1.privateip..oc1.<var><unique_ID></var>
- Weight int
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see Network Load Balancer Policies. Example: 3
- Port int
- (Updatable) The communication port for the backend server. Example: 8080
- IpAddress string
- (Updatable) The IP address of the backend server. Example: 10.0.0.3
- IsBackup bool
- (Updatable) Whether the network load balancer should treat this server as a backup unit. If true, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example:false
- IsDrain bool
- (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: false
- IsOffline bool
- (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: false
- Name string
- (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: 10.0.0.3:8080, orocid1.privateip..oc1.<var><unique_ID></var>:443or10.0.0.3:0
- TargetId string
- (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: ocid1.privateip..oc1.<var><unique_ID></var>
- Weight int
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see Network Load Balancer Policies. Example: 3
- port Integer
- (Updatable) The communication port for the backend server. Example: 8080
- ipAddress String
- (Updatable) The IP address of the backend server. Example: 10.0.0.3
- isBackup Boolean
- (Updatable) Whether the network load balancer should treat this server as a backup unit. If true, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example:false
- isDrain Boolean
- (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: false
- isOffline Boolean
- (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: false
- name String
- (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: 10.0.0.3:8080, orocid1.privateip..oc1.<var><unique_ID></var>:443or10.0.0.3:0
- targetId String
- (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: ocid1.privateip..oc1.<var><unique_ID></var>
- weight Integer
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see Network Load Balancer Policies. Example: 3
- port number
- (Updatable) The communication port for the backend server. Example: 8080
- ipAddress string
- (Updatable) The IP address of the backend server. Example: 10.0.0.3
- isBackup boolean
- (Updatable) Whether the network load balancer should treat this server as a backup unit. If true, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example:false
- isDrain boolean
- (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: false
- isOffline boolean
- (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: false
- name string
- (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: 10.0.0.3:8080, orocid1.privateip..oc1.<var><unique_ID></var>:443or10.0.0.3:0
- targetId string
- (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: ocid1.privateip..oc1.<var><unique_ID></var>
- weight number
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see Network Load Balancer Policies. Example: 3
- port int
- (Updatable) The communication port for the backend server. Example: 8080
- ip_address str
- (Updatable) The IP address of the backend server. Example: 10.0.0.3
- is_backup bool
- (Updatable) Whether the network load balancer should treat this server as a backup unit. If true, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example:false
- is_drain bool
- (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: false
- is_offline bool
- (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: false
- name str
- (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: 10.0.0.3:8080, orocid1.privateip..oc1.<var><unique_ID></var>:443or10.0.0.3:0
- target_id str
- (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: ocid1.privateip..oc1.<var><unique_ID></var>
- weight int
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see Network Load Balancer Policies. Example: 3
- port Number
- (Updatable) The communication port for the backend server. Example: 8080
- ipAddress String
- (Updatable) The IP address of the backend server. Example: 10.0.0.3
- isBackup Boolean
- (Updatable) Whether the network load balancer should treat this server as a backup unit. If true, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "isBackup" fail the health check policy. Example:false
- isDrain Boolean
- (Updatable) Whether the network load balancer should drain this server. Servers marked "isDrain" receive no incoming traffic. Example: false
- isOffline Boolean
- (Updatable) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: false
- name String
- (Updatable) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: 10.0.0.3:8080, orocid1.privateip..oc1.<var><unique_ID></var>:443or10.0.0.3:0
- targetId String
- (Updatable) The IP OCID/Instance OCID associated with the backend server. Example: ocid1.privateip..oc1.<var><unique_ID></var>
- weight Number
- (Updatable) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see Network Load Balancer Policies. Example: 3
NetworkLoadBalancersBackendSetsUnifiedHealthChecker, NetworkLoadBalancersBackendSetsUnifiedHealthCheckerArgs                
- Protocol string
- (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: HTTP
- Dns
NetworkLoad Balancers Backend Sets Unified Health Checker Dns 
- (Updatable) DNS healthcheck configurations.
- IntervalIn intMillis 
- (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: 10000
- Port int
- (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the Backendobject. The port must be specified if the backend port is 0. Example:8080
- RequestData string
- (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
- ResponseBody stringRegex 
- (Updatable) A regular expression for parsing the response body from the backend server. Example: ^((?!false).|\s)*$
- ResponseData string
- (Updatable) Base64 encoded pattern to be validated as UDP or TCP health check probe response.
- Retries int
- (Updatable) The number of retries to attempt before a backend server is considered "unhealthy". This number also applies when recovering a server to the "healthy" state. The default value is 3. Example: 3
- ReturnCode int
- (Updatable) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as "200". Example: 200
- TimeoutIn intMillis 
- (Updatable) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: 3000
- UrlPath string
- (Updatable) The path against which to run the health check. Example: /healthcheck
- Protocol string
- (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: HTTP
- Dns
NetworkLoad Balancers Backend Sets Unified Health Checker Dns 
- (Updatable) DNS healthcheck configurations.
- IntervalIn intMillis 
- (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: 10000
- Port int
- (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the Backendobject. The port must be specified if the backend port is 0. Example:8080
- RequestData string
- (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
- ResponseBody stringRegex 
- (Updatable) A regular expression for parsing the response body from the backend server. Example: ^((?!false).|\s)*$
- ResponseData string
- (Updatable) Base64 encoded pattern to be validated as UDP or TCP health check probe response.
- Retries int
- (Updatable) The number of retries to attempt before a backend server is considered "unhealthy". This number also applies when recovering a server to the "healthy" state. The default value is 3. Example: 3
- ReturnCode int
- (Updatable) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as "200". Example: 200
- TimeoutIn intMillis 
- (Updatable) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: 3000
- UrlPath string
- (Updatable) The path against which to run the health check. Example: /healthcheck
- protocol String
- (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: HTTP
- dns
sBackend Sets Unified Health Checker Dns 
- (Updatable) DNS healthcheck configurations.
- intervalIn IntegerMillis 
- (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: 10000
- port Integer
- (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the Backendobject. The port must be specified if the backend port is 0. Example:8080
- requestData String
- (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
- responseBody StringRegex 
- (Updatable) A regular expression for parsing the response body from the backend server. Example: ^((?!false).|\s)*$
- responseData String
- (Updatable) Base64 encoded pattern to be validated as UDP or TCP health check probe response.
- retries Integer
- (Updatable) The number of retries to attempt before a backend server is considered "unhealthy". This number also applies when recovering a server to the "healthy" state. The default value is 3. Example: 3
- returnCode Integer
- (Updatable) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as "200". Example: 200
- timeoutIn IntegerMillis 
- (Updatable) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: 3000
- urlPath String
- (Updatable) The path against which to run the health check. Example: /healthcheck
- protocol string
- (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: HTTP
- dns
NetworkLoad Balancers Backend Sets Unified Health Checker Dns 
- (Updatable) DNS healthcheck configurations.
- intervalIn numberMillis 
- (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: 10000
- port number
- (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the Backendobject. The port must be specified if the backend port is 0. Example:8080
- requestData string
- (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
- responseBody stringRegex 
- (Updatable) A regular expression for parsing the response body from the backend server. Example: ^((?!false).|\s)*$
- responseData string
- (Updatable) Base64 encoded pattern to be validated as UDP or TCP health check probe response.
- retries number
- (Updatable) The number of retries to attempt before a backend server is considered "unhealthy". This number also applies when recovering a server to the "healthy" state. The default value is 3. Example: 3
- returnCode number
- (Updatable) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as "200". Example: 200
- timeoutIn numberMillis 
- (Updatable) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: 3000
- urlPath string
- (Updatable) The path against which to run the health check. Example: /healthcheck
- protocol str
- (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: HTTP
- dns
NetworkLoad Balancers Backend Sets Unified Health Checker Dns 
- (Updatable) DNS healthcheck configurations.
- interval_in_ intmillis 
- (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: 10000
- port int
- (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the Backendobject. The port must be specified if the backend port is 0. Example:8080
- request_data str
- (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
- response_body_ strregex 
- (Updatable) A regular expression for parsing the response body from the backend server. Example: ^((?!false).|\s)*$
- response_data str
- (Updatable) Base64 encoded pattern to be validated as UDP or TCP health check probe response.
- retries int
- (Updatable) The number of retries to attempt before a backend server is considered "unhealthy". This number also applies when recovering a server to the "healthy" state. The default value is 3. Example: 3
- return_code int
- (Updatable) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as "200". Example: 200
- timeout_in_ intmillis 
- (Updatable) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: 3000
- url_path str
- (Updatable) The path against which to run the health check. Example: /healthcheck
- protocol String
- (Updatable) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: HTTP
- dns Property Map
- (Updatable) DNS healthcheck configurations.
- intervalIn NumberMillis 
- (Updatable) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: 10000
- port Number
- (Updatable) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the Backendobject. The port must be specified if the backend port is 0. Example:8080
- requestData String
- (Updatable) Base64 encoded pattern to be sent as UDP or TCP health check probe.
- responseBody StringRegex 
- (Updatable) A regular expression for parsing the response body from the backend server. Example: ^((?!false).|\s)*$
- responseData String
- (Updatable) Base64 encoded pattern to be validated as UDP or TCP health check probe response.
- retries Number
- (Updatable) The number of retries to attempt before a backend server is considered "unhealthy". This number also applies when recovering a server to the "healthy" state. The default value is 3. Example: 3
- returnCode Number
- (Updatable) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as "200". Example: 200
- timeoutIn NumberMillis 
- (Updatable) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: 3000
- urlPath String
- (Updatable) The path against which to run the health check. Example: /healthcheck
NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDns, NetworkLoadBalancersBackendSetsUnifiedHealthCheckerDnsArgs                  
- DomainName string
- (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
- QueryClass string
- (Updatable) The class the dns health check query to use; either IN or CH. Example: IN
- QueryType string
- (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: A
- Rcodes List<string>
- (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
- TransportProtocol string
- (Updatable) DNS transport protocol; either UDP or TCP. Example: UDP
- DomainName string
- (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
- QueryClass string
- (Updatable) The class the dns health check query to use; either IN or CH. Example: IN
- QueryType string
- (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: A
- Rcodes []string
- (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
- TransportProtocol string
- (Updatable) DNS transport protocol; either UDP or TCP. Example: UDP
- domainName String
- (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
- queryClass String
- (Updatable) The class the dns health check query to use; either IN or CH. Example: IN
- queryType String
- (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: A
- rcodes List<String>
- (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
- transportProtocol String
- (Updatable) DNS transport protocol; either UDP or TCP. Example: UDP
- domainName string
- (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
- queryClass string
- (Updatable) The class the dns health check query to use; either IN or CH. Example: IN
- queryType string
- (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: A
- rcodes string[]
- (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
- transportProtocol string
- (Updatable) DNS transport protocol; either UDP or TCP. Example: UDP
- domain_name str
- (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
- query_class str
- (Updatable) The class the dns health check query to use; either IN or CH. Example: IN
- query_type str
- (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: A
- rcodes Sequence[str]
- (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
- transport_protocol str
- (Updatable) DNS transport protocol; either UDP or TCP. Example: UDP
- domainName String
- (Updatable) The absolute fully-qualified domain name to perform periodic DNS queries. If not provided, an extra dot will be added at the end of a domain name during the query.
- queryClass String
- (Updatable) The class the dns health check query to use; either IN or CH. Example: IN
- queryType String
- (Updatable) The type the dns health check query to use; A, AAAA, TXT. Example: A
- rcodes List<String>
- (Updatable) An array that represents accepetable RCODE values for DNS query response. Example: ["NOERROR", "NXDOMAIN"]
- transportProtocol String
- (Updatable) DNS transport protocol; either UDP or TCP. Example: UDP
Import
NetworkLoadBalancersBackendSetsUnified can be imported using the id, e.g.
$ pulumi import oci:NetworkLoadBalancer/networkLoadBalancersBackendSetsUnified:NetworkLoadBalancersBackendSetsUnified test_network_load_balancers_backend_sets_unified "networkLoadBalancers/{networkLoadBalancerId}/backendSets/{backendSetName}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.