com.azure.resourcemanager.hybridcompute.models.ConnectionDetail 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;
/**
* The ConnectionDetail model.
*/
@Immutable
public final class ConnectionDetail {
/*
* Azure resource Id
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/*
* The private endpoint connection private ip address
*/
@JsonProperty(value = "privateIpAddress", access = JsonProperty.Access.WRITE_ONLY)
private String privateIpAddress;
/*
* The private endpoint connection link identifier
*/
@JsonProperty(value = "linkIdentifier", access = JsonProperty.Access.WRITE_ONLY)
private String linkIdentifier;
/*
* The private endpoint connection group id
*/
@JsonProperty(value = "groupId", access = JsonProperty.Access.WRITE_ONLY)
private String groupId;
/*
* The private endpoint connection member name
*/
@JsonProperty(value = "memberName", access = JsonProperty.Access.WRITE_ONLY)
private String memberName;
/**
* Creates an instance of ConnectionDetail class.
*/
public ConnectionDetail() {
}
/**
* Get the id property: Azure resource Id.
*
* @return the id value.
*/
public String id() {
return this.id;
}
/**
* Get the privateIpAddress property: The private endpoint connection private ip address.
*
* @return the privateIpAddress value.
*/
public String privateIpAddress() {
return this.privateIpAddress;
}
/**
* Get the linkIdentifier property: The private endpoint connection link identifier.
*
* @return the linkIdentifier value.
*/
public String linkIdentifier() {
return this.linkIdentifier;
}
/**
* Get the groupId property: The private endpoint connection group id.
*
* @return the groupId value.
*/
public String groupId() {
return this.groupId;
}
/**
* Get the memberName property: The private endpoint connection member name.
*
* @return the memberName value.
*/
public String memberName() {
return this.memberName;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy