Ejemplo n.º 1
0
        private GetDomainOwnershipIdentifierResult(
            string id,

            string?kind,

            string name,

            string?ownershipId,

            Outputs.SystemDataResponse systemData,

            string type)
        {
            Id          = id;
            Kind        = kind;
            Name        = name;
            OwnershipId = ownershipId;
            SystemData  = systemData;
            Type        = type;
        }
Ejemplo n.º 2
0
        private GetDomainResult(
            string?authCode,

            bool?autoRenew,

            Outputs.DomainPurchaseConsentResponse consent,

            Outputs.ContactResponse contactAdmin,

            Outputs.ContactResponse contactBilling,

            Outputs.ContactResponse contactRegistrant,

            Outputs.ContactResponse contactTech,

            string createdTime,

            string?dnsType,

            string?dnsZoneId,

            ImmutableArray <string> domainNotRenewableReasons,

            string expirationTime,

            string id,

            string?kind,

            string lastRenewedTime,

            string location,

            ImmutableArray <Outputs.HostNameResponse> managedHostNames,

            string name,

            ImmutableArray <string> nameServers,

            bool?privacy,

            string provisioningState,

            bool readyForDnsRecordManagement,

            string registrationStatus,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            string?targetDnsType,

            string type)
        {
            AuthCode                  = authCode;
            AutoRenew                 = autoRenew;
            Consent                   = consent;
            ContactAdmin              = contactAdmin;
            ContactBilling            = contactBilling;
            ContactRegistrant         = contactRegistrant;
            ContactTech               = contactTech;
            CreatedTime               = createdTime;
            DnsType                   = dnsType;
            DnsZoneId                 = dnsZoneId;
            DomainNotRenewableReasons = domainNotRenewableReasons;
            ExpirationTime            = expirationTime;
            Id                          = id;
            Kind                        = kind;
            LastRenewedTime             = lastRenewedTime;
            Location                    = location;
            ManagedHostNames            = managedHostNames;
            Name                        = name;
            NameServers                 = nameServers;
            Privacy                     = privacy;
            ProvisioningState           = provisioningState;
            ReadyForDnsRecordManagement = readyForDnsRecordManagement;
            RegistrationStatus          = registrationStatus;
            SystemData                  = systemData;
            Tags                        = tags;
            TargetDnsType               = targetDnsType;
            Type                        = type;
        }