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

com.azure.resourcemanager.automation.models.DscConfigurationAssociationProperty 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.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;

/** The Dsc configuration property associated with the entity. */
@Fluent
public final class DscConfigurationAssociationProperty {
    @JsonIgnore private final ClientLogger logger = new ClientLogger(DscConfigurationAssociationProperty.class);

    /*
     * Gets or sets the name of the Dsc configuration.
     */
    @JsonProperty(value = "name")
    private String name;

    /**
     * Get the name property: Gets or sets the name of the Dsc configuration.
     *
     * @return the name value.
     */
    public String name() {
        return this.name;
    }

    /**
     * Set the name property: Gets or sets the name of the Dsc configuration.
     *
     * @param name the name value to set.
     * @return the DscConfigurationAssociationProperty object itself.
     */
    public DscConfigurationAssociationProperty withName(String name) {
        this.name = name;
        return this;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy