private GetConnectedClusterResult(
            Outputs.ConnectedClusterAADProfileResponse aadProfile,

            string agentPublicKeyCertificate,

            string agentVersion,

            Outputs.ConnectedClusterIdentityResponse identity,

            string kubernetesVersion,

            string location,

            string name,

            string?provisioningState,

            ImmutableDictionary <string, string>?tags,

            int totalNodeCount,

            string type)
        {
            AadProfile = aadProfile;
            AgentPublicKeyCertificate = agentPublicKeyCertificate;
            AgentVersion      = agentVersion;
            Identity          = identity;
            KubernetesVersion = kubernetesVersion;
            Location          = location;
            Name = name;
            ProvisioningState = provisioningState;
            Tags           = tags;
            TotalNodeCount = totalNodeCount;
            Type           = type;
        }
Esempio n. 2
0
        private GetConnectedClusterResult(
            Outputs.ConnectedClusterAADProfileResponse aadProfile,

            string agentPublicKeyCertificate,

            string agentVersion,

            string?connectivityStatus,

            string?distribution,

            string id,

            Outputs.ConnectedClusterIdentityResponse identity,

            string?infrastructure,

            string kubernetesVersion,

            string lastConnectivityTime,

            string location,

            string managedIdentityCertificateExpirationTime,

            string name,

            string offering,

            string?provisioningState,

            ImmutableDictionary <string, string>?tags,

            int totalCoreCount,

            int totalNodeCount,

            string type)
        {
            AadProfile = aadProfile;
            AgentPublicKeyCertificate = agentPublicKeyCertificate;
            AgentVersion       = agentVersion;
            ConnectivityStatus = connectivityStatus;
            Distribution       = distribution;
            Id                   = id;
            Identity             = identity;
            Infrastructure       = infrastructure;
            KubernetesVersion    = kubernetesVersion;
            LastConnectivityTime = lastConnectivityTime;
            Location             = location;
            ManagedIdentityCertificateExpirationTime = managedIdentityCertificateExpirationTime;
            Name              = name;
            Offering          = offering;
            ProvisioningState = provisioningState;
            Tags              = tags;
            TotalCoreCount    = totalCoreCount;
            TotalNodeCount    = totalNodeCount;
            Type              = type;
        }