Exemplo n.º 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;
        }
Exemplo n.º 2
0
        private ListTaskDetailsResult(
            Outputs.AgentPropertiesResponse?agentConfiguration,

            string?agentPoolName,

            string creationDate,

            Outputs.CredentialsResponse?credentials,

            string id,

            Outputs.IdentityPropertiesResponse?identity,

            bool?isSystemTask,

            string location,

            string?logTemplate,

            string name,

            Outputs.PlatformPropertiesResponse?platform,

            string provisioningState,

            string?status,

            object?step,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            int?timeout,

            Outputs.TriggerPropertiesResponse?trigger,

            string type)
        {
            AgentConfiguration = agentConfiguration;
            AgentPoolName      = agentPoolName;
            CreationDate       = creationDate;
            Credentials        = credentials;
            Id                = id;
            Identity          = identity;
            IsSystemTask      = isSystemTask;
            Location          = location;
            LogTemplate       = logTemplate;
            Name              = name;
            Platform          = platform;
            ProvisioningState = provisioningState;
            Status            = status;
            Step              = step;
            SystemData        = systemData;
            Tags              = tags;
            Timeout           = timeout;
            Trigger           = trigger;
            Type              = type;
        }