1. Packages
  2. Azure Native
  3. API Docs
  4. cdn
  5. AFDOrigin
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

azure-native.cdn.AFDOrigin

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

    Azure Front Door origin is the source of the content being delivered via Azure Front Door. When the edge nodes represented by an endpoint do not have the requested content cached, they attempt to fetch it from one or more of the configured origins. Azure REST API version: 2023-05-01. Prior API version in Azure Native 1.x: 2020-09-01

    Example Usage

    AFDOrigins_Create

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var afdOrigin = new AzureNative.Cdn.AFDOrigin("afdOrigin", new()
        {
            EnabledState = "Enabled",
            HostName = "host1.blob.core.windows.net",
            HttpPort = 80,
            HttpsPort = 443,
            OriginGroupName = "origingroup1",
            OriginHostHeader = "host1.foo.com",
            OriginName = "origin1",
            ProfileName = "profile1",
            ResourceGroupName = "RG",
        });
    
    });
    
    package main
    
    import (
    	"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.NewAFDOrigin(ctx, "afdOrigin", &cdn.AFDOriginArgs{
    			EnabledState:      pulumi.String("Enabled"),
    			HostName:          pulumi.String("host1.blob.core.windows.net"),
    			HttpPort:          pulumi.Int(80),
    			HttpsPort:         pulumi.Int(443),
    			OriginGroupName:   pulumi.String("origingroup1"),
    			OriginHostHeader:  pulumi.String("host1.foo.com"),
    			OriginName:        pulumi.String("origin1"),
    			ProfileName:       pulumi.String("profile1"),
    			ResourceGroupName: pulumi.String("RG"),
    		})
    		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.AFDOrigin;
    import com.pulumi.azurenative.cdn.AFDOriginArgs;
    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 afdOrigin = new AFDOrigin("afdOrigin", AFDOriginArgs.builder()        
                .enabledState("Enabled")
                .hostName("host1.blob.core.windows.net")
                .httpPort(80)
                .httpsPort(443)
                .originGroupName("origingroup1")
                .originHostHeader("host1.foo.com")
                .originName("origin1")
                .profileName("profile1")
                .resourceGroupName("RG")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    afd_origin = azure_native.cdn.AFDOrigin("afdOrigin",
        enabled_state="Enabled",
        host_name="host1.blob.core.windows.net",
        http_port=80,
        https_port=443,
        origin_group_name="origingroup1",
        origin_host_header="host1.foo.com",
        origin_name="origin1",
        profile_name="profile1",
        resource_group_name="RG")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const afdOrigin = new azure_native.cdn.AFDOrigin("afdOrigin", {
        enabledState: "Enabled",
        hostName: "host1.blob.core.windows.net",
        httpPort: 80,
        httpsPort: 443,
        originGroupName: "origingroup1",
        originHostHeader: "host1.foo.com",
        originName: "origin1",
        profileName: "profile1",
        resourceGroupName: "RG",
    });
    
    resources:
      afdOrigin:
        type: azure-native:cdn:AFDOrigin
        properties:
          enabledState: Enabled
          hostName: host1.blob.core.windows.net
          httpPort: 80
          httpsPort: 443
          originGroupName: origingroup1
          originHostHeader: host1.foo.com
          originName: origin1
          profileName: profile1
          resourceGroupName: RG
    

    Create AFDOrigin Resource

    new AFDOrigin(name: string, args: AFDOriginArgs, opts?: CustomResourceOptions);
    @overload
    def AFDOrigin(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  azure_origin: Optional[ResourceReferenceArgs] = None,
                  enabled_state: Optional[Union[str, EnabledState]] = None,
                  enforce_certificate_name_check: Optional[bool] = None,
                  host_name: Optional[str] = None,
                  http_port: Optional[int] = None,
                  https_port: Optional[int] = None,
                  origin_group_name: Optional[str] = None,
                  origin_host_header: Optional[str] = None,
                  origin_name: Optional[str] = None,
                  priority: Optional[int] = None,
                  profile_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  shared_private_link_resource: Optional[SharedPrivateLinkResourcePropertiesArgs] = None,
                  weight: Optional[int] = None)
    @overload
    def AFDOrigin(resource_name: str,
                  args: AFDOriginArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewAFDOrigin(ctx *Context, name string, args AFDOriginArgs, opts ...ResourceOption) (*AFDOrigin, error)
    public AFDOrigin(string name, AFDOriginArgs args, CustomResourceOptions? opts = null)
    public AFDOrigin(String name, AFDOriginArgs args)
    public AFDOrigin(String name, AFDOriginArgs args, CustomResourceOptions options)
    
    type: azure-native:cdn:AFDOrigin
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AFDOriginArgs
    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 AFDOriginArgs
    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 AFDOriginArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AFDOriginArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AFDOriginArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AFDOrigin 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 AFDOrigin resource accepts the following input properties:

    HostName string

    The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.This should be unique across all origins in an endpoint.

    OriginGroupName string

    Name of the origin group which is unique within the profile.

    ProfileName string

    Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.

    ResourceGroupName string

    Name of the Resource group within the Azure subscription.

    AzureOrigin Pulumi.AzureNative.Cdn.Inputs.ResourceReference

    Resource reference to the Azure origin resource.

    EnabledState string | Pulumi.AzureNative.Cdn.EnabledState

    Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool.

    EnforceCertificateNameCheck bool

    Whether to enable certificate name check at origin level

    HttpPort int

    The value of the HTTP port. Must be between 1 and 65535.

    HttpsPort int

    The value of the HTTPS port. Must be between 1 and 65535.

    OriginHostHeader string

    The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure Front Door origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default. This overrides the host header defined at Endpoint

    OriginName string

    Name of the origin that is unique within the profile.

    Priority int

    Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5

    SharedPrivateLinkResource Pulumi.AzureNative.Cdn.Inputs.SharedPrivateLinkResourceProperties

    The properties of the private link resource for private origin.

    Weight int

    Weight of the origin in given origin group for load balancing. Must be between 1 and 1000

    HostName string

    The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.This should be unique across all origins in an endpoint.

    OriginGroupName string

    Name of the origin group which is unique within the profile.

    ProfileName string

    Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.

    ResourceGroupName string

    Name of the Resource group within the Azure subscription.

    AzureOrigin ResourceReferenceArgs

    Resource reference to the Azure origin resource.

    EnabledState string | EnabledState

    Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool.

    EnforceCertificateNameCheck bool

    Whether to enable certificate name check at origin level

    HttpPort int

    The value of the HTTP port. Must be between 1 and 65535.

    HttpsPort int

    The value of the HTTPS port. Must be between 1 and 65535.

    OriginHostHeader string

    The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure Front Door origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default. This overrides the host header defined at Endpoint

    OriginName string

    Name of the origin that is unique within the profile.

    Priority int

    Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5

    SharedPrivateLinkResource SharedPrivateLinkResourcePropertiesArgs

    The properties of the private link resource for private origin.

    Weight int

    Weight of the origin in given origin group for load balancing. Must be between 1 and 1000

    hostName String

    The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.This should be unique across all origins in an endpoint.

    originGroupName String

    Name of the origin group which is unique within the profile.

    profileName String

    Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.

    resourceGroupName String

    Name of the Resource group within the Azure subscription.

    azureOrigin ResourceReference

    Resource reference to the Azure origin resource.

    enabledState String | EnabledState

    Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool.

    enforceCertificateNameCheck Boolean

    Whether to enable certificate name check at origin level

    httpPort Integer

    The value of the HTTP port. Must be between 1 and 65535.

    httpsPort Integer

    The value of the HTTPS port. Must be between 1 and 65535.

    originHostHeader String

    The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure Front Door origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default. This overrides the host header defined at Endpoint

    originName String

    Name of the origin that is unique within the profile.

    priority Integer

    Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5

    sharedPrivateLinkResource SharedPrivateLinkResourceProperties

    The properties of the private link resource for private origin.

    weight Integer

    Weight of the origin in given origin group for load balancing. Must be between 1 and 1000

    hostName string

    The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.This should be unique across all origins in an endpoint.

    originGroupName string

    Name of the origin group which is unique within the profile.

    profileName string

    Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.

    resourceGroupName string

    Name of the Resource group within the Azure subscription.

    azureOrigin ResourceReference

    Resource reference to the Azure origin resource.

    enabledState string | EnabledState

    Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool.

    enforceCertificateNameCheck boolean

    Whether to enable certificate name check at origin level

    httpPort number

    The value of the HTTP port. Must be between 1 and 65535.

    httpsPort number

    The value of the HTTPS port. Must be between 1 and 65535.

    originHostHeader string

    The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure Front Door origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default. This overrides the host header defined at Endpoint

    originName string

    Name of the origin that is unique within the profile.

    priority number

    Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5

    sharedPrivateLinkResource SharedPrivateLinkResourceProperties

    The properties of the private link resource for private origin.

    weight number

    Weight of the origin in given origin group for load balancing. Must be between 1 and 1000

    host_name str

    The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.This should be unique across all origins in an endpoint.

    origin_group_name str

    Name of the origin group which is unique within the profile.

    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_name str

    Name of the Resource group within the Azure subscription.

    azure_origin ResourceReferenceArgs

    Resource reference to the Azure origin resource.

    enabled_state str | EnabledState

    Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool.

    enforce_certificate_name_check bool

    Whether to enable certificate name check at origin level

    http_port int

    The value of the HTTP port. Must be between 1 and 65535.

    https_port int

    The value of the HTTPS port. Must be between 1 and 65535.

    origin_host_header str

    The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure Front Door origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default. This overrides the host header defined at Endpoint

    origin_name str

    Name of the origin that is unique within the profile.

    priority int

    Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5

    shared_private_link_resource SharedPrivateLinkResourcePropertiesArgs

    The properties of the private link resource for private origin.

    weight int

    Weight of the origin in given origin group for load balancing. Must be between 1 and 1000

    hostName String

    The address of the origin. Domain names, IPv4 addresses, and IPv6 addresses are supported.This should be unique across all origins in an endpoint.

    originGroupName String

    Name of the origin group which is unique within the profile.

    profileName String

    Name of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group.

    resourceGroupName String

    Name of the Resource group within the Azure subscription.

    azureOrigin Property Map

    Resource reference to the Azure origin resource.

    enabledState String | "Enabled" | "Disabled"

    Whether to enable health probes to be made against backends defined under backendPools. Health probes can only be disabled if there is a single enabled backend in single enabled backend pool.

    enforceCertificateNameCheck Boolean

    Whether to enable certificate name check at origin level

    httpPort Number

    The value of the HTTP port. Must be between 1 and 65535.

    httpsPort Number

    The value of the HTTPS port. Must be between 1 and 65535.

    originHostHeader String

    The host header value sent to the origin with each request. If you leave this blank, the request hostname determines this value. Azure Front Door origins, such as Web Apps, Blob Storage, and Cloud Services require this host header value to match the origin hostname by default. This overrides the host header defined at Endpoint

    originName String

    Name of the origin that is unique within the profile.

    priority Number

    Priority of origin in given origin group for load balancing. Higher priorities will not be used for load balancing if any lower priority origin is healthy.Must be between 1 and 5

    sharedPrivateLinkResource Property Map

    The properties of the private link resource for private origin.

    weight Number

    Weight of the origin in given origin group for load balancing. Must be between 1 and 1000

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AFDOrigin resource produces the following output properties:

    DeploymentStatus string
    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Resource name.

    ProvisioningState string

    Provisioning status

    SystemData Pulumi.AzureNative.Cdn.Outputs.SystemDataResponse

    Read only system data

    Type string

    Resource type.

    DeploymentStatus string
    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Resource name.

    ProvisioningState string

    Provisioning status

    SystemData SystemDataResponse

    Read only system data

    Type string

    Resource type.

    deploymentStatus String
    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Resource name.

    provisioningState String

    Provisioning status

    systemData SystemDataResponse

    Read only system data

    type String

    Resource type.

    deploymentStatus string
    id string

    The provider-assigned unique ID for this managed resource.

    name string

    Resource name.

    provisioningState string

    Provisioning status

    systemData SystemDataResponse

    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 SystemDataResponse

    Read only system data

    type str

    Resource type.

    deploymentStatus String
    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Resource name.

    provisioningState String

    Provisioning status

    systemData Property Map

    Read only system data

    type String

    Resource type.

    Supporting Types

    EnabledState, EnabledStateArgs

    Enabled
    Enabled
    Disabled
    Disabled
    EnabledStateEnabled
    Enabled
    EnabledStateDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    ResourceReference, ResourceReferenceArgs

    Id string

    Resource ID.

    Id string

    Resource ID.

    id String

    Resource ID.

    id string

    Resource ID.

    id str

    Resource ID.

    id String

    Resource ID.

    ResourceReferenceResponse, ResourceReferenceResponseArgs

    Id string

    Resource ID.

    Id string

    Resource ID.

    id String

    Resource ID.

    id string

    Resource ID.

    id str

    Resource ID.

    id String

    Resource ID.

    SharedPrivateLinkResourceProperties, SharedPrivateLinkResourcePropertiesArgs

    GroupId string

    The group id from the provider of resource the shared private link resource is for.

    PrivateLink Pulumi.AzureNative.Cdn.Inputs.ResourceReference

    The resource id of the resource the shared private link resource is for.

    PrivateLinkLocation string

    The location of the shared private link resource

    RequestMessage string

    The request message for requesting approval of the shared private link resource.

    Status Pulumi.AzureNative.Cdn.SharedPrivateLinkResourceStatus

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    GroupId string

    The group id from the provider of resource the shared private link resource is for.

    PrivateLink ResourceReference

    The resource id of the resource the shared private link resource is for.

    PrivateLinkLocation string

    The location of the shared private link resource

    RequestMessage string

    The request message for requesting approval of the shared private link resource.

    Status SharedPrivateLinkResourceStatus

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    groupId String

    The group id from the provider of resource the shared private link resource is for.

    privateLink ResourceReference

    The resource id of the resource the shared private link resource is for.

    privateLinkLocation String

    The location of the shared private link resource

    requestMessage String

    The request message for requesting approval of the shared private link resource.

    status SharedPrivateLinkResourceStatus

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    groupId string

    The group id from the provider of resource the shared private link resource is for.

    privateLink ResourceReference

    The resource id of the resource the shared private link resource is for.

    privateLinkLocation string

    The location of the shared private link resource

    requestMessage string

    The request message for requesting approval of the shared private link resource.

    status SharedPrivateLinkResourceStatus

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    group_id str

    The group id from the provider of resource the shared private link resource is for.

    private_link ResourceReference

    The resource id of the resource the shared private link resource is for.

    private_link_location str

    The location of the shared private link resource

    request_message str

    The request message for requesting approval of the shared private link resource.

    status SharedPrivateLinkResourceStatus

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    groupId String

    The group id from the provider of resource the shared private link resource is for.

    privateLink Property Map

    The resource id of the resource the shared private link resource is for.

    privateLinkLocation String

    The location of the shared private link resource

    requestMessage String

    The request message for requesting approval of the shared private link resource.

    status "Pending" | "Approved" | "Rejected" | "Disconnected" | "Timeout"

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    SharedPrivateLinkResourcePropertiesResponse, SharedPrivateLinkResourcePropertiesResponseArgs

    GroupId string

    The group id from the provider of resource the shared private link resource is for.

    PrivateLink Pulumi.AzureNative.Cdn.Inputs.ResourceReferenceResponse

    The resource id of the resource the shared private link resource is for.

    PrivateLinkLocation string

    The location of the shared private link resource

    RequestMessage string

    The request message for requesting approval of the shared private link resource.

    Status string

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    GroupId string

    The group id from the provider of resource the shared private link resource is for.

    PrivateLink ResourceReferenceResponse

    The resource id of the resource the shared private link resource is for.

    PrivateLinkLocation string

    The location of the shared private link resource

    RequestMessage string

    The request message for requesting approval of the shared private link resource.

    Status string

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    groupId String

    The group id from the provider of resource the shared private link resource is for.

    privateLink ResourceReferenceResponse

    The resource id of the resource the shared private link resource is for.

    privateLinkLocation String

    The location of the shared private link resource

    requestMessage String

    The request message for requesting approval of the shared private link resource.

    status String

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    groupId string

    The group id from the provider of resource the shared private link resource is for.

    privateLink ResourceReferenceResponse

    The resource id of the resource the shared private link resource is for.

    privateLinkLocation string

    The location of the shared private link resource

    requestMessage string

    The request message for requesting approval of the shared private link resource.

    status string

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    group_id str

    The group id from the provider of resource the shared private link resource is for.

    private_link ResourceReferenceResponse

    The resource id of the resource the shared private link resource is for.

    private_link_location str

    The location of the shared private link resource

    request_message str

    The request message for requesting approval of the shared private link resource.

    status str

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    groupId String

    The group id from the provider of resource the shared private link resource is for.

    privateLink Property Map

    The resource id of the resource the shared private link resource is for.

    privateLinkLocation String

    The location of the shared private link resource

    requestMessage String

    The request message for requesting approval of the shared private link resource.

    status String

    Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.

    SharedPrivateLinkResourceStatus, SharedPrivateLinkResourceStatusArgs

    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    Timeout
    Timeout
    SharedPrivateLinkResourceStatusPending
    Pending
    SharedPrivateLinkResourceStatusApproved
    Approved
    SharedPrivateLinkResourceStatusRejected
    Rejected
    SharedPrivateLinkResourceStatusDisconnected
    Disconnected
    SharedPrivateLinkResourceStatusTimeout
    Timeout
    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    Timeout
    Timeout
    Pending
    Pending
    Approved
    Approved
    Rejected
    Rejected
    Disconnected
    Disconnected
    Timeout
    Timeout
    PENDING
    Pending
    APPROVED
    Approved
    REJECTED
    Rejected
    DISCONNECTED
    Disconnected
    TIMEOUT
    Timeout
    "Pending"
    Pending
    "Approved"
    Approved
    "Rejected"
    Rejected
    "Disconnected"
    Disconnected
    "Timeout"
    Timeout

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string

    The timestamp of resource creation (UTC)

    CreatedBy string

    An identifier for the identity that created the resource

    CreatedByType string

    The type of identity that created the resource

    LastModifiedAt string

    The timestamp of resource last modification (UTC)

    LastModifiedBy string

    An identifier for the identity that last modified the resource

    LastModifiedByType string

    The type of identity that last modified the resource

    CreatedAt string

    The timestamp of resource creation (UTC)

    CreatedBy string

    An identifier for the identity that created the resource

    CreatedByType string

    The type of identity that created the resource

    LastModifiedAt string

    The timestamp of resource last modification (UTC)

    LastModifiedBy string

    An identifier for the identity that last modified the resource

    LastModifiedByType string

    The type of identity that last modified the resource

    createdAt String

    The timestamp of resource creation (UTC)

    createdBy String

    An identifier for the identity that created the resource

    createdByType String

    The type of identity that created the resource

    lastModifiedAt String

    The timestamp of resource last modification (UTC)

    lastModifiedBy String

    An identifier for the identity that last modified the resource

    lastModifiedByType String

    The type of identity that last modified the resource

    createdAt string

    The timestamp of resource creation (UTC)

    createdBy string

    An identifier for the identity that created the resource

    createdByType string

    The type of identity that created the resource

    lastModifiedAt string

    The timestamp of resource last modification (UTC)

    lastModifiedBy string

    An identifier for the identity that last modified the resource

    lastModifiedByType string

    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_type str

    The type of identity that created the resource

    last_modified_at str

    The timestamp of resource last modification (UTC)

    last_modified_by str

    An identifier for the identity that last modified the resource

    last_modified_by_type str

    The type of identity that last modified the resource

    createdAt String

    The timestamp of resource creation (UTC)

    createdBy String

    An identifier for the identity that created the resource

    createdByType String

    The type of identity that created the resource

    lastModifiedAt String

    The timestamp of resource last modification (UTC)

    lastModifiedBy String

    An identifier for the identity that last modified the resource

    lastModifiedByType String

    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:AFDOrigin origin1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/originGroups/{originGroupName}/origins/{originName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi