/sdk/automation/mgmt-v2015_10_31/src/main/java/com/microsoft/azure/management/automation/v2015_10_31/implementation/DscNodeReportInner.java
http://github.com/WindowsAzure/azure-sdk-for-java · Java · 517 lines · 180 code · 60 blank · 277 comment · 0 complexity · 1a9a26f0d342352697742c537f295bde MD5 · raw file
- /**
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for
- * license information.
- *
- * Code generated by Microsoft (R) AutoRest Code Generator.
- */
- package com.microsoft.azure.management.automation.v2015_10_31.implementation;
- import org.joda.time.DateTime;
- import java.util.List;
- import com.microsoft.azure.management.automation.v2015_10_31.DscReportError;
- import com.microsoft.azure.management.automation.v2015_10_31.DscReportResource;
- import com.microsoft.azure.management.automation.v2015_10_31.DscMetaConfiguration;
- import com.fasterxml.jackson.annotation.JsonProperty;
- /**
- * Definition of the dsc node report type.
- */
- public class DscNodeReportInner {
- /**
- * Gets or sets the end time of the node report.
- */
- @JsonProperty(value = "endTime")
- private DateTime endTime;
- /**
- * Gets or sets the lastModifiedTime of the node report.
- */
- @JsonProperty(value = "lastModifiedTime")
- private DateTime lastModifiedTime;
- /**
- * Gets or sets the start time of the node report.
- */
- @JsonProperty(value = "startTime")
- private DateTime startTime;
- /**
- * Gets or sets the type of the node report.
- */
- @JsonProperty(value = "type")
- private String type;
- /**
- * Gets or sets the id of the node report.
- */
- @JsonProperty(value = "reportId")
- private String reportId;
- /**
- * Gets or sets the status of the node report.
- */
- @JsonProperty(value = "status")
- private String status;
- /**
- * Gets or sets the refreshMode of the node report.
- */
- @JsonProperty(value = "refreshMode")
- private String refreshMode;
- /**
- * Gets or sets the rebootRequested of the node report.
- */
- @JsonProperty(value = "rebootRequested")
- private String rebootRequested;
- /**
- * Gets or sets the reportFormatVersion of the node report.
- */
- @JsonProperty(value = "reportFormatVersion")
- private String reportFormatVersion;
- /**
- * Gets or sets the configurationVersion of the node report.
- */
- @JsonProperty(value = "configurationVersion")
- private String configurationVersion;
- /**
- * Gets or sets the id.
- */
- @JsonProperty(value = "id")
- private String id;
- /**
- * Gets or sets the errors for the node report.
- */
- @JsonProperty(value = "errors")
- private List<DscReportError> errors;
- /**
- * Gets or sets the resource for the node report.
- */
- @JsonProperty(value = "resources")
- private List<DscReportResource> resources;
- /**
- * Gets or sets the metaConfiguration of the node at the time of the
- * report.
- */
- @JsonProperty(value = "metaConfiguration")
- private DscMetaConfiguration metaConfiguration;
- /**
- * Gets or sets the hostname of the node that sent the report.
- */
- @JsonProperty(value = "hostName")
- private String hostName;
- /**
- * Gets or sets the IPv4 address of the node that sent the report.
- */
- @JsonProperty(value = "iPV4Addresses")
- private List<String> iPV4Addresses;
- /**
- * Gets or sets the IPv6 address of the node that sent the report.
- */
- @JsonProperty(value = "iPV6Addresses")
- private List<String> iPV6Addresses;
- /**
- * Gets or sets the number of resource in the node report.
- */
- @JsonProperty(value = "numberOfResources")
- private Integer numberOfResources;
- /**
- * Gets or sets the unparsed errors for the node report.
- */
- @JsonProperty(value = "rawErrors")
- private String rawErrors;
- /**
- * Get gets or sets the end time of the node report.
- *
- * @return the endTime value
- */
- public DateTime endTime() {
- return this.endTime;
- }
- /**
- * Set gets or sets the end time of the node report.
- *
- * @param endTime the endTime value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withEndTime(DateTime endTime) {
- this.endTime = endTime;
- return this;
- }
- /**
- * Get gets or sets the lastModifiedTime of the node report.
- *
- * @return the lastModifiedTime value
- */
- public DateTime lastModifiedTime() {
- return this.lastModifiedTime;
- }
- /**
- * Set gets or sets the lastModifiedTime of the node report.
- *
- * @param lastModifiedTime the lastModifiedTime value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withLastModifiedTime(DateTime lastModifiedTime) {
- this.lastModifiedTime = lastModifiedTime;
- return this;
- }
- /**
- * Get gets or sets the start time of the node report.
- *
- * @return the startTime value
- */
- public DateTime startTime() {
- return this.startTime;
- }
- /**
- * Set gets or sets the start time of the node report.
- *
- * @param startTime the startTime value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withStartTime(DateTime startTime) {
- this.startTime = startTime;
- return this;
- }
- /**
- * Get gets or sets the type of the node report.
- *
- * @return the type value
- */
- public String type() {
- return this.type;
- }
- /**
- * Set gets or sets the type of the node report.
- *
- * @param type the type value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withType(String type) {
- this.type = type;
- return this;
- }
- /**
- * Get gets or sets the id of the node report.
- *
- * @return the reportId value
- */
- public String reportId() {
- return this.reportId;
- }
- /**
- * Set gets or sets the id of the node report.
- *
- * @param reportId the reportId value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withReportId(String reportId) {
- this.reportId = reportId;
- return this;
- }
- /**
- * Get gets or sets the status of the node report.
- *
- * @return the status value
- */
- public String status() {
- return this.status;
- }
- /**
- * Set gets or sets the status of the node report.
- *
- * @param status the status value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withStatus(String status) {
- this.status = status;
- return this;
- }
- /**
- * Get gets or sets the refreshMode of the node report.
- *
- * @return the refreshMode value
- */
- public String refreshMode() {
- return this.refreshMode;
- }
- /**
- * Set gets or sets the refreshMode of the node report.
- *
- * @param refreshMode the refreshMode value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withRefreshMode(String refreshMode) {
- this.refreshMode = refreshMode;
- return this;
- }
- /**
- * Get gets or sets the rebootRequested of the node report.
- *
- * @return the rebootRequested value
- */
- public String rebootRequested() {
- return this.rebootRequested;
- }
- /**
- * Set gets or sets the rebootRequested of the node report.
- *
- * @param rebootRequested the rebootRequested value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withRebootRequested(String rebootRequested) {
- this.rebootRequested = rebootRequested;
- return this;
- }
- /**
- * Get gets or sets the reportFormatVersion of the node report.
- *
- * @return the reportFormatVersion value
- */
- public String reportFormatVersion() {
- return this.reportFormatVersion;
- }
- /**
- * Set gets or sets the reportFormatVersion of the node report.
- *
- * @param reportFormatVersion the reportFormatVersion value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withReportFormatVersion(String reportFormatVersion) {
- this.reportFormatVersion = reportFormatVersion;
- return this;
- }
- /**
- * Get gets or sets the configurationVersion of the node report.
- *
- * @return the configurationVersion value
- */
- public String configurationVersion() {
- return this.configurationVersion;
- }
- /**
- * Set gets or sets the configurationVersion of the node report.
- *
- * @param configurationVersion the configurationVersion value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withConfigurationVersion(String configurationVersion) {
- this.configurationVersion = configurationVersion;
- return this;
- }
- /**
- * Get gets or sets the id.
- *
- * @return the id value
- */
- public String id() {
- return this.id;
- }
- /**
- * Set gets or sets the id.
- *
- * @param id the id value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withId(String id) {
- this.id = id;
- return this;
- }
- /**
- * Get gets or sets the errors for the node report.
- *
- * @return the errors value
- */
- public List<DscReportError> errors() {
- return this.errors;
- }
- /**
- * Set gets or sets the errors for the node report.
- *
- * @param errors the errors value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withErrors(List<DscReportError> errors) {
- this.errors = errors;
- return this;
- }
- /**
- * Get gets or sets the resource for the node report.
- *
- * @return the resources value
- */
- public List<DscReportResource> resources() {
- return this.resources;
- }
- /**
- * Set gets or sets the resource for the node report.
- *
- * @param resources the resources value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withResources(List<DscReportResource> resources) {
- this.resources = resources;
- return this;
- }
- /**
- * Get gets or sets the metaConfiguration of the node at the time of the report.
- *
- * @return the metaConfiguration value
- */
- public DscMetaConfiguration metaConfiguration() {
- return this.metaConfiguration;
- }
- /**
- * Set gets or sets the metaConfiguration of the node at the time of the report.
- *
- * @param metaConfiguration the metaConfiguration value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withMetaConfiguration(DscMetaConfiguration metaConfiguration) {
- this.metaConfiguration = metaConfiguration;
- return this;
- }
- /**
- * Get gets or sets the hostname of the node that sent the report.
- *
- * @return the hostName value
- */
- public String hostName() {
- return this.hostName;
- }
- /**
- * Set gets or sets the hostname of the node that sent the report.
- *
- * @param hostName the hostName value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withHostName(String hostName) {
- this.hostName = hostName;
- return this;
- }
- /**
- * Get gets or sets the IPv4 address of the node that sent the report.
- *
- * @return the iPV4Addresses value
- */
- public List<String> iPV4Addresses() {
- return this.iPV4Addresses;
- }
- /**
- * Set gets or sets the IPv4 address of the node that sent the report.
- *
- * @param iPV4Addresses the iPV4Addresses value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withIPV4Addresses(List<String> iPV4Addresses) {
- this.iPV4Addresses = iPV4Addresses;
- return this;
- }
- /**
- * Get gets or sets the IPv6 address of the node that sent the report.
- *
- * @return the iPV6Addresses value
- */
- public List<String> iPV6Addresses() {
- return this.iPV6Addresses;
- }
- /**
- * Set gets or sets the IPv6 address of the node that sent the report.
- *
- * @param iPV6Addresses the iPV6Addresses value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withIPV6Addresses(List<String> iPV6Addresses) {
- this.iPV6Addresses = iPV6Addresses;
- return this;
- }
- /**
- * Get gets or sets the number of resource in the node report.
- *
- * @return the numberOfResources value
- */
- public Integer numberOfResources() {
- return this.numberOfResources;
- }
- /**
- * Set gets or sets the number of resource in the node report.
- *
- * @param numberOfResources the numberOfResources value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withNumberOfResources(Integer numberOfResources) {
- this.numberOfResources = numberOfResources;
- return this;
- }
- /**
- * Get gets or sets the unparsed errors for the node report.
- *
- * @return the rawErrors value
- */
- public String rawErrors() {
- return this.rawErrors;
- }
- /**
- * Set gets or sets the unparsed errors for the node report.
- *
- * @param rawErrors the rawErrors value to set
- * @return the DscNodeReportInner object itself.
- */
- public DscNodeReportInner withRawErrors(String rawErrors) {
- this.rawErrors = rawErrors;
- return this;
- }
- }