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

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

Go to download

This package contains Microsoft Azure SDK for Automation Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Automation Client. Package tag package-2019-06.

There is a newer version: 1.0.0
Show newest version
// 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.DscNodeReportInner;
import java.time.OffsetDateTime;
import java.util.List;

/** An immutable client-side representation of DscNodeReport. */
public interface DscNodeReport {
    /**
     * Gets the endTime property: Gets or sets the end time of the node report.
     *
     * @return the endTime value.
     */
    OffsetDateTime endTime();

    /**
     * Gets the lastModifiedTime property: Gets or sets the lastModifiedTime of the node report.
     *
     * @return the lastModifiedTime value.
     */
    OffsetDateTime lastModifiedTime();

    /**
     * Gets the startTime property: Gets or sets the start time of the node report.
     *
     * @return the startTime value.
     */
    OffsetDateTime startTime();

    /**
     * Gets the type property: Gets or sets the type of the node report.
     *
     * @return the type value.
     */
    String type();

    /**
     * Gets the reportId property: Gets or sets the id of the node report.
     *
     * @return the reportId value.
     */
    String reportId();

    /**
     * Gets the status property: Gets or sets the status of the node report.
     *
     * @return the status value.
     */
    String status();

    /**
     * Gets the refreshMode property: Gets or sets the refreshMode of the node report.
     *
     * @return the refreshMode value.
     */
    String refreshMode();

    /**
     * Gets the rebootRequested property: Gets or sets the rebootRequested of the node report.
     *
     * @return the rebootRequested value.
     */
    String rebootRequested();

    /**
     * Gets the reportFormatVersion property: Gets or sets the reportFormatVersion of the node report.
     *
     * @return the reportFormatVersion value.
     */
    String reportFormatVersion();

    /**
     * Gets the configurationVersion property: Gets or sets the configurationVersion of the node report.
     *
     * @return the configurationVersion value.
     */
    String configurationVersion();

    /**
     * Gets the id property: Gets or sets the id.
     *
     * @return the id value.
     */
    String id();

    /**
     * Gets the errors property: Gets or sets the errors for the node report.
     *
     * @return the errors value.
     */
    List errors();

    /**
     * Gets the resources property: Gets or sets the resource for the node report.
     *
     * @return the resources value.
     */
    List resources();

    /**
     * Gets the metaConfiguration property: Gets or sets the metaConfiguration of the node at the time of the report.
     *
     * @return the metaConfiguration value.
     */
    DscMetaConfiguration metaConfiguration();

    /**
     * Gets the hostname property: Gets or sets the hostname of the node that sent the report.
     *
     * @return the hostname value.
     */
    String hostname();

    /**
     * Gets the iPV4Addresses property: Gets or sets the IPv4 address of the node that sent the report.
     *
     * @return the iPV4Addresses value.
     */
    List iPV4Addresses();

    /**
     * Gets the iPV6Addresses property: Gets or sets the IPv6 address of the node that sent the report.
     *
     * @return the iPV6Addresses value.
     */
    List iPV6Addresses();

    /**
     * Gets the numberOfResources property: Gets or sets the number of resource in the node report.
     *
     * @return the numberOfResources value.
     */
    Integer numberOfResources();

    /**
     * Gets the rawErrors property: Gets or sets the unparsed errors for the node report.
     *
     * @return the rawErrors value.
     */
    String rawErrors();

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy