azure-native.cdn.AFDOrigin
Explore with Pulumi AI
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.
Other available API versions: 2023-07-01-preview, 2024-02-01, 2024-05-01-preview, 2024-06-01-preview.
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 = AzureNative.Cdn.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 (
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.NewAFDOrigin(ctx, "afdOrigin", &cdn.AFDOriginArgs{
EnabledState: pulumi.String(cdn.EnabledStateEnabled),
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=azure_native.cdn.EnabledState.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: azure_native.cdn.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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AFDOrigin(name: string, args: AFDOriginArgs, opts?: CustomResourceOptions);
@overload
def AFDOrigin(resource_name: str,
args: AFDOriginArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AFDOrigin(resource_name: str,
opts: Optional[ResourceOptions] = None,
origin_group_name: Optional[str] = None,
profile_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
host_name: Optional[str] = None,
azure_origin: Optional[ResourceReferenceArgs] = None,
https_port: Optional[int] = None,
enabled_state: Optional[Union[str, EnabledState]] = None,
origin_host_header: Optional[str] = None,
http_port: Optional[int] = None,
priority: Optional[int] = None,
origin_name: Optional[str] = None,
enforce_certificate_name_check: Optional[bool] = None,
shared_private_link_resource: Optional[SharedPrivateLinkResourcePropertiesArgs] = None,
weight: Optional[int] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var afdoriginResource = new AzureNative.Cdn.AFDOrigin("afdoriginResource", new()
{
OriginGroupName = "string",
ProfileName = "string",
ResourceGroupName = "string",
HostName = "string",
AzureOrigin = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "string",
},
HttpsPort = 0,
EnabledState = "string",
OriginHostHeader = "string",
HttpPort = 0,
Priority = 0,
OriginName = "string",
EnforceCertificateNameCheck = false,
SharedPrivateLinkResource = new AzureNative.Cdn.Inputs.SharedPrivateLinkResourcePropertiesArgs
{
GroupId = "string",
PrivateLink = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
{
Id = "string",
},
PrivateLinkLocation = "string",
RequestMessage = "string",
Status = AzureNative.Cdn.SharedPrivateLinkResourceStatus.Pending,
},
Weight = 0,
});
example, err := cdn.NewAFDOrigin(ctx, "afdoriginResource", &cdn.AFDOriginArgs{
OriginGroupName: pulumi.String("string"),
ProfileName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
HostName: pulumi.String("string"),
AzureOrigin: &cdn.ResourceReferenceArgs{
Id: pulumi.String("string"),
},
HttpsPort: pulumi.Int(0),
EnabledState: pulumi.String("string"),
OriginHostHeader: pulumi.String("string"),
HttpPort: pulumi.Int(0),
Priority: pulumi.Int(0),
OriginName: pulumi.String("string"),
EnforceCertificateNameCheck: pulumi.Bool(false),
SharedPrivateLinkResource: &cdn.SharedPrivateLinkResourcePropertiesArgs{
GroupId: pulumi.String("string"),
PrivateLink: &cdn.ResourceReferenceArgs{
Id: pulumi.String("string"),
},
PrivateLinkLocation: pulumi.String("string"),
RequestMessage: pulumi.String("string"),
Status: cdn.SharedPrivateLinkResourceStatusPending,
},
Weight: pulumi.Int(0),
})
var afdoriginResource = new AFDOrigin("afdoriginResource", AFDOriginArgs.builder()
.originGroupName("string")
.profileName("string")
.resourceGroupName("string")
.hostName("string")
.azureOrigin(ResourceReferenceArgs.builder()
.id("string")
.build())
.httpsPort(0)
.enabledState("string")
.originHostHeader("string")
.httpPort(0)
.priority(0)
.originName("string")
.enforceCertificateNameCheck(false)
.sharedPrivateLinkResource(SharedPrivateLinkResourcePropertiesArgs.builder()
.groupId("string")
.privateLink(ResourceReferenceArgs.builder()
.id("string")
.build())
.privateLinkLocation("string")
.requestMessage("string")
.status("Pending")
.build())
.weight(0)
.build());
afdorigin_resource = azure_native.cdn.AFDOrigin("afdoriginResource",
origin_group_name="string",
profile_name="string",
resource_group_name="string",
host_name="string",
azure_origin={
"id": "string",
},
https_port=0,
enabled_state="string",
origin_host_header="string",
http_port=0,
priority=0,
origin_name="string",
enforce_certificate_name_check=False,
shared_private_link_resource={
"groupId": "string",
"privateLink": {
"id": "string",
},
"privateLinkLocation": "string",
"requestMessage": "string",
"status": azure_native.cdn.SharedPrivateLinkResourceStatus.PENDING,
},
weight=0)
const afdoriginResource = new azure_native.cdn.AFDOrigin("afdoriginResource", {
originGroupName: "string",
profileName: "string",
resourceGroupName: "string",
hostName: "string",
azureOrigin: {
id: "string",
},
httpsPort: 0,
enabledState: "string",
originHostHeader: "string",
httpPort: 0,
priority: 0,
originName: "string",
enforceCertificateNameCheck: false,
sharedPrivateLinkResource: {
groupId: "string",
privateLink: {
id: "string",
},
privateLinkLocation: "string",
requestMessage: "string",
status: azure_native.cdn.SharedPrivateLinkResourceStatus.Pending,
},
weight: 0,
});
type: azure-native:cdn:AFDOrigin
properties:
azureOrigin:
id: string
enabledState: string
enforceCertificateNameCheck: false
hostName: string
httpPort: 0
httpsPort: 0
originGroupName: string
originHostHeader: string
originName: string
priority: 0
profileName: string
resourceGroupName: string
sharedPrivateLinkResource:
groupId: string
privateLink:
id: string
privateLinkLocation: string
requestMessage: string
status: Pending
weight: 0
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:
- Host
Name 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.
- Origin
Group stringName - Name of the origin group which is unique within the profile.
- 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.
- Azure
Origin Pulumi.Azure Native. Cdn. Inputs. Resource Reference - Resource reference to the Azure origin resource.
- Enabled
State string | Pulumi.Azure Native. Cdn. Enabled State - 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 boolName Check - 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 stringHeader - 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 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
- Pulumi.
Azure Native. Cdn. Inputs. Shared Private Link Resource Properties - 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
- Host
Name 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.
- Origin
Group stringName - Name of the origin group which is unique within the profile.
- 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.
- Azure
Origin ResourceReference Args - Resource reference to the Azure origin resource.
- Enabled
State 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.
- Enforce
Certificate boolName Check - 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 stringHeader - 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 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
- Shared
Private Link Resource Properties Args - 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
- host
Name 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.
- origin
Group StringName - Name of the origin group which is unique within the profile.
- 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.
- azure
Origin ResourceReference - Resource reference to the Azure origin resource.
- enabled
State 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.
- enforce
Certificate BooleanName Check - Whether to enable certificate name check at origin level
- http
Port Integer - The value of the HTTP port. Must be between 1 and 65535.
- https
Port Integer - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host StringHeader - 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 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
- Shared
Private Link Resource Properties - 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
- host
Name 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.
- origin
Group stringName - Name of the origin group which is unique within the profile.
- 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.
- azure
Origin ResourceReference - Resource reference to the Azure origin resource.
- enabled
State 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.
- enforce
Certificate booleanName Check - Whether to enable certificate name check at origin level
- http
Port number - The value of the HTTP port. Must be between 1 and 65535.
- https
Port number - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host stringHeader - 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 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
- Shared
Private Link Resource Properties - 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_ strname - 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_ strname - Name of the Resource group within the Azure subscription.
- azure_
origin ResourceReference Args - 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_ boolname_ check - 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_ strheader - 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 Properties Args - 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
- host
Name 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.
- origin
Group StringName - Name of the origin group which is unique within the profile.
- 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.
- azure
Origin Property Map - Resource reference to the Azure origin resource.
- enabled
State 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.
- enforce
Certificate BooleanName Check - Whether to enable certificate name check at origin level
- http
Port Number - The value of the HTTP port. Must be between 1 and 65535.
- https
Port Number - The value of the HTTPS port. Must be between 1 and 65535.
- origin
Host StringHeader - 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 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
- 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:
- 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
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
- Group
Id string - The group id from the provider of resource the shared private link resource is for.
- Private
Link Pulumi.Azure Native. Cdn. Inputs. Resource Reference - The resource id of the resource the shared private link resource is for.
- Private
Link stringLocation - The location of the shared private link resource
- Request
Message string - The request message for requesting approval of the shared private link resource.
- Status
Pulumi.
Azure Native. Cdn. Shared Private Link Resource Status - Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.
- Group
Id string - 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 stringLocation - The location of the shared private link resource
- Request
Message string - The request message for requesting approval of the shared private link resource.
- Status
Shared
Private Link Resource Status - Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.
- group
Id String - 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 StringLocation - The location of the shared private link resource
- request
Message String - The request message for requesting approval of the shared private link resource.
- status
Shared
Private Link Resource Status - Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.
- group
Id string - 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 stringLocation - The location of the shared private link resource
- request
Message string - The request message for requesting approval of the shared private link resource.
- status
Shared
Private Link Resource Status - 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_ strlocation - The location of the shared private link resource
- request_
message str - The request message for requesting approval of the shared private link resource.
- status
Shared
Private Link Resource Status - Status of the shared private link resource. Can be Pending, Approved, Rejected, Disconnected, or Timeout.
- group
Id String - The group id from the provider of resource the shared private link resource is for.
- private
Link Property Map - The resource id of the resource the shared private link resource is for.
- private
Link StringLocation - The location of the shared private link resource
- request
Message 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
- Group
Id string - The group id from the provider of resource the shared private link resource is for.
- Private
Link Pulumi.Azure Native. Cdn. Inputs. Resource Reference Response - The resource id of the resource the shared private link resource is for.
- Private
Link stringLocation - The location of the shared private link resource
- Request
Message 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 string - The group id from the provider of resource the shared private link resource is for.
- Private
Link ResourceReference Response - The resource id of the resource the shared private link resource is for.
- Private
Link stringLocation - The location of the shared private link resource
- Request
Message 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 String - The group id from the provider of resource the shared private link resource is for.
- private
Link ResourceReference Response - The resource id of the resource the shared private link resource is for.
- private
Link StringLocation - The location of the shared private link resource
- request
Message 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 string - The group id from the provider of resource the shared private link resource is for.
- private
Link ResourceReference Response - The resource id of the resource the shared private link resource is for.
- private
Link stringLocation - The location of the shared private link resource
- request
Message 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 ResourceReference Response - The resource id of the resource the shared private link resource is for.
- private_
link_ strlocation - 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.
- group
Id String - The group id from the provider of resource the shared private link resource is for.
- private
Link Property Map - The resource id of the resource the shared private link resource is for.
- private
Link StringLocation - The location of the shared private link resource
- request
Message 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
- Shared
Private Link Resource Status Pending - Pending
- Shared
Private Link Resource Status Approved - Approved
- Shared
Private Link Resource Status Rejected - Rejected
- Shared
Private Link Resource Status Disconnected - Disconnected
- Shared
Private Link Resource Status 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
- "Pending"
- Pending
- "Approved"
- Approved
- "Rejected"
- Rejected
- "Disconnected"
- Disconnected
- "Timeout"
- Timeout
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:AFDOrigin origin1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/originGroups/{originGroupName}/origins/{originName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0