Beispiel #1
0
        private GetTaskRunResult(
            string?forceUpdateTag,

            string id,

            Outputs.IdentityPropertiesResponse?identity,

            string?location,

            string name,

            string provisioningState,

            object?runRequest,

            Outputs.RunResponse runResult,

            Outputs.SystemDataResponse systemData,

            string type)
        {
            ForceUpdateTag    = forceUpdateTag;
            Id                = id;
            Identity          = identity;
            Location          = location;
            Name              = name;
            ProvisioningState = provisioningState;
            RunRequest        = runRequest;
            RunResult         = runResult;
            SystemData        = systemData;
            Type              = type;
        }
        private GetTaskRunResult(
            string?forceUpdateTag,

            Outputs.IdentityPropertiesResponse?identity,

            string?location,

            string name,

            string provisioningState,

            Union <Outputs.DockerBuildRequestResponse, Union <Outputs.EncodedTaskRunRequestResponse, Union <Outputs.FileTaskRunRequestResponse, Outputs.TaskRunRequestResponse> > >?runRequest,

            Outputs.RunResponse runResult,

            string type)
        {
            ForceUpdateTag    = forceUpdateTag;
            Identity          = identity;
            Location          = location;
            Name              = name;
            ProvisioningState = provisioningState;
            RunRequest        = runRequest;
            RunResult         = runResult;
            Type              = type;
        }