private GetDeploymentResult(
            string?location,

            string name,

            Outputs.DeploymentPropertiesExtendedResponse properties,

            string type)
        {
            Location   = location;
            Name       = name;
            Properties = properties;
            Type       = type;
        }
Exemple #2
0
        private GetDeploymentAtSubscriptionScopeResult(
            string id,

            string?location,

            string name,

            Outputs.DeploymentPropertiesExtendedResponse properties,

            string type)
        {
            Id         = id;
            Location   = location;
            Name       = name;
            Properties = properties;
            Type       = type;
        }