com.azure.resourcemanager.sql.fluent.models.SyncMemberInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The 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.sql.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.sql.models.SyncDirection;
import com.azure.resourcemanager.sql.models.SyncMemberDbType;
import com.azure.resourcemanager.sql.models.SyncMemberState;
import java.io.IOException;
import java.util.UUID;
/**
* An Azure SQL Database sync member.
*/
@Fluent
public final class SyncMemberInner extends ProxyResource {
/*
* Resource properties.
*/
private SyncMemberProperties innerProperties;
/*
* The type of the resource.
*/
private String type;
/*
* The name of the resource.
*/
private String name;
/*
* Fully qualified resource Id for the resource.
*/
private String id;
/**
* Creates an instance of SyncMemberInner class.
*/
public SyncMemberInner() {
}
/**
* Get the innerProperties property: Resource properties.
*
* @return the innerProperties value.
*/
private SyncMemberProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the type property: The type of the resource.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the name property: The name of the resource.
*
* @return the name value.
*/
@Override
public String name() {
return this.name;
}
/**
* Get the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the databaseType property: Database type of the sync member.
*
* @return the databaseType value.
*/
public SyncMemberDbType databaseType() {
return this.innerProperties() == null ? null : this.innerProperties().databaseType();
}
/**
* Set the databaseType property: Database type of the sync member.
*
* @param databaseType the databaseType value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withDatabaseType(SyncMemberDbType databaseType) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withDatabaseType(databaseType);
return this;
}
/**
* Get the syncAgentId property: ARM resource id of the sync agent in the sync member.
*
* @return the syncAgentId value.
*/
public String syncAgentId() {
return this.innerProperties() == null ? null : this.innerProperties().syncAgentId();
}
/**
* Set the syncAgentId property: ARM resource id of the sync agent in the sync member.
*
* @param syncAgentId the syncAgentId value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withSyncAgentId(String syncAgentId) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withSyncAgentId(syncAgentId);
return this;
}
/**
* Get the sqlServerDatabaseId property: SQL Server database id of the sync member.
*
* @return the sqlServerDatabaseId value.
*/
public UUID sqlServerDatabaseId() {
return this.innerProperties() == null ? null : this.innerProperties().sqlServerDatabaseId();
}
/**
* Set the sqlServerDatabaseId property: SQL Server database id of the sync member.
*
* @param sqlServerDatabaseId the sqlServerDatabaseId value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withSqlServerDatabaseId(UUID sqlServerDatabaseId) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withSqlServerDatabaseId(sqlServerDatabaseId);
return this;
}
/**
* Get the syncMemberAzureDatabaseResourceId property: ARM resource id of the sync member logical database, for sync
* members in Azure.
*
* @return the syncMemberAzureDatabaseResourceId value.
*/
public String syncMemberAzureDatabaseResourceId() {
return this.innerProperties() == null ? null : this.innerProperties().syncMemberAzureDatabaseResourceId();
}
/**
* Set the syncMemberAzureDatabaseResourceId property: ARM resource id of the sync member logical database, for sync
* members in Azure.
*
* @param syncMemberAzureDatabaseResourceId the syncMemberAzureDatabaseResourceId value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withSyncMemberAzureDatabaseResourceId(String syncMemberAzureDatabaseResourceId) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withSyncMemberAzureDatabaseResourceId(syncMemberAzureDatabaseResourceId);
return this;
}
/**
* Get the usePrivateLinkConnection property: Whether to use private link connection.
*
* @return the usePrivateLinkConnection value.
*/
public Boolean usePrivateLinkConnection() {
return this.innerProperties() == null ? null : this.innerProperties().usePrivateLinkConnection();
}
/**
* Set the usePrivateLinkConnection property: Whether to use private link connection.
*
* @param usePrivateLinkConnection the usePrivateLinkConnection value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withUsePrivateLinkConnection(Boolean usePrivateLinkConnection) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withUsePrivateLinkConnection(usePrivateLinkConnection);
return this;
}
/**
* Get the privateEndpointName property: Private endpoint name of the sync member if use private link connection is
* enabled, for sync members in Azure.
*
* @return the privateEndpointName value.
*/
public String privateEndpointName() {
return this.innerProperties() == null ? null : this.innerProperties().privateEndpointName();
}
/**
* Get the serverName property: Server name of the member database in the sync member.
*
* @return the serverName value.
*/
public String serverName() {
return this.innerProperties() == null ? null : this.innerProperties().serverName();
}
/**
* Set the serverName property: Server name of the member database in the sync member.
*
* @param serverName the serverName value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withServerName(String serverName) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withServerName(serverName);
return this;
}
/**
* Get the databaseName property: Database name of the member database in the sync member.
*
* @return the databaseName value.
*/
public String databaseName() {
return this.innerProperties() == null ? null : this.innerProperties().databaseName();
}
/**
* Set the databaseName property: Database name of the member database in the sync member.
*
* @param databaseName the databaseName value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withDatabaseName(String databaseName) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withDatabaseName(databaseName);
return this;
}
/**
* Get the username property: User name of the member database in the sync member.
*
* @return the username value.
*/
public String username() {
return this.innerProperties() == null ? null : this.innerProperties().username();
}
/**
* Set the username property: User name of the member database in the sync member.
*
* @param username the username value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withUsername(String username) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withUsername(username);
return this;
}
/**
* Get the password property: Password of the member database in the sync member.
*
* @return the password value.
*/
public String password() {
return this.innerProperties() == null ? null : this.innerProperties().password();
}
/**
* Set the password property: Password of the member database in the sync member.
*
* @param password the password value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withPassword(String password) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withPassword(password);
return this;
}
/**
* Get the syncDirection property: Sync direction of the sync member.
*
* @return the syncDirection value.
*/
public SyncDirection syncDirection() {
return this.innerProperties() == null ? null : this.innerProperties().syncDirection();
}
/**
* Set the syncDirection property: Sync direction of the sync member.
*
* @param syncDirection the syncDirection value to set.
* @return the SyncMemberInner object itself.
*/
public SyncMemberInner withSyncDirection(SyncDirection syncDirection) {
if (this.innerProperties() == null) {
this.innerProperties = new SyncMemberProperties();
}
this.innerProperties().withSyncDirection(syncDirection);
return this;
}
/**
* Get the syncState property: Sync state of the sync member.
*
* @return the syncState value.
*/
public SyncMemberState syncState() {
return this.innerProperties() == null ? null : this.innerProperties().syncState();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SyncMemberInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SyncMemberInner if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing any required properties.
* @throws IOException If an error occurs while reading the SyncMemberInner.
*/
public static SyncMemberInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SyncMemberInner deserializedSyncMemberInner = new SyncMemberInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedSyncMemberInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedSyncMemberInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedSyncMemberInner.type = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedSyncMemberInner.innerProperties = SyncMemberProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedSyncMemberInner;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy