Edit

Share via


New-AzFrontDoorCdnCustomDomainTlsSettingParametersObject

Create an in-memory object for AfdDomainHttpsParameters.

Syntax

New-AzFrontDoorCdnCustomDomainTlsSettingParametersObject
   -CertificateType <String>
   [-CipherSuiteSetType <String>]
   [-CustomizedCipherSuiteSet <IAfdDomainHttpsCustomizedCipherSuiteSet>]
   [-MinimumTlsVersion <String>]
   [-Secret <IResourceReference>]
   [<CommonParameters>]

Description

Create an in-memory object for AfdDomainHttpsParameters.

Examples

Example 1: Create an in-memory object for AFDDomainHttpsParameters

$secret =  Get-AzFrontDoorCdnSecret -ResourceGroupName testps-rg-da16jm -ProfileName fdp-v542q6 -Name secret001
$secretResource = New-AzFrontDoorCdnResourceReferenceObject -Id $secret.Id
New-AzFrontDoorCdnCustomDomainTlsSettingParametersObject -CertificateType "CustomerCertificate" -MinimumTlsVersion "TLS12" -Secret $secretResource

CertificateType     MinimumTlsVersion
---------------     -----------------
CustomerCertificate TLS12

Create an in-memory object for AFDDomainHttpsParameters

Parameters

-CertificateType

Defines the source of the SSL certificate.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-CipherSuiteSetType

cipher suite set type that will be used for Https.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-CustomizedCipherSuiteSet

Customized cipher suites object that will be used for Https when cipherSuiteSetType is Customized.

Type:IAfdDomainHttpsCustomizedCipherSuiteSet
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-MinimumTlsVersion

TLS protocol version that will be used for Https when cipherSuiteSetType is Customized.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Secret

Resource reference to the secret. ie. subs/rg/profile/secret.

Type:IResourceReference
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

Outputs

AfdDomainHttpsParameters