Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Javadoc of premium SDK for azure-resourcemanager-sql #43635

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix ci analyze exception and get analyze record
  • Loading branch information
v-hongli1 committed Dec 27, 2024
commit 28db4290e10b49704b41e0b0f38866bbcd417394
Original file line number Diff line number Diff line change
@@ -150,12 +150,16 @@ SqlDatabaseOperations.DefinitionStages.WithAuthentication importFrom(StorageAcco
/** Sets the storage key type and value to use. */
interface WithStorageKey {
/**
* Sets the storage access key to use.
*
* @param storageAccessKey the storage access key to use
* @return next definition stage
*/
SqlDatabaseOperations.DefinitionStages.WithAuthentication withStorageAccessKey(String storageAccessKey);

/**
* Sets share access key to use.
*
* @param sharedAccessKey the shared access key to use; it must be preceded with a "?."
* @return next definition stage
*/
Original file line number Diff line number Diff line change
@@ -16,13 +16,25 @@
@Fluent
public interface TransparentDataEncryption extends Refreshable<TransparentDataEncryption>,
HasInnerModel<LogicalDatabaseTransparentDataEncryptionInner>, HasResourceGroup, HasName, HasId {
/** @return name of the SQL Server to which this replication belongs */
/**
* Gets name of the SQL Server to which this replication belongs.
*
* @return name of the SQL Server to which this replication belongs
*/
String sqlServerName();

/** @return name of the SQL Database to which this replication belongs */
/**
* Gets name of the SQL Database to which this replication belongs.
*
* @return name of the SQL Database to which this replication belongs
*/
String databaseName();

/** @return the status of the Azure SQL Database Transparent Data Encryption */
/**
* Gets the status of the Azure SQL Database Transparent Data Encryption.
*
* @return the status of the Azure SQL Database Transparent Data Encryption
*/
TransparentDataEncryptionState status();

/**
Original file line number Diff line number Diff line change
@@ -26,6 +26,15 @@ public final class UnitType extends ExpandableStringEnum<UnitType> {
/** Static value bytesPerSecond for UnitType. */
public static final UnitType BYTES_PER_SECOND = fromString("bytesPerSecond");

/**
* Creates a new instance of UnitType value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public UnitType() {
}

/**
* Creates or finds a UnitType from its string representation.
*
Loading