Workspace.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 java.util.List;
import java.util.Map;
import java.util.UUID;
/** A workspace. */
@JsonFlatten
@Fluent
public class Workspace extends TrackedResource {
/*
* Identity of the workspace
*/
@JsonProperty(value = "identity")
private ManagedIdentity identity;
/*
* Workspace default data lake storage account details
*/
@JsonProperty(value = "properties.defaultDataLakeStorage")
private DataLakeStorageAccountDetails defaultDataLakeStorage;
/*
* SQL administrator login password
*/
@JsonProperty(value = "properties.sqlAdministratorLoginPassword")
private String sqlAdministratorLoginPassword;
/*
* Workspace managed resource group. The resource group name uniquely
* identifies the resource group within the user subscriptionId. The
* resource group name must be no longer than 90 characters long, and must
* be alphanumeric characters (Char.IsLetterOrDigit()) and '-', '_', '(',
* ')' and'.'. Note that the name cannot end with '.'
*/
@JsonProperty(value = "properties.managedResourceGroupName")
private String managedResourceGroupName;
/*
* Resource provisioning state
*/
@JsonProperty(value = "properties.provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private String provisioningState;
/*
* Login for workspace SQL active directory administrator
*/
@JsonProperty(value = "properties.sqlAdministratorLogin")
private String sqlAdministratorLogin;
/*
* Virtual Network profile
*/
@JsonProperty(value = "properties.virtualNetworkProfile")
private VirtualNetworkProfile virtualNetworkProfile;
/*
* Connectivity endpoints
*/
@JsonProperty(value = "properties.connectivityEndpoints")
private Map<String, String> connectivityEndpoints;
/*
* Setting this to 'default' will ensure that all compute for this
* workspace is in a virtual network managed on behalf of the user.
*/
@JsonProperty(value = "properties.managedVirtualNetwork")
private String managedVirtualNetwork;
/*
* Private endpoint connections to the workspace
*/
@JsonProperty(value = "properties.privateEndpointConnections")
private List<PrivateEndpointConnection> privateEndpointConnections;
/*
* The encryption details of the workspace
*/
@JsonProperty(value = "properties.encryption")
private EncryptionDetails encryption;
/*
* The workspace unique identifier
*/
@JsonProperty(value = "properties.workspaceUID", access = JsonProperty.Access.WRITE_ONLY)
private UUID workspaceUID;
/*
* Workspace level configs and feature flags
*/
@JsonProperty(value = "properties.extraProperties", access = JsonProperty.Access.WRITE_ONLY)
private Map<String, Object> extraProperties;
/*
* Managed Virtual Network Settings
*/
@JsonProperty(value = "properties.managedVirtualNetworkSettings")
private ManagedVirtualNetworkSettings managedVirtualNetworkSettings;
/*
* Git integration settings
*/
@JsonProperty(value = "properties.workspaceRepositoryConfiguration")
private WorkspaceRepositoryConfiguration workspaceRepositoryConfiguration;
/*
* Purview Configuration
*/
@JsonProperty(value = "properties.purviewConfiguration")
private PurviewConfiguration purviewConfiguration;
/*
* The ADLA resource ID.
*/
@JsonProperty(value = "properties.adlaResourceId", access = JsonProperty.Access.WRITE_ONLY)
private String adlaResourceId;
/**
* Get the identity property: Identity of the workspace.
*
* @return the identity value.
*/
public ManagedIdentity getIdentity() {
return this.identity;
}
/**
* Set the identity property: Identity of the workspace.
*
* @param identity the identity value to set.
* @return the Workspace object itself.
*/
public Workspace setIdentity(ManagedIdentity identity) {
this.identity = identity;
return this;
}
/**
* Get the defaultDataLakeStorage property: Workspace default data lake storage account details.
*
* @return the defaultDataLakeStorage value.
*/
public DataLakeStorageAccountDetails getDefaultDataLakeStorage() {
return this.defaultDataLakeStorage;
}
/**
* Set the defaultDataLakeStorage property: Workspace default data lake storage account details.
*
* @param defaultDataLakeStorage the defaultDataLakeStorage value to set.
* @return the Workspace object itself.
*/
public Workspace setDefaultDataLakeStorage(DataLakeStorageAccountDetails defaultDataLakeStorage) {
this.defaultDataLakeStorage = defaultDataLakeStorage;
return this;
}
/**
* Get the sqlAdministratorLoginPassword property: SQL administrator login password.
*
* @return the sqlAdministratorLoginPassword value.
*/
public String getSqlAdministratorLoginPassword() {
return this.sqlAdministratorLoginPassword;
}
/**
* Set the sqlAdministratorLoginPassword property: SQL administrator login password.
*
* @param sqlAdministratorLoginPassword the sqlAdministratorLoginPassword value to set.
* @return the Workspace object itself.
*/
public Workspace setSqlAdministratorLoginPassword(String sqlAdministratorLoginPassword) {
this.sqlAdministratorLoginPassword = sqlAdministratorLoginPassword;
return this;
}
/**
* Get the managedResourceGroupName property: Workspace managed resource group. The resource group name uniquely
* identifies the resource group within the user subscriptionId. The resource group name must be no longer than 90
* characters long, and must be alphanumeric characters (Char.IsLetterOrDigit()) and '-', '_', '(', ')' and'.'. Note
* that the name cannot end with '.'.
*
* @return the managedResourceGroupName value.
*/
public String getManagedResourceGroupName() {
return this.managedResourceGroupName;
}
/**
* Set the managedResourceGroupName property: Workspace managed resource group. The resource group name uniquely
* identifies the resource group within the user subscriptionId. The resource group name must be no longer than 90
* characters long, and must be alphanumeric characters (Char.IsLetterOrDigit()) and '-', '_', '(', ')' and'.'. Note
* that the name cannot end with '.'.
*
* @param managedResourceGroupName the managedResourceGroupName value to set.
* @return the Workspace object itself.
*/
public Workspace setManagedResourceGroupName(String managedResourceGroupName) {
this.managedResourceGroupName = managedResourceGroupName;
return this;
}
/**
* Get the provisioningState property: Resource provisioning state.
*
* @return the provisioningState value.
*/
public String getProvisioningState() {
return this.provisioningState;
}
/**
* Get the sqlAdministratorLogin property: Login for workspace SQL active directory administrator.
*
* @return the sqlAdministratorLogin value.
*/
public String getSqlAdministratorLogin() {
return this.sqlAdministratorLogin;
}
/**
* Set the sqlAdministratorLogin property: Login for workspace SQL active directory administrator.
*
* @param sqlAdministratorLogin the sqlAdministratorLogin value to set.
* @return the Workspace object itself.
*/
public Workspace setSqlAdministratorLogin(String sqlAdministratorLogin) {
this.sqlAdministratorLogin = sqlAdministratorLogin;
return this;
}
/**
* Get the virtualNetworkProfile property: Virtual Network profile.
*
* @return the virtualNetworkProfile value.
*/
public VirtualNetworkProfile getVirtualNetworkProfile() {
return this.virtualNetworkProfile;
}
/**
* Set the virtualNetworkProfile property: Virtual Network profile.
*
* @param virtualNetworkProfile the virtualNetworkProfile value to set.
* @return the Workspace object itself.
*/
public Workspace setVirtualNetworkProfile(VirtualNetworkProfile virtualNetworkProfile) {
this.virtualNetworkProfile = virtualNetworkProfile;
return this;
}
/**
* Get the connectivityEndpoints property: Connectivity endpoints.
*
* @return the connectivityEndpoints value.
*/
public Map<String, String> getConnectivityEndpoints() {
return this.connectivityEndpoints;
}
/**
* Set the connectivityEndpoints property: Connectivity endpoints.
*
* @param connectivityEndpoints the connectivityEndpoints value to set.
* @return the Workspace object itself.
*/
public Workspace setConnectivityEndpoints(Map<String, String> connectivityEndpoints) {
this.connectivityEndpoints = connectivityEndpoints;
return this;
}
/**
* Get the managedVirtualNetwork property: Setting this to 'default' will ensure that all compute for this workspace
* is in a virtual network managed on behalf of the user.
*
* @return the managedVirtualNetwork value.
*/
public String getManagedVirtualNetwork() {
return this.managedVirtualNetwork;
}
/**
* Set the managedVirtualNetwork property: Setting this to 'default' will ensure that all compute for this workspace
* is in a virtual network managed on behalf of the user.
*
* @param managedVirtualNetwork the managedVirtualNetwork value to set.
* @return the Workspace object itself.
*/
public Workspace setManagedVirtualNetwork(String managedVirtualNetwork) {
this.managedVirtualNetwork = managedVirtualNetwork;
return this;
}
/**
* Get the privateEndpointConnections property: Private endpoint connections to the workspace.
*
* @return the privateEndpointConnections value.
*/
public List<PrivateEndpointConnection> getPrivateEndpointConnections() {
return this.privateEndpointConnections;
}
/**
* Set the privateEndpointConnections property: Private endpoint connections to the workspace.
*
* @param privateEndpointConnections the privateEndpointConnections value to set.
* @return the Workspace object itself.
*/
public Workspace setPrivateEndpointConnections(List<PrivateEndpointConnection> privateEndpointConnections) {
this.privateEndpointConnections = privateEndpointConnections;
return this;
}
/**
* Get the encryption property: The encryption details of the workspace.
*
* @return the encryption value.
*/
public EncryptionDetails getEncryption() {
return this.encryption;
}
/**
* Set the encryption property: The encryption details of the workspace.
*
* @param encryption the encryption value to set.
* @return the Workspace object itself.
*/
public Workspace setEncryption(EncryptionDetails encryption) {
this.encryption = encryption;
return this;
}
/**
* Get the workspaceUID property: The workspace unique identifier.
*
* @return the workspaceUID value.
*/
public UUID getWorkspaceUID() {
return this.workspaceUID;
}
/**
* Get the extraProperties property: Workspace level configs and feature flags.
*
* @return the extraProperties value.
*/
public Map<String, Object> getExtraProperties() {
return this.extraProperties;
}
/**
* Get the managedVirtualNetworkSettings property: Managed Virtual Network Settings.
*
* @return the managedVirtualNetworkSettings value.
*/
public ManagedVirtualNetworkSettings getManagedVirtualNetworkSettings() {
return this.managedVirtualNetworkSettings;
}
/**
* Set the managedVirtualNetworkSettings property: Managed Virtual Network Settings.
*
* @param managedVirtualNetworkSettings the managedVirtualNetworkSettings value to set.
* @return the Workspace object itself.
*/
public Workspace setManagedVirtualNetworkSettings(ManagedVirtualNetworkSettings managedVirtualNetworkSettings) {
this.managedVirtualNetworkSettings = managedVirtualNetworkSettings;
return this;
}
/**
* Get the workspaceRepositoryConfiguration property: Git integration settings.
*
* @return the workspaceRepositoryConfiguration value.
*/
public WorkspaceRepositoryConfiguration getWorkspaceRepositoryConfiguration() {
return this.workspaceRepositoryConfiguration;
}
/**
* Set the workspaceRepositoryConfiguration property: Git integration settings.
*
* @param workspaceRepositoryConfiguration the workspaceRepositoryConfiguration value to set.
* @return the Workspace object itself.
*/
public Workspace setWorkspaceRepositoryConfiguration(
WorkspaceRepositoryConfiguration workspaceRepositoryConfiguration) {
this.workspaceRepositoryConfiguration = workspaceRepositoryConfiguration;
return this;
}
/**
* Get the purviewConfiguration property: Purview Configuration.
*
* @return the purviewConfiguration value.
*/
public PurviewConfiguration getPurviewConfiguration() {
return this.purviewConfiguration;
}
/**
* Set the purviewConfiguration property: Purview Configuration.
*
* @param purviewConfiguration the purviewConfiguration value to set.
* @return the Workspace object itself.
*/
public Workspace setPurviewConfiguration(PurviewConfiguration purviewConfiguration) {
this.purviewConfiguration = purviewConfiguration;
return this;
}
/**
* Get the adlaResourceId property: The ADLA resource ID.
*
* @return the adlaResourceId value.
*/
public String getAdlaResourceId() {
return this.adlaResourceId;
}
}