사용자 지정 도메인의 https 배달을 사용하도록 설정합니다.
POST https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cdn/profiles/{profileName}/endpoints/{endpointName}/customDomains/{customDomainName}/enableCustomHttps?api-version=2024-02-01
URI 매개 변수
Name |
In(다음 안에) |
필수 |
형식 |
Description |
customDomainName
|
path |
True
|
string
|
엔드포인트 내의 사용자 지정 도메인 이름입니다.
|
endpointName
|
path |
True
|
string
|
전역적으로 고유한 프로필 아래의 엔드포인트 이름입니다.
|
profileName
|
path |
True
|
string
|
리소스 그룹 내에서 고유한 CDN 프로필의 이름입니다.
|
resourceGroupName
|
path |
True
|
string
|
Azure 구독 내의 리소스 그룹 이름입니다.
regex 패턴: ^[-\w\._\(\)]+$
|
subscriptionId
|
path |
True
|
string
|
Azure 구독 ID입니다.
|
api-version
|
query |
True
|
string
|
클라이언트 요청과 함께 사용할 API의 버전입니다. 현재 버전은 2024-02-01입니다.
|
요청 본문
요청 본문은 다음 중 하나가 될 수 있습니다.
CdnManagedHttpsParameters
SSL을 사용하도록 설정하기 위해 CDN 관리 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
Name |
필수 |
형식 |
Description |
certificateSource
|
True
|
string:
Cdn
|
SSL 인증서의 원본을 정의합니다.
|
certificateSourceParameters
|
True
|
CdnCertificateSourceParameters
|
SSL을 사용하도록 설정하기 위해 CDN 관리 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
|
protocolType
|
True
|
ProtocolType
|
보안 전달에 사용되는 TLS 확장 프로토콜을 정의합니다.
|
minimumTlsVersion
|
|
MinimumTlsVersion
|
Https에 사용할 TLS 프로토콜 버전
|
UserManagedHttpsParameters
SSL을 사용하도록 설정하기 위해 사용자의 keyvault 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
Name |
필수 |
형식 |
Description |
certificateSource
|
True
|
string:
AzureKeyVault
|
SSL 인증서의 원본을 정의합니다.
|
certificateSourceParameters
|
True
|
KeyVaultCertificateSourceParameters
|
SSL을 사용하도록 설정하기 위해 사용자의 keyvault 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
|
protocolType
|
True
|
ProtocolType
|
보안 전달에 사용되는 TLS 확장 프로토콜을 정의합니다.
|
minimumTlsVersion
|
|
MinimumTlsVersion
|
Https에 사용할 TLS 프로토콜 버전
|
응답
Name |
형식 |
Description |
200 OK
|
CustomDomain
|
OK. 요청이 성공했습니다.
|
202 Accepted
|
CustomDomain
|
수락되고 작업이 비동기적으로 완료됩니다.
헤더
location: string
|
Other Status Codes
|
ErrorResponse
|
작업이 실패한 이유를 설명하는 CDN 오류 응답입니다.
|
보안
azure_auth
Azure Active Directory OAuth2 Flow.
형식:
oauth2
Flow:
implicit
권한 부여 URL:
https://login.microsoftonline.com/common/oauth2/authorize
범위
Name |
Description |
user_impersonation
|
사용자 계정 가장
|
예제
CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate
샘플 요청
POST https://management.azure.com/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customDomains/www-someDomain-net/enableCustomHttps?api-version=2024-02-01
/**
* Samples for CustomDomains EnableCustomHttps.
*/
public final class Main {
/*
* x-ms-original-file: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/
* CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate.json
*/
/**
* Sample code: CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void
customDomainsEnableCustomHttpsUsingCDNManagedCertificate(com.azure.resourcemanager.AzureResourceManager azure) {
azure.cdnProfiles().manager().serviceClient().getCustomDomains().enableCustomHttps("RG", "profile1",
"endpoint1", "www-someDomain-net", null, com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
from azure.identity import DefaultAzureCredential
from azure.mgmt.cdn import CdnManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-cdn
# USAGE
python custom_domains_enable_custom_https_using_cdn_managed_certificate.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = CdnManagementClient(
credential=DefaultAzureCredential(),
subscription_id="subid",
)
response = client.custom_domains.begin_enable_custom_https(
resource_group_name="RG",
profile_name="profile1",
endpoint_name="endpoint1",
custom_domain_name="www-someDomain-net",
).result()
print(response)
# x-ms-original-file: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armcdn_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cdn/armcdn/v2"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate.json
func ExampleCustomDomainsClient_BeginEnableCustomHTTPS_customDomainsEnableCustomHttpsUsingCdnManagedCertificate() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armcdn.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewCustomDomainsClient().BeginEnableCustomHTTPS(ctx, "RG", "profile1", "endpoint1", "www-someDomain-net", &armcdn.CustomDomainsClientBeginEnableCustomHTTPSOptions{CustomDomainHTTPSParameters: nil})
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.CustomDomain = armcdn.CustomDomain{
// Name: to.Ptr("www-someDomain-net"),
// Type: to.Ptr("Microsoft.Cdn/profiles/endpoints/customdomains"),
// ID: to.Ptr("/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customdomains/www-someDomain-net"),
// Properties: &armcdn.CustomDomainProperties{
// CustomHTTPSProvisioningState: to.Ptr(armcdn.CustomHTTPSProvisioningStateEnabled),
// CustomHTTPSProvisioningSubstate: to.Ptr(armcdn.CustomHTTPSProvisioningSubstateCertificateDeployed),
// HostName: to.Ptr("www.someDomain.net"),
// ProvisioningState: to.Ptr(armcdn.CustomHTTPSProvisioningState("Succeeded")),
// ResourceState: to.Ptr(armcdn.CustomDomainResourceStateActive),
// ValidationData: to.Ptr("validationdata"),
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { CdnManagementClient } = require("@azure/arm-cdn");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Enable https delivery of the custom domain.
*
* @summary Enable https delivery of the custom domain.
* x-ms-original-file: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate.json
*/
async function customDomainsEnableCustomHttpsUsingCdnManagedCertificate() {
const subscriptionId = process.env["CDN_SUBSCRIPTION_ID"] || "subid";
const resourceGroupName = process.env["CDN_RESOURCE_GROUP"] || "RG";
const profileName = "profile1";
const endpointName = "endpoint1";
const customDomainName = "www-someDomain-net";
const credential = new DefaultAzureCredential();
const client = new CdnManagementClient(credential, subscriptionId);
const result = await client.customDomains.beginEnableCustomHttpsAndWait(
resourceGroupName,
profileName,
endpointName,
customDomainName,
);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
using Azure;
using Azure.ResourceManager;
using System;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Identity;
using Azure.ResourceManager.Cdn.Models;
using Azure.ResourceManager.Cdn;
// Generated from example definition: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingCDNManagedCertificate.json
// this example is just showing the usage of "CdnCustomDomains_EnableCustomHttps" operation, for the dependent resources, they will have to be created separately.
// get your azure access token, for more details of how Azure SDK get your access token, please refer to https://learn.microsoft.com/en-us/dotnet/azure/sdk/authentication?tabs=command-line
TokenCredential cred = new DefaultAzureCredential();
// authenticate your client
ArmClient client = new ArmClient(cred);
// this example assumes you already have this CdnCustomDomainResource created on azure
// for more information of creating CdnCustomDomainResource, please refer to the document of CdnCustomDomainResource
string subscriptionId = "subid";
string resourceGroupName = "RG";
string profileName = "profile1";
string endpointName = "endpoint1";
string customDomainName = "www-someDomain-net";
ResourceIdentifier cdnCustomDomainResourceId = CdnCustomDomainResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, profileName, endpointName, customDomainName);
CdnCustomDomainResource cdnCustomDomain = client.GetCdnCustomDomainResource(cdnCustomDomainResourceId);
// invoke the operation
ArmOperation<CdnCustomDomainResource> lro = await cdnCustomDomain.EnableCustomHttpsAsync(WaitUntil.Completed);
CdnCustomDomainResource result = lro.Value;
// the variable result is a resource, you could call other operations on this instance as well
// but just for demo, we get its data from this resource instance
CdnCustomDomainData resourceData = result.Data;
// for demo we just print out the id
Console.WriteLine($"Succeeded on id: {resourceData.Id}");
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
샘플 응답
{
"name": "www-someDomain-net",
"id": "/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customdomains/www-someDomain-net",
"type": "Microsoft.Cdn/profiles/endpoints/customdomains",
"properties": {
"provisioningState": "Succeeded",
"resourceState": "Active",
"hostName": "www.someDomain.net",
"customHttpsProvisioningState": "Enabled",
"customHttpsProvisioningSubstate": "CertificateDeployed",
"validationData": "validationdata"
}
}
azure-asyncoperation: https://management.azure.com/subscriptions/subid/resourcegroups/resourceGroupName/providers/Microsoft.Cdn/operationresults/operationId?api-version=2024-02-01
{
"name": "www-someDomain-net",
"id": "/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customdomains/www-someDomain-net",
"type": "Microsoft.Cdn/profiles/endpoints/customdomains",
"properties": {
"provisioningState": "Succeeded",
"resourceState": "Active",
"hostName": "www.someDomain.net",
"customHttpsProvisioningState": "Enabling",
"customHttpsProvisioningSubstate": "PendingDomainControlValidationREquestApproval",
"validationData": "validationdata"
}
}
CustomDomains_EnableCustomHttpsUsingYourOwnCertificate
샘플 요청
POST https://management.azure.com/subscriptions/subid/resourceGroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customDomains/www-someDomain-net/enableCustomHttps?api-version=2024-02-01
/**
* Samples for CustomDomains EnableCustomHttps.
*/
public final class Main {
/*
* x-ms-original-file: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/
* CustomDomains_EnableCustomHttpsUsingBYOC.json
*/
/**
* Sample code: CustomDomains_EnableCustomHttpsUsingYourOwnCertificate.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void
customDomainsEnableCustomHttpsUsingYourOwnCertificate(com.azure.resourcemanager.AzureResourceManager azure) {
azure.cdnProfiles().manager().serviceClient().getCustomDomains().enableCustomHttps("RG", "profile1",
"endpoint1", "www-someDomain-net", null, com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
from azure.identity import DefaultAzureCredential
from azure.mgmt.cdn import CdnManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-cdn
# USAGE
python custom_domains_enable_custom_https_using_byoc.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = CdnManagementClient(
credential=DefaultAzureCredential(),
subscription_id="subid",
)
response = client.custom_domains.begin_enable_custom_https(
resource_group_name="RG",
profile_name="profile1",
endpoint_name="endpoint1",
custom_domain_name="www-someDomain-net",
).result()
print(response)
# x-ms-original-file: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingBYOC.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armcdn_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cdn/armcdn/v2"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/92de53a5f1e0e03c94b40475d2135d97148ed014/specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingBYOC.json
func ExampleCustomDomainsClient_BeginEnableCustomHTTPS_customDomainsEnableCustomHttpsUsingYourOwnCertificate() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armcdn.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewCustomDomainsClient().BeginEnableCustomHTTPS(ctx, "RG", "profile1", "endpoint1", "www-someDomain-net", &armcdn.CustomDomainsClientBeginEnableCustomHTTPSOptions{CustomDomainHTTPSParameters: nil})
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.CustomDomain = armcdn.CustomDomain{
// Name: to.Ptr("www-someDomain-net"),
// Type: to.Ptr("Microsoft.Cdn/profiles/endpoints/customdomains"),
// ID: to.Ptr("/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customdomains/www-someDomain-net"),
// Properties: &armcdn.CustomDomainProperties{
// CustomHTTPSProvisioningState: to.Ptr(armcdn.CustomHTTPSProvisioningStateEnabled),
// CustomHTTPSProvisioningSubstate: to.Ptr(armcdn.CustomHTTPSProvisioningSubstateCertificateDeployed),
// HostName: to.Ptr("www.someDomain.net"),
// ProvisioningState: to.Ptr(armcdn.CustomHTTPSProvisioningState("Succeeded")),
// ResourceState: to.Ptr(armcdn.CustomDomainResourceStateActive),
// ValidationData: to.Ptr("validationdata"),
// },
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { CdnManagementClient } = require("@azure/arm-cdn");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Enable https delivery of the custom domain.
*
* @summary Enable https delivery of the custom domain.
* x-ms-original-file: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingBYOC.json
*/
async function customDomainsEnableCustomHttpsUsingYourOwnCertificate() {
const subscriptionId = process.env["CDN_SUBSCRIPTION_ID"] || "subid";
const resourceGroupName = process.env["CDN_RESOURCE_GROUP"] || "RG";
const profileName = "profile1";
const endpointName = "endpoint1";
const customDomainName = "www-someDomain-net";
const credential = new DefaultAzureCredential();
const client = new CdnManagementClient(credential, subscriptionId);
const result = await client.customDomains.beginEnableCustomHttpsAndWait(
resourceGroupName,
profileName,
endpointName,
customDomainName,
);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
using Azure;
using Azure.ResourceManager;
using System;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Identity;
using Azure.ResourceManager.Cdn.Models;
using Azure.ResourceManager.Cdn;
// Generated from example definition: specification/cdn/resource-manager/Microsoft.Cdn/stable/2024-02-01/examples/CustomDomains_EnableCustomHttpsUsingBYOC.json
// this example is just showing the usage of "CdnCustomDomains_EnableCustomHttps" operation, for the dependent resources, they will have to be created separately.
// get your azure access token, for more details of how Azure SDK get your access token, please refer to https://learn.microsoft.com/en-us/dotnet/azure/sdk/authentication?tabs=command-line
TokenCredential cred = new DefaultAzureCredential();
// authenticate your client
ArmClient client = new ArmClient(cred);
// this example assumes you already have this CdnCustomDomainResource created on azure
// for more information of creating CdnCustomDomainResource, please refer to the document of CdnCustomDomainResource
string subscriptionId = "subid";
string resourceGroupName = "RG";
string profileName = "profile1";
string endpointName = "endpoint1";
string customDomainName = "www-someDomain-net";
ResourceIdentifier cdnCustomDomainResourceId = CdnCustomDomainResource.CreateResourceIdentifier(subscriptionId, resourceGroupName, profileName, endpointName, customDomainName);
CdnCustomDomainResource cdnCustomDomain = client.GetCdnCustomDomainResource(cdnCustomDomainResourceId);
// invoke the operation
ArmOperation<CdnCustomDomainResource> lro = await cdnCustomDomain.EnableCustomHttpsAsync(WaitUntil.Completed);
CdnCustomDomainResource result = lro.Value;
// the variable result is a resource, you could call other operations on this instance as well
// but just for demo, we get its data from this resource instance
CdnCustomDomainData resourceData = result.Data;
// for demo we just print out the id
Console.WriteLine($"Succeeded on id: {resourceData.Id}");
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
샘플 응답
{
"name": "www-someDomain-net",
"id": "/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customdomains/www-someDomain-net",
"type": "Microsoft.Cdn/profiles/endpoints/customdomains",
"properties": {
"provisioningState": "Succeeded",
"resourceState": "Active",
"hostName": "www.someDomain.net",
"customHttpsProvisioningState": "Enabled",
"customHttpsProvisioningSubstate": "CertificateDeployed",
"validationData": "validationdata"
}
}
azure-asyncoperation: https://management.azure.com/subscriptions/subid/resourcegroups/resourceGroupName/providers/Microsoft.Cdn/operationresults/operationId?api-version=2024-02-01
{
"name": "www-someDomain-net",
"id": "/subscriptions/subid/resourcegroups/RG/providers/Microsoft.Cdn/profiles/profile1/endpoints/endpoint1/customdomains/www-someDomain-net",
"type": "Microsoft.Cdn/profiles/endpoints/customdomains",
"properties": {
"provisioningState": "Succeeded",
"resourceState": "Active",
"hostName": "www.someDomain.net",
"customHttpsProvisioningState": "Enabling",
"customHttpsProvisioningSubstate": "PendingDomainControlValidationREquestApproval",
"validationData": "validationdata"
}
}
정의
CdnCertificateSourceParameters
사용자 지정 도메인을 보호하기 위해 CDN 관리 인증서를 사용하기 위한 매개 변수를 정의합니다.
CdnManagedHttpsParameters
SSL을 사용하도록 설정하기 위해 CDN 관리 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
Name |
형식 |
Description |
certificateSource
|
string:
Cdn
|
SSL 인증서의 원본을 정의합니다.
|
certificateSourceParameters
|
CdnCertificateSourceParameters
|
SSL을 사용하도록 설정하기 위해 CDN 관리 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
|
minimumTlsVersion
|
MinimumTlsVersion
|
Https에 사용할 TLS 프로토콜 버전
|
protocolType
|
ProtocolType
|
보안 전달에 사용되는 TLS 확장 프로토콜을 정의합니다.
|
CertificateType
사용된 인증서 유형
Name |
형식 |
Description |
Dedicated
|
string
|
|
Shared
|
string
|
|
CustomDomain
고객이 브랜딩 목적으로 제공하는 엔드포인트 호스트 이름에 대한 친숙한 도메인 이름 매핑(예: www.contoso.com).
Name |
형식 |
Description |
id
|
string
|
리소스 ID입니다.
|
name
|
string
|
리소스 이름입니다.
|
properties.customHttpsParameters
|
CustomDomainHttpsParameters:
|
사용자 지정 HTTPS 보안을 위한 인증서 매개 변수
|
properties.customHttpsProvisioningState
|
CustomHttpsProvisioningState
|
사용자 지정 도메인의 프로비전 상태.
|
properties.customHttpsProvisioningSubstate
|
CustomHttpsProvisioningSubstate
|
프로비전 하위 상태는 사용자 지정 HTTPS 사용/비활성화 프로세스의 진행률을 단계별로 보여 줍니다.
|
properties.hostName
|
string
|
사용자 지정 도메인의 호스트 이름입니다. 도메인 이름이어야 합니다.
|
properties.provisioningState
|
CustomHttpsProvisioningState
|
사용자 지정 도메인의 사용자 지정 Https의 프로비전 상태.
|
properties.resourceState
|
CustomDomainResourceState
|
사용자 지정 도메인의 리소스 상태.
|
properties.validationData
|
string
|
로컬 규정 준수 이유로 인해 일부 지역에 CDN을 제공할 때 특별한 유효성 검사 또는 데이터가 필요할 수 있습니다. 예를 들어 중국에서 콘텐츠를 배달하려면 사용자 지정 도메인의 ICP 라이선스 번호가 필요합니다.
|
systemData
|
SystemData
|
시스템 데이터만 읽기
|
type
|
string
|
리소스 종류.
|
CustomDomainResourceState
사용자 지정 도메인의 리소스 상태.
Name |
형식 |
Description |
Active
|
string
|
|
Creating
|
string
|
|
Deleting
|
string
|
|
CustomHttpsProvisioningState
사용자 지정 도메인의 프로비전 상태.
Name |
형식 |
Description |
Disabled
|
string
|
|
Disabling
|
string
|
|
Enabled
|
string
|
|
Enabling
|
string
|
|
Failed
|
string
|
|
CustomHttpsProvisioningSubstate
프로비전 하위 상태는 사용자 지정 HTTPS 사용/비활성화 프로세스의 진행률을 단계별로 보여 줍니다.
Name |
형식 |
Description |
CertificateDeleted
|
string
|
|
CertificateDeployed
|
string
|
|
DeletingCertificate
|
string
|
|
DeployingCertificate
|
string
|
|
DomainControlValidationRequestApproved
|
string
|
|
DomainControlValidationRequestRejected
|
string
|
|
DomainControlValidationRequestTimedOut
|
string
|
|
IssuingCertificate
|
string
|
|
PendingDomainControlValidationREquestApproval
|
string
|
|
SubmittingDomainControlValidationRequest
|
string
|
|
DeleteRule
인증서가 Key Vault 제거될 때 수행해야 하는 작업에 대해 설명합니다.
Name |
형식 |
Description |
NoAction
|
string
|
|
ErrorAdditionalInfo
리소스 관리 오류 추가 정보입니다.
Name |
형식 |
Description |
info
|
object
|
추가 정보입니다.
|
type
|
string
|
추가 정보 유형입니다.
|
ErrorDetail
오류 세부 정보입니다.
Name |
형식 |
Description |
additionalInfo
|
ErrorAdditionalInfo[]
|
오류 추가 정보입니다.
|
code
|
string
|
오류 코드입니다.
|
details
|
ErrorDetail[]
|
오류 세부 정보입니다.
|
message
|
string
|
오류 메시지입니다.
|
target
|
string
|
오류 대상입니다.
|
ErrorResponse
오류 응답
IdentityType
리소스를 만들/수정하는 ID 유형
Name |
형식 |
Description |
application
|
string
|
|
key
|
string
|
|
managedIdentity
|
string
|
|
user
|
string
|
|
KeyVaultCertificateSourceParameters
사용자 지정 도메인을 보호하기 위해 사용자의 KeyVault 인증서를 사용하기 위한 매개 변수에 대해 설명합니다.
Name |
형식 |
Description |
deleteRule
|
DeleteRule
|
인증서가 Key Vault 제거될 때 수행해야 하는 작업에 대해 설명합니다.
|
resourceGroupName
|
string
|
SSL 인증서를 포함하는 사용자 Key Vault 리소스 그룹
|
secretName
|
string
|
Key Vault 전체 인증서 PFX를 나타내는 Key Vault 비밀의 이름입니다.
|
secretVersion
|
string
|
Key Vault Key Vault Secret 버전(GUID)입니다.
|
subscriptionId
|
string
|
SSL 인증서를 포함하는 사용자 Key Vault 구독 ID
|
typeName
|
string:
KeyVaultCertificateSourceParameters
|
|
updateRule
|
UpdateRule
|
인증서가 Key Vault 업데이트될 때 수행해야 하는 작업에 대해 설명합니다.
|
vaultName
|
string
|
SSL 인증서를 포함하는 사용자 Key Vault 이름
|
MinimumTlsVersion
Https에 사용할 TLS 프로토콜 버전
Name |
형식 |
Description |
None
|
string
|
|
TLS10
|
string
|
|
TLS12
|
string
|
|
ProtocolType
보안 전달에 사용되는 TLS 확장 프로토콜을 정의합니다.
Name |
형식 |
Description |
IPBased
|
string
|
|
ServerNameIndication
|
string
|
|
SystemData
시스템 데이터만 읽기
Name |
형식 |
Description |
createdAt
|
string
|
리소스 만들기 타임스탬프(UTC)
|
createdBy
|
string
|
리소스를 만든 ID의 식별자
|
createdByType
|
IdentityType
|
리소스를 만든 ID 유형
|
lastModifiedAt
|
string
|
리소스 마지막 수정의 타임스탬프(UTC)
|
lastModifiedBy
|
string
|
리소스를 마지막으로 수정한 ID의 식별자
|
lastModifiedByType
|
IdentityType
|
리소스를 마지막으로 수정한 ID 유형
|
UpdateRule
인증서가 Key Vault 업데이트될 때 수행해야 하는 작업에 대해 설명합니다.
Name |
형식 |
Description |
NoAction
|
string
|
|
UserManagedHttpsParameters
SSL을 사용하도록 설정하기 위해 사용자의 keyvault 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
Name |
형식 |
Description |
certificateSource
|
string:
AzureKeyVault
|
SSL 인증서의 원본을 정의합니다.
|
certificateSourceParameters
|
KeyVaultCertificateSourceParameters
|
SSL을 사용하도록 설정하기 위해 사용자의 keyvault 인증서를 사용하여 인증서 원본 매개 변수를 정의합니다.
|
minimumTlsVersion
|
MinimumTlsVersion
|
Https에 사용할 TLS 프로토콜 버전
|
protocolType
|
ProtocolType
|
보안 전달에 사용되는 TLS 확장 프로토콜을 정의합니다.
|