com.azure.resourcemanager.hybridcompute.models.ResourceAssociation 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.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Properties that define a Resource Association.
*/
@Immutable
public final class ResourceAssociation {
/*
* Name of the Resource Association
*/
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String name;
/*
* The access mode
*/
@JsonProperty(value = "accessMode", access = JsonProperty.Access.WRITE_ONLY)
private AccessMode accessMode;
/**
* Creates an instance of ResourceAssociation class.
*/
public ResourceAssociation() {
}
/**
* Get the name property: Name of the Resource Association.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the accessMode property: The access mode.
*
* @return the accessMode value.
*/
public AccessMode accessMode() {
return this.accessMode;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy