azure-native.cdn.AFDOriginGroup
Explore with Pulumi AI
AFDOrigin group comprising of origins is used for load balancing to origins when the content cannot be served from Azure Front Door. Azure REST API version: 2023-05-01. Prior API version in Azure Native 1.x: 2020-09-01.
Other available API versions: 2020-09-01, 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
Example Usage
AFDOriginGroups_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var afdOriginGroup = new AzureNative.Cdn.AFDOriginGroup("afdOriginGroup", new()
{
HealthProbeSettings = new AzureNative.Cdn.Inputs.HealthProbeParametersArgs
{
ProbeIntervalInSeconds = 10,
ProbePath = "/path2",
ProbeProtocol = AzureNative.Cdn.ProbeProtocol.NotSet,
ProbeRequestType = AzureNative.Cdn.HealthProbeRequestType.NotSet,
},
LoadBalancingSettings = new AzureNative.Cdn.Inputs.LoadBalancingSettingsParametersArgs
{
AdditionalLatencyInMilliseconds = 1000,
SampleSize = 3,
SuccessfulSamplesRequired = 3,
},
OriginGroupName = "origingroup1",
ProfileName = "profile1",
ResourceGroupName = "RG",
TrafficRestorationTimeToHealedOrNewEndpointsInMinutes = 5,
});
});
package main
import (
cdn "github.com/pulumi/pulumi-azure-native-sdk/cdn/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cdn.NewAFDOriginGroup(ctx, "afdOriginGroup", &cdn.AFDOriginGroupArgs{
HealthProbeSettings: &cdn.HealthProbeParametersArgs{
ProbeIntervalInSeconds: pulumi.Int(10),
ProbePath: pulumi.String("/path2"),
ProbeProtocol: cdn.ProbeProtocolNotSet,
ProbeRequestType: cdn.HealthProbeRequestTypeNotSet,
},
LoadBalancingSettings: &cdn.LoadBalancingSettingsParametersArgs{
AdditionalLatencyInMilliseconds: pulumi.Int(1000),
SampleSize: pulumi.Int(3),
SuccessfulSamplesRequired: pulumi.Int(3),
},
OriginGroupName: pulumi.String("origingroup1"),
ProfileName: pulumi.String("profile1"),
ResourceGroupName: pulumi.String("RG"),
TrafficRestorationTimeToHealedOrNewEndpointsInMinutes: pulumi.Int(5),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cdn.AFDOriginGroup;
import com.pulumi.azurenative.cdn.AFDOriginGroupArgs;
import com.pulumi.azurenative.cdn.inputs.HealthProbeParametersArgs;
import com.pulumi.azurenative.cdn.inputs.LoadBalancingSettingsParametersArgs;
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 afdOriginGroup = new AFDOriginGroup("afdOriginGroup", AFDOriginGroupArgs.builder()
.healthProbeSettings(HealthProbeParametersArgs.builder()
.probeIntervalInSeconds(10)
.probePath("/path2")
.probeProtocol("NotSet")
.probeRequestType("NotSet")
.build())
.loadBalancingSettings(LoadBalancingSettingsParametersArgs.builder()
.additionalLatencyInMilliseconds(1000)
.sampleSize(3)
.successfulSamplesRequired(3)
.build())
.originGroupName("origingroup1")
.profileName("profile1")
.resourceGroupName("RG")
.trafficRestorationTimeToHealedOrNewEndpointsInMinutes(5)
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
afd_origin_group = azure_native.cdn.AFDOriginGroup("afdOriginGroup",
health_probe_settings={
"probe_interval_in_seconds": 10,
"probe_path": "/path2",
"probe_protocol": azure_native.cdn.ProbeProtocol.NOT_SET,
"probe_request_type": azure_native.cdn.HealthProbeRequestType.NOT_SET,
},
load_balancing_settings={
"additional_latency_in_milliseconds": 1000,
"sample_size": 3,
"successful_samples_required": 3,
},
origin_group_name="origingroup1",
profile_name="profile1",
resource_group_name="RG",
traffic_restoration_time_to_healed_or_new_endpoints_in_minutes=5)
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const afdOriginGroup = new azure_native.cdn.AFDOriginGroup("afdOriginGroup", {
healthProbeSettings: {
probeIntervalInSeconds: 10,
probePath: "/path2",
probeProtocol: azure_native.cdn.ProbeProtocol.NotSet,
probeRequestType: azure_native.cdn.HealthProbeRequestType.NotSet,
},
loadBalancingSettings: {
additionalLatencyInMilliseconds: 1000,
sampleSize: 3,
successfulSamplesRequired: 3,
},
originGroupName: "origingroup1",
profileName: "profile1",
resourceGroupName: "RG",
trafficRestorationTimeToHealedOrNewEndpointsInMinutes: 5,
});
resources:
afdOriginGroup:
type: azure-native:cdn:AFDOriginGroup
properties:
healthProbeSettings:
probeIntervalInSeconds: 10
probePath: /path2
probeProtocol: NotSet
probeRequestType: NotSet
loadBalancingSettings:
additionalLatencyInMilliseconds: 1000
sampleSize: 3
successfulSamplesRequired: 3
originGroupName: origingroup1
profileName: profile1
resourceGroupName: RG
trafficRestorationTimeToHealedOrNewEndpointsInMinutes: 5
Create AFDOriginGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AFDOriginGroup(name: string, args: AFDOriginGroupArgs, opts?: CustomResourceOptions);
@overload
def AFDOriginGroup(resource_name: str,
args: AFDOriginGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AFDOriginGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
health_probe_settings: Optional[HealthProbeParametersArgs] = None,
load_balancing_settings: Optional[LoadBalancingSettingsParametersArgs] = None,
origin_group_name: Optional[str] = None,
session_affinity_state: Optional[Union[str, EnabledState]] = None,
traffic_restoration_time_to_healed_or_new_endpoints_in_minutes: Optional[int] = None)
func NewAFDOriginGroup(ctx *Context, name string, args AFDOriginGroupArgs, opts ...ResourceOption) (*AFDOriginGroup, error)
public AFDOriginGroup(string name, AFDOriginGroupArgs args, CustomResourceOptions? opts = null)
public AFDOriginGroup(String name, AFDOriginGroupArgs args)
public AFDOriginGroup(String name, AFDOriginGroupArgs args, CustomResourceOptions options)
type: azure-native:cdn:AFDOriginGroup
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 AFDOriginGroupArgs
- 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 AFDOriginGroupArgs
- 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 AFDOriginGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AFDOriginGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AFDOriginGroupArgs
- 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 afdoriginGroupResource = new AzureNative.Cdn.AFDOriginGroup("afdoriginGroupResource", new()
{
ProfileName = "string",
ResourceGroupName = "string",
HealthProbeSettings = new AzureNative.Cdn.Inputs.HealthProbeParametersArgs
{
ProbeIntervalInSeconds = 0,
ProbePath = "string",
ProbeProtocol = AzureNative.Cdn.ProbeProtocol.NotSet,
ProbeRequestType = AzureNative.Cdn.HealthProbeRequestType.NotSet,
},
LoadBalancingSettings = new AzureNative.Cdn.Inputs.LoadBalancingSettingsParametersArgs
{
AdditionalLatencyInMilliseconds = 0,
SampleSize = 0,
SuccessfulSamplesRequired = 0,
},
OriginGroupName = "string",
SessionAffinityState = "string",
TrafficRestorationTimeToHealedOrNewEndpointsInMinutes = 0,
});
example, err := cdn.NewAFDOriginGroup(ctx, "afdoriginGroupResource", &cdn.AFDOriginGroupArgs{
ProfileName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
HealthProbeSettings: &cdn.HealthProbeParametersArgs{
ProbeIntervalInSeconds: pulumi.Int(0),
ProbePath: pulumi.String("string"),
ProbeProtocol: cdn.ProbeProtocolNotSet,
ProbeRequestType: cdn.HealthProbeRequestTypeNotSet,
},
LoadBalancingSettings: &cdn.LoadBalancingSettingsParametersArgs{
AdditionalLatencyInMilliseconds: pulumi.Int(0),
SampleSize: pulumi.Int(0),
SuccessfulSamplesRequired: pulumi.Int(0),
},
OriginGroupName: pulumi.String("string"),
SessionAffinityState: pulumi.String("string"),
TrafficRestorationTimeToHealedOrNewEndpointsInMinutes: pulumi.Int(0),
})
var afdoriginGroupResource = new AFDOriginGroup("afdoriginGroupResource", AFDOriginGroupArgs.builder()
.profileName("string")
.resourceGroupName("string")
.healthProbeSettings(HealthProbeParametersArgs.builder()
.probeIntervalInSeconds(0)
.probePath("string")
.probeProtocol("NotSet")
.probeRequestType("NotSet")
.build())
.loadBalancingSettings(LoadBalancingSettingsParametersArgs.builder()
.additionalLatencyInMilliseconds(0)
.sampleSize(0)
.successfulSamplesRequired(0)
.build())
.originGroupName("string")
.sessionAffinityState("string")
.trafficRestorationTimeToHealedOrNewEndpointsInMinutes(0)
.build());
afdorigin_group_resource = azure_native.cdn.AFDOriginGroup("afdoriginGroupResource",
profile_name="string",
resource_group_name="string",
health_probe_settings={
"probeIntervalInSeconds": 0,
"probePath": "string",
"probeProtocol": azure_native.cdn.ProbeProtocol.NOT_SET,
"probeRequestType": azure_native.cdn.HealthProbeRequestType.NOT_SET,
},
load_balancing_settings={
"additionalLatencyInMilliseconds": 0,
"sampleSize": 0,
"successfulSamplesRequired": 0,
},
origin_group_name="string",
session_affinity_state="string",
traffic_restoration_time_to_healed_or_new_endpoints_in_minutes=0)
const afdoriginGroupResource = new azure_native.cdn.AFDOriginGroup("afdoriginGroupResource", {
profileName: "string",
resourceGroupName: "string",
healthProbeSettings: {
probeIntervalInSeconds: 0,
probePath: "string",
probeProtocol: azure_native.cdn.ProbeProtocol.NotSet,
probeRequestType: azure_native.cdn.HealthProbeRequestType.NotSet,
},
loadBalancingSettings: {
additionalLatencyInMilliseconds: 0,
sampleSize: 0,
successfulSamplesRequired: 0,
},
originGroupName: "string",
sessionAffinityState: "string",
trafficRestorationTimeToHealedOrNewEndpointsInMinutes: 0,
});
type: azure-native:cdn:AFDOriginGroup
properties:
healthProbeSettings:
probeIntervalInSeconds: 0
probePath: string
probeProtocol: NotSet
probeRequestType: NotSet
loadBalancingSettings:
additionalLatencyInMilliseconds: 0
sampleSize: 0
successfulSamplesRequired: 0
originGroupName: string
profileName: string
resourceGroupName: string
sessionAffinityState: string
trafficRestorationTimeToHealedOrNewEndpointsInMinutes: 0
AFDOriginGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AFDOriginGroup resource accepts the following input properties:
- Profile
Name string - Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Health
Probe Pulumi.Settings Azure Native. Cdn. Inputs. Health Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- Load
Balancing Pulumi.Settings Azure Native. Cdn. Inputs. Load Balancing Settings Parameters - Load balancing settings for a backend pool
- Origin
Group stringName - Name of the origin group which is unique within the endpoint.
- Session
Affinity string | Pulumi.State Azure Native. Cdn. Enabled State - Whether to allow session affinity on this host. Valid options are 'Enabled' or 'Disabled'
- Traffic
Restoration intTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- Profile
Name string - Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
- Resource
Group stringName - Name of the Resource group within the Azure subscription.
- Health
Probe HealthSettings Probe Parameters Args - Health probe settings to the origin that is used to determine the health of the origin.
- Load
Balancing LoadSettings Balancing Settings Parameters Args - Load balancing settings for a backend pool
- Origin
Group stringName - Name of the origin group which is unique within the endpoint.
- Session
Affinity string | EnabledState State - Whether to allow session affinity on this host. Valid options are 'Enabled' or 'Disabled'
- Traffic
Restoration intTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- profile
Name String - Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- health
Probe HealthSettings Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- load
Balancing LoadSettings Balancing Settings Parameters - Load balancing settings for a backend pool
- origin
Group StringName - Name of the origin group which is unique within the endpoint.
- session
Affinity String | EnabledState State - Whether to allow session affinity on this host. Valid options are 'Enabled' or 'Disabled'
- traffic
Restoration IntegerTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- profile
Name string - Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
- resource
Group stringName - Name of the Resource group within the Azure subscription.
- health
Probe HealthSettings Probe Parameters - Health probe settings to the origin that is used to determine the health of the origin.
- load
Balancing LoadSettings Balancing Settings Parameters - Load balancing settings for a backend pool
- origin
Group stringName - Name of the origin group which is unique within the endpoint.
- session
Affinity string | EnabledState State - Whether to allow session affinity on this host. Valid options are 'Enabled' or 'Disabled'
- traffic
Restoration numberTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- profile_
name str - Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
- resource_
group_ strname - Name of the Resource group within the Azure subscription.
- health_
probe_ Healthsettings Probe Parameters Args - Health probe settings to the origin that is used to determine the health of the origin.
- load_
balancing_ Loadsettings Balancing Settings Parameters Args - Load balancing settings for a backend pool
- origin_
group_ strname - Name of the origin group which is unique within the endpoint.
- session_
affinity_ str | Enabledstate State - Whether to allow session affinity on this host. Valid options are 'Enabled' or 'Disabled'
- traffic_
restoration_ inttime_ to_ healed_ or_ new_ endpoints_ in_ minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
- profile
Name String - Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.
- resource
Group StringName - Name of the Resource group within the Azure subscription.
- health
Probe Property MapSettings - Health probe settings to the origin that is used to determine the health of the origin.
- load
Balancing Property MapSettings - Load balancing settings for a backend pool
- origin
Group StringName - Name of the origin group which is unique within the endpoint.
- session
Affinity String | "Enabled" | "Disabled"State - Whether to allow session affinity on this host. Valid options are 'Enabled' or 'Disabled'
- traffic
Restoration NumberTime To Healed Or New Endpoints In Minutes - Time in minutes to shift the traffic to the endpoint gradually when an unhealthy endpoint comes healthy or a new endpoint is added. Default is 10 mins. This property is currently not supported.
Outputs
All input properties are implicitly available as output properties. Additionally, the AFDOriginGroup resource produces the following output properties:
- Deployment
Status string - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning status
- System
Data Pulumi.Azure Native. Cdn. Outputs. System Data Response - Read only system data
- Type string
- Resource type.
- Deployment
Status string - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning status
- System
Data SystemData Response - Read only system data
- Type string
- Resource type.
- deployment
Status String - id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning status
- system
Data SystemData Response - Read only system data
- type String
- Resource type.
- deployment
Status string - id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioning
State string - Provisioning status
- system
Data SystemData Response - Read only system data
- type string
- Resource type.
- deployment_
status str - id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_
state str - Provisioning status
- system_
data SystemData Response - Read only system data
- type str
- Resource type.
- deployment
Status String - id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning status
- system
Data Property Map - Read only system data
- type String
- Resource type.
Supporting Types
EnabledState, EnabledStateArgs
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
State Enabled - Enabled
- Enabled
State Disabled - Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
HealthProbeParameters, HealthProbeParametersArgs
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol Pulumi.Azure Native. Cdn. Probe Protocol - Protocol to use for health probe.
- Probe
Request Pulumi.Type Azure Native. Cdn. Health Probe Request Type - The type of health probe request that is made.
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol ProbeProtocol - Protocol to use for health probe.
- Probe
Request HealthType Probe Request Type - The type of health probe request that is made.
- probe
Interval IntegerIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol ProbeProtocol - Protocol to use for health probe.
- probe
Request HealthType Probe Request Type - The type of health probe request that is made.
- probe
Interval numberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol ProbeProtocol - Protocol to use for health probe.
- probe
Request HealthType Probe Request Type - The type of health probe request that is made.
- probe_
interval_ intin_ seconds - The number of seconds between health probes.Default is 240sec.
- probe_
path str - The path relative to the origin that is used to determine the health of the origin.
- probe_
protocol ProbeProtocol - Protocol to use for health probe.
- probe_
request_ Healthtype Probe Request Type - The type of health probe request that is made.
- probe
Interval NumberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol "NotSet" | "Http" | "Https" - Protocol to use for health probe.
- probe
Request "NotType Set" | "GET" | "HEAD" - The type of health probe request that is made.
HealthProbeParametersResponse, HealthProbeParametersResponseArgs
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol string - Protocol to use for health probe.
- Probe
Request stringType - The type of health probe request that is made.
- Probe
Interval intIn Seconds - The number of seconds between health probes.Default is 240sec.
- Probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- Probe
Protocol string - Protocol to use for health probe.
- Probe
Request stringType - The type of health probe request that is made.
- probe
Interval IntegerIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol String - Protocol to use for health probe.
- probe
Request StringType - The type of health probe request that is made.
- probe
Interval numberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path string - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol string - Protocol to use for health probe.
- probe
Request stringType - The type of health probe request that is made.
- probe_
interval_ intin_ seconds - The number of seconds between health probes.Default is 240sec.
- probe_
path str - The path relative to the origin that is used to determine the health of the origin.
- probe_
protocol str - Protocol to use for health probe.
- probe_
request_ strtype - The type of health probe request that is made.
- probe
Interval NumberIn Seconds - The number of seconds between health probes.Default is 240sec.
- probe
Path String - The path relative to the origin that is used to determine the health of the origin.
- probe
Protocol String - Protocol to use for health probe.
- probe
Request StringType - The type of health probe request that is made.
HealthProbeRequestType, HealthProbeRequestTypeArgs
- Not
Set - NotSet
- GET
- GET
- HEAD
- HEAD
- Health
Probe Request Type Not Set - NotSet
- Health
Probe Request Type GET - GET
- Health
Probe Request Type HEAD - HEAD
- Not
Set - NotSet
- GET
- GET
- HEAD
- HEAD
- Not
Set - NotSet
- GET
- GET
- HEAD
- HEAD
- NOT_SET
- NotSet
- GET
- GET
- HEAD
- HEAD
- "Not
Set" - NotSet
- "GET"
- GET
- "HEAD"
- HEAD
LoadBalancingSettingsParameters, LoadBalancingSettingsParametersArgs
- Additional
Latency intIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- Sample
Size int - The number of samples to consider for load balancing decisions
- Successful
Samples intRequired - The number of samples within the sample period that must succeed
- Additional
Latency intIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- Sample
Size int - The number of samples to consider for load balancing decisions
- Successful
Samples intRequired - The number of samples within the sample period that must succeed
- additional
Latency IntegerIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample
Size Integer - The number of samples to consider for load balancing decisions
- successful
Samples IntegerRequired - The number of samples within the sample period that must succeed
- additional
Latency numberIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample
Size number - The number of samples to consider for load balancing decisions
- successful
Samples numberRequired - The number of samples within the sample period that must succeed
- additional_
latency_ intin_ milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample_
size int - The number of samples to consider for load balancing decisions
- successful_
samples_ intrequired - The number of samples within the sample period that must succeed
- additional
Latency NumberIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample
Size Number - The number of samples to consider for load balancing decisions
- successful
Samples NumberRequired - The number of samples within the sample period that must succeed
LoadBalancingSettingsParametersResponse, LoadBalancingSettingsParametersResponseArgs
- Additional
Latency intIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- Sample
Size int - The number of samples to consider for load balancing decisions
- Successful
Samples intRequired - The number of samples within the sample period that must succeed
- Additional
Latency intIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- Sample
Size int - The number of samples to consider for load balancing decisions
- Successful
Samples intRequired - The number of samples within the sample period that must succeed
- additional
Latency IntegerIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample
Size Integer - The number of samples to consider for load balancing decisions
- successful
Samples IntegerRequired - The number of samples within the sample period that must succeed
- additional
Latency numberIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample
Size number - The number of samples to consider for load balancing decisions
- successful
Samples numberRequired - The number of samples within the sample period that must succeed
- additional_
latency_ intin_ milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample_
size int - The number of samples to consider for load balancing decisions
- successful_
samples_ intrequired - The number of samples within the sample period that must succeed
- additional
Latency NumberIn Milliseconds - The additional latency in milliseconds for probes to fall into the lowest latency bucket
- sample
Size Number - The number of samples to consider for load balancing decisions
- successful
Samples NumberRequired - The number of samples within the sample period that must succeed
ProbeProtocol, ProbeProtocolArgs
- Not
Set - NotSet
- Http
- Http
- Https
- Https
- Probe
Protocol Not Set - NotSet
- Probe
Protocol Http - Http
- Probe
Protocol Https - Https
- Not
Set - NotSet
- Http
- Http
- Https
- Https
- Not
Set - NotSet
- Http
- Http
- Https
- Https
- NOT_SET
- NotSet
- HTTP
- Http
- HTTPS
- Https
- "Not
Set" - NotSet
- "Http"
- Http
- "Https"
- Https
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- Created
At string - The timestamp of resource creation (UTC)
- Created
By string - An identifier for the identity that created the resource
- Created
By stringType - The type of identity that created the resource
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - An identifier for the identity that last modified the resource
- Last
Modified stringBy Type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
- created
At string - The timestamp of resource creation (UTC)
- created
By string - An identifier for the identity that created the resource
- created
By stringType - The type of identity that created the resource
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - An identifier for the identity that last modified the resource
- last
Modified stringBy Type - The type of identity that last modified the resource
- created_
at str - The timestamp of resource creation (UTC)
- created_
by str - An identifier for the identity that created the resource
- created_
by_ strtype - The type of identity that created the resource
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - An identifier for the identity that last modified the resource
- last_
modified_ strby_ type - The type of identity that last modified the resource
- created
At String - The timestamp of resource creation (UTC)
- created
By String - An identifier for the identity that created the resource
- created
By StringType - The type of identity that created the resource
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - An identifier for the identity that last modified the resource
- last
Modified StringBy Type - The type of identity that last modified the resource
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cdn:AFDOriginGroup origingroup1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/originGroups/{originGroupName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0