示例#1
0
        private GetJobResult(
            string id,

            Outputs.IdentityDetailsResponse?identity,

            string?location,

            string name,

            Outputs.JobDetailsResponse properties,

            Outputs.SystemDataResponse systemData,

            object?tags,

            string type)
        {
            Id         = id;
            Identity   = identity;
            Location   = location;
            Name       = name;
            Properties = properties;
            SystemData = systemData;
            Tags       = tags;
            Type       = type;
        }
示例#2
0
        private GetJobResult(
            string?location,

            string name,

            Outputs.JobDetailsResponse properties,

            object?tags,

            string type)
        {
            Location   = location;
            Name       = name;
            Properties = properties;
            Tags       = tags;
            Type       = type;
        }