All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.automation.models.SoftwareUpdateConfigurationRun Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.automation.models;

import com.azure.resourcemanager.automation.fluent.models.SoftwareUpdateConfigurationRunInner;
import java.time.OffsetDateTime;

/**
 * An immutable client-side representation of SoftwareUpdateConfigurationRun.
 */
public interface SoftwareUpdateConfigurationRun {
    /**
     * Gets the name property: Name of the software update configuration run.
     * 
     * @return the name value.
     */
    String name();

    /**
     * Gets the id property: Resource Id of the software update configuration run.
     * 
     * @return the id value.
     */
    String id();

    /**
     * Gets the softwareUpdateConfiguration property: software update configuration triggered this run.
     * 
     * @return the softwareUpdateConfiguration value.
     */
    UpdateConfigurationNavigation softwareUpdateConfiguration();

    /**
     * Gets the status property: Status of the software update configuration run.
     * 
     * @return the status value.
     */
    String status();

    /**
     * Gets the configuredDuration property: Configured duration for the software update configuration run.
     * 
     * @return the configuredDuration value.
     */
    String configuredDuration();

    /**
     * Gets the osType property: Operating system target of the software update configuration triggered this run.
     * 
     * @return the osType value.
     */
    String osType();

    /**
     * Gets the startTime property: Start time of the software update configuration run.
     * 
     * @return the startTime value.
     */
    OffsetDateTime startTime();

    /**
     * Gets the endTime property: End time of the software update configuration run.
     * 
     * @return the endTime value.
     */
    OffsetDateTime endTime();

    /**
     * Gets the computerCount property: Number of computers in the software update configuration run.
     * 
     * @return the computerCount value.
     */
    Integer computerCount();

    /**
     * Gets the failedCount property: Number of computers with failed status.
     * 
     * @return the failedCount value.
     */
    Integer failedCount();

    /**
     * Gets the creationTime property: Creation time of the resource, which only appears in the response.
     * 
     * @return the creationTime value.
     */
    OffsetDateTime creationTime();

    /**
     * Gets the createdBy property: CreatedBy property, which only appears in the response.
     * 
     * @return the createdBy value.
     */
    String createdBy();

    /**
     * Gets the lastModifiedTime property: Last time resource was modified, which only appears in the response.
     * 
     * @return the lastModifiedTime value.
     */
    OffsetDateTime lastModifiedTime();

    /**
     * Gets the lastModifiedBy property: LastModifiedBy property, which only appears in the response.
     * 
     * @return the lastModifiedBy value.
     */
    String lastModifiedBy();

    /**
     * Gets the tasks property: Software update configuration tasks triggered in this run.
     * 
     * @return the tasks value.
     */
    SoftwareUpdateConfigurationRunTasks tasks();

    /**
     * Gets the inner com.azure.resourcemanager.automation.fluent.models.SoftwareUpdateConfigurationRunInner object.
     * 
     * @return the inner object.
     */
    SoftwareUpdateConfigurationRunInner innerModel();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy