PrivateEndpoint.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.analytics.synapse.artifacts.models;
import com.azure.core.annotation.Immutable;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Private endpoint details. */
@Immutable
public final class PrivateEndpoint {
/*
* Resource id of the private endpoint.
*/
@JsonProperty(value = "id", access = JsonProperty.Access.WRITE_ONLY)
private String id;
/**
* Get the id property: Resource id of the private endpoint.
*
* @return the id value.
*/
public String getId() {
return this.id;
}
}