Skip to content
Merged
Show file tree
Hide file tree
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
Expand Up @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
Loading