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

com.azure.resourcemanager.hybridcompute.models.ServiceStatus Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.1.0-beta.1
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.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