AzureKeyVaultLinkedService.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.Fluent;
import com.azure.core.annotation.JsonFlatten;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
/** Azure Key Vault linked service. */
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonTypeName("AzureKeyVault")
@JsonFlatten
@Fluent
public class AzureKeyVaultLinkedService extends LinkedService {
/*
* The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net
* Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "typeProperties.baseUrl", required = true)
private Object baseUrl;
/**
* Get the baseUrl property: The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string
* (or Expression with resultType string).
*
* @return the baseUrl value.
*/
public Object getBaseUrl() {
return this.baseUrl;
}
/**
* Set the baseUrl property: The base URL of the Azure Key Vault. e.g. https://myakv.vault.azure.net Type: string
* (or Expression with resultType string).
*
* @param baseUrl the baseUrl value to set.
* @return the AzureKeyVaultLinkedService object itself.
*/
public AzureKeyVaultLinkedService setBaseUrl(Object baseUrl) {
this.baseUrl = baseUrl;
return this;
}
}