Esempio n. 1
0
 internal AfdSecretData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, AfdProvisioningState?provisioningState, AfdDeploymentStatus?deploymentStatus, string profileName, SecretParameters parameters) : base(id, name, resourceType, systemData)
 {
     ProvisioningState = provisioningState;
     DeploymentStatus  = deploymentStatus;
     ProfileName       = profileName;
     Parameters        = parameters;
 }
 internal AfdEndpointData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, IDictionary <string, string> tags, AzureLocation location, string profileName, EnabledState?enabledState, AfdProvisioningState?provisioningState, AfdDeploymentStatus?deploymentStatus, string hostName, DomainNameLabelScope?autoGeneratedDomainNameLabelScope) : base(id, name, resourceType, systemData, tags, location)
 {
     ProfileName       = profileName;
     EnabledState      = enabledState;
     ProvisioningState = provisioningState;
     DeploymentStatus  = deploymentStatus;
     HostName          = hostName;
     AutoGeneratedDomainNameLabelScope = autoGeneratedDomainNameLabelScope;
 }
Esempio n. 3
0
 internal AfdRuleData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string ruleSetName, int?order, IList <DeliveryRuleCondition> conditions, IList <DeliveryRuleAction> actions, MatchProcessingBehavior?matchProcessingBehavior, AfdProvisioningState?provisioningState, AfdDeploymentStatus?deploymentStatus) : base(id, name, resourceType, systemData)
 {
     RuleSetName             = ruleSetName;
     Order                   = order;
     Conditions              = conditions;
     Actions                 = actions;
     MatchProcessingBehavior = matchProcessingBehavior;
     ProvisioningState       = provisioningState;
     DeploymentStatus        = deploymentStatus;
 }
Esempio n. 4
0
 internal AfdOriginGroupData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string profileName, LoadBalancingSettings loadBalancingSettings, HealthProbeSettings healthProbeSettings, int?trafficRestorationTimeInMinutes, EnabledState?sessionAffinityState, AfdProvisioningState?provisioningState, AfdDeploymentStatus?deploymentStatus) : base(id, name, resourceType, systemData)
 {
     ProfileName                     = profileName;
     LoadBalancingSettings           = loadBalancingSettings;
     HealthProbeSettings             = healthProbeSettings;
     TrafficRestorationTimeInMinutes = trafficRestorationTimeInMinutes;
     SessionAffinityState            = sessionAffinityState;
     ProvisioningState               = provisioningState;
     DeploymentStatus                = deploymentStatus;
 }
 internal AfdCustomDomainData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string profileName, AfdCustomDomainHttpsContent tlsSettings, WritableSubResource dnsZone, AfdCustomDomainUpdatePropertiesParametersPreValidatedCustomDomainResourceId preValidatedCustomDomainResource, AfdProvisioningState?provisioningState, AfdDeploymentStatus?deploymentStatus, DomainValidationState?domainValidationState, string hostName, DomainValidationProperties validationProperties) : base(id, name, resourceType, systemData)
 {
     ProfileName = profileName;
     TlsSettings = tlsSettings;
     DnsZone     = dnsZone;
     PreValidatedCustomDomainResource = preValidatedCustomDomainResource;
     ProvisioningState     = provisioningState;
     DeploymentStatus      = deploymentStatus;
     DomainValidationState = domainValidationState;
     HostName             = hostName;
     ValidationProperties = validationProperties;
 }
Esempio n. 6
0
 internal AfdOriginData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string originGroupName, WritableSubResource origin, string hostName, int?httpPort, int?httpsPort, string originHostHeader, int?priority, int?weight, SharedPrivateLinkResourceProperties sharedPrivateLinkResource, EnabledState?enabledState, bool?enforceCertificateNameCheck, AfdProvisioningState?provisioningState, AfdDeploymentStatus?deploymentStatus) : base(id, name, resourceType, systemData)
 {
     OriginGroupName             = originGroupName;
     Origin                      = origin;
     HostName                    = hostName;
     HttpPort                    = httpPort;
     HttpsPort                   = httpsPort;
     OriginHostHeader            = originHostHeader;
     Priority                    = priority;
     Weight                      = weight;
     SharedPrivateLinkResource   = sharedPrivateLinkResource;
     EnabledState                = enabledState;
     EnforceCertificateNameCheck = enforceCertificateNameCheck;
     ProvisioningState           = provisioningState;
     DeploymentStatus            = deploymentStatus;
 }
Esempio n. 7
0
 internal AfdRouteData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, string endpointName, IList <ActivatedResourceReference> customDomains, WritableSubResource originGroup, string originPath, IList <WritableSubResource> ruleSets, IList <AfdEndpointProtocols> supportedProtocols, IList <string> patternsToMatch, AfdRouteCacheConfiguration cacheConfiguration, ForwardingProtocol?forwardingProtocol, LinkToDefaultDomain?linkToDefaultDomain, HttpsRedirect?httpsRedirect, EnabledState?enabledState, AfdProvisioningState?provisioningState, AfdDeploymentStatus?deploymentStatus) : base(id, name, resourceType, systemData)
 {
     EndpointName        = endpointName;
     CustomDomains       = customDomains;
     OriginGroup         = originGroup;
     OriginPath          = originPath;
     RuleSets            = ruleSets;
     SupportedProtocols  = supportedProtocols;
     PatternsToMatch     = patternsToMatch;
     CacheConfiguration  = cacheConfiguration;
     ForwardingProtocol  = forwardingProtocol;
     LinkToDefaultDomain = linkToDefaultDomain;
     HttpsRedirect       = httpsRedirect;
     EnabledState        = enabledState;
     ProvisioningState   = provisioningState;
     DeploymentStatus    = deploymentStatus;
 }