com.azure.resourcemanager.hybridcompute.models.ServiceStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.hybridcompute.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Describes the status and behavior of a service.
*/
@Fluent
public final class ServiceStatus {
/*
* The current status of the service.
*/
@JsonProperty(value = "status")
private String status;
/*
* The behavior of the service when the Arc-enabled machine starts up.
*/
@JsonProperty(value = "startupType")
private String startupType;
/**
* Creates an instance of ServiceStatus class.
*/
public ServiceStatus() {
}
/**
* Get the status property: The current status of the service.
*
* @return the status value.
*/
public String status() {
return this.status;
}
/**
* Set the status property: The current status of the service.
*
* @param status the status value to set.
* @return the ServiceStatus object itself.
*/
public ServiceStatus withStatus(String status) {
this.status = status;
return this;
}
/**
* Get the startupType property: The behavior of the service when the Arc-enabled machine starts up.
*
* @return the startupType value.
*/
public String startupType() {
return this.startupType;
}
/**
* Set the startupType property: The behavior of the service when the Arc-enabled machine starts up.
*
* @param startupType the startupType value to set.
* @return the ServiceStatus object itself.
*/
public ServiceStatus withStartupType(String startupType) {
this.startupType = startupType;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy