Пример #1
0
        private GetDeploymentResult(
            string name,

            Outputs.DeploymentResourcePropertiesResponse properties,

            string type)
        {
            Name       = name;
            Properties = properties;
            Type       = type;
        }
Пример #2
0
        private GetDeploymentResult(
            string id,

            string name,

            Outputs.DeploymentResourcePropertiesResponse properties,

            Outputs.SkuResponse?sku,

            string type)
        {
            Id         = id;
            Name       = name;
            Properties = properties;
            Sku        = sku;
            Type       = type;
        }