diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningOptions.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningOptions.java index 5f68a31fa72..db364f831ba 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningOptions.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningOptions.java @@ -44,7 +44,7 @@ public class AutomaticTuningOptions { private AutomaticTuningDisabledReason reasonDesc; /** - * Get the desiredState value. + * Get automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'. * * @return the desiredState value */ @@ -53,7 +53,7 @@ public AutomaticTuningOptionModeDesired desiredState() { } /** - * Set the desiredState value. + * Set automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'. * * @param desiredState the desiredState value to set * @return the AutomaticTuningOptions object itself. @@ -64,7 +64,7 @@ public AutomaticTuningOptions withDesiredState(AutomaticTuningOptionModeDesired } /** - * Get the actualState value. + * Get automatic tuning option actual state. Possible values include: 'Off', 'On'. * * @return the actualState value */ @@ -73,7 +73,7 @@ public AutomaticTuningOptionModeActual actualState() { } /** - * Get the reasonCode value. + * Get reason code if desired and actual state are different. * * @return the reasonCode value */ @@ -82,7 +82,7 @@ public Integer reasonCode() { } /** - * Get the reasonDesc value. + * Get reason description if desired and actual state are different. Possible values include: 'Default', 'Disabled', 'AutoConfigured', 'InheritedFromServer', 'QueryStoreOff', 'QueryStoreReadOnly', 'NotSupported'. * * @return the reasonDesc value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningServerOptions.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningServerOptions.java index 3995fe964af..8e72752fabf 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningServerOptions.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/AutomaticTuningServerOptions.java @@ -42,7 +42,7 @@ public class AutomaticTuningServerOptions { private AutomaticTuningServerReason reasonDesc; /** - * Get the desiredState value. + * Get automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'. * * @return the desiredState value */ @@ -51,7 +51,7 @@ public AutomaticTuningOptionModeDesired desiredState() { } /** - * Set the desiredState value. + * Set automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'. * * @param desiredState the desiredState value to set * @return the AutomaticTuningServerOptions object itself. @@ -62,7 +62,7 @@ public AutomaticTuningServerOptions withDesiredState(AutomaticTuningOptionModeDe } /** - * Get the actualState value. + * Get automatic tuning option actual state. Possible values include: 'Off', 'On'. * * @return the actualState value */ @@ -71,7 +71,7 @@ public AutomaticTuningOptionModeActual actualState() { } /** - * Get the reasonCode value. + * Get reason code if desired and actual state are different. * * @return the reasonCode value */ @@ -80,7 +80,7 @@ public Integer reasonCode() { } /** - * Get the reasonDesc value. + * Get reason description if desired and actual state are different. Possible values include: 'Default', 'Disabled', 'AutoConfigured'. * * @return the reasonDesc value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CheckNameAvailabilityRequest.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CheckNameAvailabilityRequest.java index f1fc94ef3e6..32c78658318 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CheckNameAvailabilityRequest.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CheckNameAvailabilityRequest.java @@ -29,13 +29,14 @@ public class CheckNameAvailabilityRequest { /** * Creates an instance of CheckNameAvailabilityRequest class. + * @param name the name whose availability is to be checked. */ public CheckNameAvailabilityRequest() { type = "Microsoft.Sql/servers"; } /** - * Get the name value. + * Get the name whose availability is to be checked. * * @return the name value */ @@ -44,7 +45,7 @@ public String name() { } /** - * Set the name value. + * Set the name whose availability is to be checked. * * @param name the name value to set * @return the CheckNameAvailabilityRequest object itself. @@ -55,7 +56,7 @@ public CheckNameAvailabilityRequest withName(String name) { } /** - * Get the type value. + * Get the type of resource that is used as the scope of the availability check. * * @return the type value */ @@ -64,7 +65,7 @@ public String type() { } /** - * Set the type value. + * Set the type of resource that is used as the scope of the availability check. * * @param type the type value to set * @return the CheckNameAvailabilityRequest object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CompleteDatabaseRestoreDefinition.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CompleteDatabaseRestoreDefinition.java index 328f252320f..957063a3a44 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CompleteDatabaseRestoreDefinition.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CompleteDatabaseRestoreDefinition.java @@ -22,7 +22,7 @@ public class CompleteDatabaseRestoreDefinition { private String lastBackupName; /** - * Get the lastBackupName value. + * Get the last backup name to apply. * * @return the lastBackupName value */ @@ -31,7 +31,7 @@ public String lastBackupName() { } /** - * Set the lastBackupName value. + * Set the last backup name to apply. * * @param lastBackupName the lastBackupName value to set * @return the CompleteDatabaseRestoreDefinition object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CreateDatabaseRestorePointDefinition.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CreateDatabaseRestorePointDefinition.java index ef7822a73b8..cd75997d5c0 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CreateDatabaseRestorePointDefinition.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/CreateDatabaseRestorePointDefinition.java @@ -22,7 +22,7 @@ public class CreateDatabaseRestorePointDefinition { private String restorePointLabel; /** - * Get the restorePointLabel value. + * Get the restore point label to apply. * * @return the restorePointLabel value */ @@ -31,7 +31,7 @@ public String restorePointLabel() { } /** - * Set the restorePointLabel value. + * Set the restore point label to apply. * * @param restorePointLabel the restorePointLabel value to set * @return the CreateDatabaseRestorePointDefinition object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseUpdate.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseUpdate.java index efeed50f9d1..274090b3e56 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseUpdate.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseUpdate.java @@ -244,7 +244,7 @@ public class DatabaseUpdate { private Map tags; /** - * Get the sku value. + * Get the name and tier of the SKU. * * @return the sku value */ @@ -253,7 +253,7 @@ public Sku sku() { } /** - * Set the sku value. + * Set the name and tier of the SKU. * * @param sku the sku value to set * @return the DatabaseUpdate object itself. @@ -264,7 +264,15 @@ public DatabaseUpdate withSku(Sku sku) { } /** - * Get the createMode value. + * Get specifies the mode of database creation. + Default: regular database creation. + Copy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database. + Secondary: creates a database as a secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database. + PointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified. + Recovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore. + Restore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time. + RestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID. + Copy, Secondary, and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition. Possible values include: 'Default', 'Copy', 'Secondary', 'PointInTimeRestore', 'Restore', 'Recovery', 'RestoreExternalBackup', 'RestoreExternalBackupSecondary', 'RestoreLongTermRetentionBackup', 'OnlineSecondary'. * * @return the createMode value */ @@ -273,7 +281,15 @@ public CreateMode createMode() { } /** - * Set the createMode value. + * Set specifies the mode of database creation. + Default: regular database creation. + Copy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database. + Secondary: creates a database as a secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database. + PointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified. + Recovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore. + Restore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time. + RestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID. + Copy, Secondary, and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition. Possible values include: 'Default', 'Copy', 'Secondary', 'PointInTimeRestore', 'Restore', 'Recovery', 'RestoreExternalBackup', 'RestoreExternalBackupSecondary', 'RestoreLongTermRetentionBackup', 'OnlineSecondary'. * * @param createMode the createMode value to set * @return the DatabaseUpdate object itself. @@ -284,7 +300,7 @@ public DatabaseUpdate withCreateMode(CreateMode createMode) { } /** - * Get the collation value. + * Get the collation of the database. * * @return the collation value */ @@ -293,7 +309,7 @@ public String collation() { } /** - * Set the collation value. + * Set the collation of the database. * * @param collation the collation value to set * @return the DatabaseUpdate object itself. @@ -304,7 +320,7 @@ public DatabaseUpdate withCollation(String collation) { } /** - * Get the maxSizeBytes value. + * Get the max size of the database expressed in bytes. * * @return the maxSizeBytes value */ @@ -313,7 +329,7 @@ public Long maxSizeBytes() { } /** - * Set the maxSizeBytes value. + * Set the max size of the database expressed in bytes. * * @param maxSizeBytes the maxSizeBytes value to set * @return the DatabaseUpdate object itself. @@ -324,7 +340,7 @@ public DatabaseUpdate withMaxSizeBytes(Long maxSizeBytes) { } /** - * Get the sampleName value. + * Get the name of the sample schema to apply when creating this database. Possible values include: 'AdventureWorksLT', 'WideWorldImportersStd', 'WideWorldImportersFull'. * * @return the sampleName value */ @@ -333,7 +349,7 @@ public SampleName sampleName() { } /** - * Set the sampleName value. + * Set the name of the sample schema to apply when creating this database. Possible values include: 'AdventureWorksLT', 'WideWorldImportersStd', 'WideWorldImportersFull'. * * @param sampleName the sampleName value to set * @return the DatabaseUpdate object itself. @@ -344,7 +360,7 @@ public DatabaseUpdate withSampleName(SampleName sampleName) { } /** - * Get the elasticPoolId value. + * Get the resource identifier of the elastic pool containing this database. * * @return the elasticPoolId value */ @@ -353,7 +369,7 @@ public String elasticPoolId() { } /** - * Set the elasticPoolId value. + * Set the resource identifier of the elastic pool containing this database. * * @param elasticPoolId the elasticPoolId value to set * @return the DatabaseUpdate object itself. @@ -364,7 +380,7 @@ public DatabaseUpdate withElasticPoolId(String elasticPoolId) { } /** - * Get the sourceDatabaseId value. + * Get the resource identifier of the source database associated with create operation of this database. * * @return the sourceDatabaseId value */ @@ -373,7 +389,7 @@ public String sourceDatabaseId() { } /** - * Set the sourceDatabaseId value. + * Set the resource identifier of the source database associated with create operation of this database. * * @param sourceDatabaseId the sourceDatabaseId value to set * @return the DatabaseUpdate object itself. @@ -384,7 +400,7 @@ public DatabaseUpdate withSourceDatabaseId(String sourceDatabaseId) { } /** - * Get the status value. + * Get the status of the database. Possible values include: 'Online', 'Restoring', 'RecoveryPending', 'Recovering', 'Suspect', 'Offline', 'Standby', 'Shutdown', 'EmergencyMode', 'AutoClosed', 'Copying', 'Creating', 'Inaccessible', 'OfflineSecondary', 'Pausing', 'Paused', 'Resuming', 'Scaling'. * * @return the status value */ @@ -393,7 +409,7 @@ public DatabaseStatus status() { } /** - * Get the databaseId value. + * Get the ID of the database. * * @return the databaseId value */ @@ -402,7 +418,7 @@ public UUID databaseId() { } /** - * Get the creationDate value. + * Get the creation date of the database (ISO8601 format). * * @return the creationDate value */ @@ -411,7 +427,7 @@ public DateTime creationDate() { } /** - * Get the currentServiceObjectiveName value. + * Get the current service level objective name of the database. * * @return the currentServiceObjectiveName value */ @@ -420,7 +436,7 @@ public String currentServiceObjectiveName() { } /** - * Get the requestedServiceObjectiveName value. + * Get the requested service level objective name of the database. * * @return the requestedServiceObjectiveName value */ @@ -429,7 +445,7 @@ public String requestedServiceObjectiveName() { } /** - * Get the defaultSecondaryLocation value. + * Get the default secondary region for this database. * * @return the defaultSecondaryLocation value */ @@ -438,7 +454,7 @@ public String defaultSecondaryLocation() { } /** - * Get the failoverGroupId value. + * Get failover Group resource identifier that this database belongs to. * * @return the failoverGroupId value */ @@ -447,7 +463,7 @@ public String failoverGroupId() { } /** - * Get the restorePointInTime value. + * Get specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @return the restorePointInTime value */ @@ -456,7 +472,7 @@ public DateTime restorePointInTime() { } /** - * Set the restorePointInTime value. + * Set specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @param restorePointInTime the restorePointInTime value to set * @return the DatabaseUpdate object itself. @@ -467,7 +483,7 @@ public DatabaseUpdate withRestorePointInTime(DateTime restorePointInTime) { } /** - * Get the sourceDatabaseDeletionDate value. + * Get specifies the time that the database was deleted. * * @return the sourceDatabaseDeletionDate value */ @@ -476,7 +492,7 @@ public DateTime sourceDatabaseDeletionDate() { } /** - * Set the sourceDatabaseDeletionDate value. + * Set specifies the time that the database was deleted. * * @param sourceDatabaseDeletionDate the sourceDatabaseDeletionDate value to set * @return the DatabaseUpdate object itself. @@ -487,7 +503,7 @@ public DatabaseUpdate withSourceDatabaseDeletionDate(DateTime sourceDatabaseDele } /** - * Get the recoveryServicesRecoveryPointId value. + * Get the resource identifier of the recovery point associated with create operation of this database. * * @return the recoveryServicesRecoveryPointId value */ @@ -496,7 +512,7 @@ public String recoveryServicesRecoveryPointId() { } /** - * Set the recoveryServicesRecoveryPointId value. + * Set the resource identifier of the recovery point associated with create operation of this database. * * @param recoveryServicesRecoveryPointId the recoveryServicesRecoveryPointId value to set * @return the DatabaseUpdate object itself. @@ -507,7 +523,7 @@ public DatabaseUpdate withRecoveryServicesRecoveryPointId(String recoveryService } /** - * Get the longTermRetentionBackupResourceId value. + * Get the resource identifier of the long term retention backup associated with create operation of this database. * * @return the longTermRetentionBackupResourceId value */ @@ -516,7 +532,7 @@ public String longTermRetentionBackupResourceId() { } /** - * Set the longTermRetentionBackupResourceId value. + * Set the resource identifier of the long term retention backup associated with create operation of this database. * * @param longTermRetentionBackupResourceId the longTermRetentionBackupResourceId value to set * @return the DatabaseUpdate object itself. @@ -527,7 +543,7 @@ public DatabaseUpdate withLongTermRetentionBackupResourceId(String longTermReten } /** - * Get the recoverableDatabaseId value. + * Get the resource identifier of the recoverable database associated with create operation of this database. * * @return the recoverableDatabaseId value */ @@ -536,7 +552,7 @@ public String recoverableDatabaseId() { } /** - * Set the recoverableDatabaseId value. + * Set the resource identifier of the recoverable database associated with create operation of this database. * * @param recoverableDatabaseId the recoverableDatabaseId value to set * @return the DatabaseUpdate object itself. @@ -547,7 +563,7 @@ public DatabaseUpdate withRecoverableDatabaseId(String recoverableDatabaseId) { } /** - * Get the restorableDroppedDatabaseId value. + * Get the resource identifier of the restorable dropped database associated with create operation of this database. * * @return the restorableDroppedDatabaseId value */ @@ -556,7 +572,7 @@ public String restorableDroppedDatabaseId() { } /** - * Set the restorableDroppedDatabaseId value. + * Set the resource identifier of the restorable dropped database associated with create operation of this database. * * @param restorableDroppedDatabaseId the restorableDroppedDatabaseId value to set * @return the DatabaseUpdate object itself. @@ -567,7 +583,7 @@ public DatabaseUpdate withRestorableDroppedDatabaseId(String restorableDroppedDa } /** - * Get the catalogCollation value. + * Get collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @return the catalogCollation value */ @@ -576,7 +592,7 @@ public CatalogCollationType catalogCollation() { } /** - * Set the catalogCollation value. + * Set collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @param catalogCollation the catalogCollation value to set * @return the DatabaseUpdate object itself. @@ -587,7 +603,7 @@ public DatabaseUpdate withCatalogCollation(CatalogCollationType catalogCollation } /** - * Get the zoneRedundant value. + * Get whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones. * * @return the zoneRedundant value */ @@ -596,7 +612,7 @@ public Boolean zoneRedundant() { } /** - * Set the zoneRedundant value. + * Set whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones. * * @param zoneRedundant the zoneRedundant value to set * @return the DatabaseUpdate object itself. @@ -607,7 +623,7 @@ public DatabaseUpdate withZoneRedundant(Boolean zoneRedundant) { } /** - * Get the licenseType value. + * Get the license type to apply for this database. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @return the licenseType value */ @@ -616,7 +632,7 @@ public DatabaseLicenseType licenseType() { } /** - * Set the licenseType value. + * Set the license type to apply for this database. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @param licenseType the licenseType value to set * @return the DatabaseUpdate object itself. @@ -627,7 +643,7 @@ public DatabaseUpdate withLicenseType(DatabaseLicenseType licenseType) { } /** - * Get the maxLogSizeBytes value. + * Get the max log size for this database. * * @return the maxLogSizeBytes value */ @@ -636,7 +652,7 @@ public Long maxLogSizeBytes() { } /** - * Get the earliestRestoreDate value. + * Get this records the earliest start date and time that restore is available for this database (ISO8601 format). * * @return the earliestRestoreDate value */ @@ -645,7 +661,7 @@ public DateTime earliestRestoreDate() { } /** - * Get the readScale value. + * Get the state of read-only routing. If enabled, connections that have application intent set to readonly in their connection string may be routed to a readonly secondary replica in the same region. Possible values include: 'Enabled', 'Disabled'. * * @return the readScale value */ @@ -654,7 +670,7 @@ public DatabaseReadScale readScale() { } /** - * Set the readScale value. + * Set the state of read-only routing. If enabled, connections that have application intent set to readonly in their connection string may be routed to a readonly secondary replica in the same region. Possible values include: 'Enabled', 'Disabled'. * * @param readScale the readScale value to set * @return the DatabaseUpdate object itself. @@ -665,7 +681,7 @@ public DatabaseUpdate withReadScale(DatabaseReadScale readScale) { } /** - * Get the currentSku value. + * Get the name and tier of the SKU. * * @return the currentSku value */ @@ -674,7 +690,7 @@ public Sku currentSku() { } /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -683,7 +699,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the DatabaseUpdate object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseVulnerabilityAssessmentRuleBaselineItem.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseVulnerabilityAssessmentRuleBaselineItem.java index ec8519b807a..0c0e0bd43fb 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseVulnerabilityAssessmentRuleBaselineItem.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/DatabaseVulnerabilityAssessmentRuleBaselineItem.java @@ -23,7 +23,7 @@ public class DatabaseVulnerabilityAssessmentRuleBaselineItem { private List result; /** - * Get the result value. + * Get the rule baseline result. * * @return the result value */ @@ -32,7 +32,7 @@ public List result() { } /** - * Set the result value. + * Set the rule baseline result. * * @param result the result value to set * @return the DatabaseVulnerabilityAssessmentRuleBaselineItem object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/EditionCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/EditionCapability.java index 552411b2f3e..e05dafdd8ca 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/EditionCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/EditionCapability.java @@ -47,7 +47,7 @@ public class EditionCapability { private String reason; /** - * Get the name value. + * Get the database edition name. * * @return the name value */ @@ -56,7 +56,7 @@ public String name() { } /** - * Get the supportedServiceLevelObjectives value. + * Get the list of supported service objectives for the edition. * * @return the supportedServiceLevelObjectives value */ @@ -65,7 +65,7 @@ public List supportedServiceLevelObjectives() { } /** - * Get the zoneRedundant value. + * Get whether or not zone redundancy is supported for the edition. * * @return the zoneRedundant value */ @@ -74,7 +74,7 @@ public Boolean zoneRedundant() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -83,7 +83,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -92,7 +92,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the EditionCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolEditionCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolEditionCapability.java index 2c41bbcf3b1..6b2f10d038e 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolEditionCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolEditionCapability.java @@ -47,7 +47,7 @@ public class ElasticPoolEditionCapability { private String reason; /** - * Get the name value. + * Get the elastic pool edition name. * * @return the name value */ @@ -56,7 +56,7 @@ public String name() { } /** - * Get the supportedElasticPoolPerformanceLevels value. + * Get the list of supported elastic pool DTU levels for the edition. * * @return the supportedElasticPoolPerformanceLevels value */ @@ -65,7 +65,7 @@ public List supportedElasticPoolPerforman } /** - * Get the zoneRedundant value. + * Get whether or not zone redundancy is supported for the edition. * * @return the zoneRedundant value */ @@ -74,7 +74,7 @@ public Boolean zoneRedundant() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -83,7 +83,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -92,7 +92,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ElasticPoolEditionCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMaxPerformanceLevelCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMaxPerformanceLevelCapability.java index 660c3b104a9..cc3bea34633 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMaxPerformanceLevelCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMaxPerformanceLevelCapability.java @@ -48,7 +48,7 @@ public class ElasticPoolPerDatabaseMaxPerformanceLevelCapability { private String reason; /** - * Get the limit value. + * Get the maximum performance level per database. * * @return the limit value */ @@ -57,7 +57,7 @@ public Double limit() { } /** - * Get the unit value. + * Get unit type used to measure performance level. Possible values include: 'DTU', 'VCores'. * * @return the unit value */ @@ -66,7 +66,7 @@ public PerformanceLevelUnit unit() { } /** - * Get the supportedPerDatabaseMinPerformanceLevels value. + * Get the list of supported min database performance levels. * * @return the supportedPerDatabaseMinPerformanceLevels value */ @@ -75,7 +75,7 @@ public List supportedPerDat } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -84,7 +84,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -93,7 +93,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ElasticPoolPerDatabaseMaxPerformanceLevelCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMinPerformanceLevelCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMinPerformanceLevelCapability.java index d7bfc5dac21..ee56cabd747 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMinPerformanceLevelCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseMinPerformanceLevelCapability.java @@ -41,7 +41,7 @@ public class ElasticPoolPerDatabaseMinPerformanceLevelCapability { private String reason; /** - * Get the limit value. + * Get the minimum performance level per database. * * @return the limit value */ @@ -50,7 +50,7 @@ public Double limit() { } /** - * Get the unit value. + * Get unit type used to measure performance level. Possible values include: 'DTU', 'VCores'. * * @return the unit value */ @@ -59,7 +59,7 @@ public PerformanceLevelUnit unit() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -68,7 +68,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -77,7 +77,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ElasticPoolPerDatabaseMinPerformanceLevelCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseSettings.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseSettings.java index 695f403386b..5cae9163873 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseSettings.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerDatabaseSettings.java @@ -27,7 +27,7 @@ public class ElasticPoolPerDatabaseSettings { private Double maxCapacity; /** - * Get the minCapacity value. + * Get the minimum capacity all databases are guaranteed. * * @return the minCapacity value */ @@ -36,7 +36,7 @@ public Double minCapacity() { } /** - * Set the minCapacity value. + * Set the minimum capacity all databases are guaranteed. * * @param minCapacity the minCapacity value to set * @return the ElasticPoolPerDatabaseSettings object itself. @@ -47,7 +47,7 @@ public ElasticPoolPerDatabaseSettings withMinCapacity(Double minCapacity) { } /** - * Get the maxCapacity value. + * Get the maximum capacity any one database can consume. * * @return the maxCapacity value */ @@ -56,7 +56,7 @@ public Double maxCapacity() { } /** - * Set the maxCapacity value. + * Set the maximum capacity any one database can consume. * * @param maxCapacity the maxCapacity value to set * @return the ElasticPoolPerDatabaseSettings object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerformanceLevelCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerformanceLevelCapability.java index 7850d25330e..1fbb548a7c5 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerformanceLevelCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolPerformanceLevelCapability.java @@ -77,7 +77,7 @@ public class ElasticPoolPerformanceLevelCapability { private String reason; /** - * Get the performanceLevel value. + * Get the performance level for the pool. * * @return the performanceLevel value */ @@ -86,7 +86,7 @@ public PerformanceLevelCapability performanceLevel() { } /** - * Get the sku value. + * Get the sku. * * @return the sku value */ @@ -95,7 +95,7 @@ public Sku sku() { } /** - * Get the supportedLicenseTypes value. + * Get list of supported license types. * * @return the supportedLicenseTypes value */ @@ -104,7 +104,7 @@ public List supportedLicenseTypes() { } /** - * Get the maxDatabaseCount value. + * Get the maximum number of databases supported. * * @return the maxDatabaseCount value */ @@ -113,7 +113,7 @@ public Integer maxDatabaseCount() { } /** - * Get the includedMaxSize value. + * Get the included (free) max size for this performance level. * * @return the includedMaxSize value */ @@ -122,7 +122,7 @@ public MaxSizeCapability includedMaxSize() { } /** - * Get the supportedMaxSizes value. + * Get the list of supported max sizes. * * @return the supportedMaxSizes value */ @@ -131,7 +131,7 @@ public List supportedMaxSizes() { } /** - * Get the supportedPerDatabaseMaxSizes value. + * Get the list of supported per database max sizes. * * @return the supportedPerDatabaseMaxSizes value */ @@ -140,7 +140,7 @@ public List supportedPerDatabaseMaxSizes() { } /** - * Get the supportedPerDatabaseMaxPerformanceLevels value. + * Get the list of supported per database max performance levels. * * @return the supportedPerDatabaseMaxPerformanceLevels value */ @@ -149,7 +149,7 @@ public List supportedPerDat } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -158,7 +158,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -167,7 +167,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ElasticPoolPerformanceLevelCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolUpdate.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolUpdate.java index 0c664da6d35..af142620f83 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolUpdate.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ElasticPoolUpdate.java @@ -77,7 +77,7 @@ public ElasticPoolUpdate withSku(Sku sku) { } /** - * Get the maxSizeBytes value. + * Get the storage limit for the database elastic pool in bytes. * * @return the maxSizeBytes value */ @@ -86,7 +86,7 @@ public Long maxSizeBytes() { } /** - * Set the maxSizeBytes value. + * Set the storage limit for the database elastic pool in bytes. * * @param maxSizeBytes the maxSizeBytes value to set * @return the ElasticPoolUpdate object itself. @@ -97,7 +97,7 @@ public ElasticPoolUpdate withMaxSizeBytes(Long maxSizeBytes) { } /** - * Get the perDatabaseSettings value. + * Get the per database settings for the elastic pool. * * @return the perDatabaseSettings value */ @@ -106,7 +106,7 @@ public ElasticPoolPerDatabaseSettings perDatabaseSettings() { } /** - * Set the perDatabaseSettings value. + * Set the per database settings for the elastic pool. * * @param perDatabaseSettings the perDatabaseSettings value to set * @return the ElasticPoolUpdate object itself. @@ -117,7 +117,7 @@ public ElasticPoolUpdate withPerDatabaseSettings(ElasticPoolPerDatabaseSettings } /** - * Get the zoneRedundant value. + * Get whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. * * @return the zoneRedundant value */ @@ -126,7 +126,7 @@ public Boolean zoneRedundant() { } /** - * Set the zoneRedundant value. + * Set whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. * * @param zoneRedundant the zoneRedundant value to set * @return the ElasticPoolUpdate object itself. @@ -137,7 +137,7 @@ public ElasticPoolUpdate withZoneRedundant(Boolean zoneRedundant) { } /** - * Get the licenseType value. + * Get the license type to apply for this elastic pool. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @return the licenseType value */ @@ -146,7 +146,7 @@ public ElasticPoolLicenseType licenseType() { } /** - * Set the licenseType value. + * Set the license type to apply for this elastic pool. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @param licenseType the licenseType value to set * @return the ElasticPoolUpdate object itself. @@ -157,7 +157,7 @@ public ElasticPoolUpdate withLicenseType(ElasticPoolLicenseType licenseType) { } /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -166,7 +166,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the ElasticPoolUpdate object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ExportRequest.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ExportRequest.java index 973ca35e053..2c1b15d69db 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ExportRequest.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ExportRequest.java @@ -53,7 +53,7 @@ public class ExportRequest { private AuthenticationType authenticationType; /** - * Get the storageKeyType value. + * Get the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'. * * @return the storageKeyType value */ @@ -62,7 +62,7 @@ public StorageKeyType storageKeyType() { } /** - * Set the storageKeyType value. + * Set the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'. * * @param storageKeyType the storageKeyType value to set * @return the ExportRequest object itself. @@ -73,7 +73,7 @@ public ExportRequest withStorageKeyType(StorageKeyType storageKeyType) { } /** - * Get the storageKey value. + * Get the storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?.". * * @return the storageKey value */ @@ -82,7 +82,7 @@ public String storageKey() { } /** - * Set the storageKey value. + * Set the storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?.". * * @param storageKey the storageKey value to set * @return the ExportRequest object itself. @@ -93,7 +93,7 @@ public ExportRequest withStorageKey(String storageKey) { } /** - * Get the storageUri value. + * Get the storage uri to use. * * @return the storageUri value */ @@ -102,7 +102,7 @@ public String storageUri() { } /** - * Set the storageUri value. + * Set the storage uri to use. * * @param storageUri the storageUri value to set * @return the ExportRequest object itself. @@ -113,7 +113,7 @@ public ExportRequest withStorageUri(String storageUri) { } /** - * Get the administratorLogin value. + * Get the name of the SQL administrator. * * @return the administratorLogin value */ @@ -122,7 +122,7 @@ public String administratorLogin() { } /** - * Set the administratorLogin value. + * Set the name of the SQL administrator. * * @param administratorLogin the administratorLogin value to set * @return the ExportRequest object itself. @@ -133,7 +133,7 @@ public ExportRequest withAdministratorLogin(String administratorLogin) { } /** - * Get the administratorLoginPassword value. + * Get the password of the SQL administrator. * * @return the administratorLoginPassword value */ @@ -142,7 +142,7 @@ public String administratorLoginPassword() { } /** - * Set the administratorLoginPassword value. + * Set the password of the SQL administrator. * * @param administratorLoginPassword the administratorLoginPassword value to set * @return the ExportRequest object itself. @@ -153,7 +153,7 @@ public ExportRequest withAdministratorLoginPassword(String administratorLoginPas } /** - * Get the authenticationType value. + * Get the authentication type. Possible values include: 'SQL', 'ADPassword'. * * @return the authenticationType value */ @@ -162,7 +162,7 @@ public AuthenticationType authenticationType() { } /** - * Set the authenticationType value. + * Set the authentication type. Possible values include: 'SQL', 'ADPassword'. * * @param authenticationType the authenticationType value to set * @return the ExportRequest object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadOnlyEndpoint.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadOnlyEndpoint.java index cdbca43b840..0a6a21e4e1a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadOnlyEndpoint.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadOnlyEndpoint.java @@ -22,7 +22,7 @@ public class FailoverGroupReadOnlyEndpoint { private ReadOnlyEndpointFailoverPolicy failoverPolicy; /** - * Get the failoverPolicy value. + * Get failover policy of the read-only endpoint for the failover group. Possible values include: 'Disabled', 'Enabled'. * * @return the failoverPolicy value */ @@ -31,7 +31,7 @@ public ReadOnlyEndpointFailoverPolicy failoverPolicy() { } /** - * Set the failoverPolicy value. + * Set failover policy of the read-only endpoint for the failover group. Possible values include: 'Disabled', 'Enabled'. * * @param failoverPolicy the failoverPolicy value to set * @return the FailoverGroupReadOnlyEndpoint object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadWriteEndpoint.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadWriteEndpoint.java index 8d252053e42..fcad917a694 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadWriteEndpoint.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupReadWriteEndpoint.java @@ -31,7 +31,7 @@ public class FailoverGroupReadWriteEndpoint { private Integer failoverWithDataLossGracePeriodMinutes; /** - * Get the failoverPolicy value. + * Get failover policy of the read-write endpoint for the failover group. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. Possible values include: 'Manual', 'Automatic'. * * @return the failoverPolicy value */ @@ -40,7 +40,7 @@ public ReadWriteEndpointFailoverPolicy failoverPolicy() { } /** - * Set the failoverPolicy value. + * Set failover policy of the read-write endpoint for the failover group. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. Possible values include: 'Manual', 'Automatic'. * * @param failoverPolicy the failoverPolicy value to set * @return the FailoverGroupReadWriteEndpoint object itself. @@ -51,7 +51,7 @@ public FailoverGroupReadWriteEndpoint withFailoverPolicy(ReadWriteEndpointFailov } /** - * Get the failoverWithDataLossGracePeriodMinutes value. + * Get grace period before failover with data loss is attempted for the read-write endpoint. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. * * @return the failoverWithDataLossGracePeriodMinutes value */ @@ -60,7 +60,7 @@ public Integer failoverWithDataLossGracePeriodMinutes() { } /** - * Set the failoverWithDataLossGracePeriodMinutes value. + * Set grace period before failover with data loss is attempted for the read-write endpoint. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. * * @param failoverWithDataLossGracePeriodMinutes the failoverWithDataLossGracePeriodMinutes value to set * @return the FailoverGroupReadWriteEndpoint object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupUpdate.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupUpdate.java index 9b2ea932ee4..55ecec20c30 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupUpdate.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/FailoverGroupUpdate.java @@ -43,7 +43,7 @@ public class FailoverGroupUpdate { private Map tags; /** - * Get the readWriteEndpoint value. + * Get read-write endpoint of the failover group instance. * * @return the readWriteEndpoint value */ @@ -52,7 +52,7 @@ public FailoverGroupReadWriteEndpoint readWriteEndpoint() { } /** - * Set the readWriteEndpoint value. + * Set read-write endpoint of the failover group instance. * * @param readWriteEndpoint the readWriteEndpoint value to set * @return the FailoverGroupUpdate object itself. @@ -63,7 +63,7 @@ public FailoverGroupUpdate withReadWriteEndpoint(FailoverGroupReadWriteEndpoint } /** - * Get the readOnlyEndpoint value. + * Get read-only endpoint of the failover group instance. * * @return the readOnlyEndpoint value */ @@ -72,7 +72,7 @@ public FailoverGroupReadOnlyEndpoint readOnlyEndpoint() { } /** - * Set the readOnlyEndpoint value. + * Set read-only endpoint of the failover group instance. * * @param readOnlyEndpoint the readOnlyEndpoint value to set * @return the FailoverGroupUpdate object itself. @@ -83,7 +83,7 @@ public FailoverGroupUpdate withReadOnlyEndpoint(FailoverGroupReadOnlyEndpoint re } /** - * Get the databases value. + * Get list of databases in the failover group. * * @return the databases value */ @@ -92,7 +92,7 @@ public List databases() { } /** - * Set the databases value. + * Set list of databases in the failover group. * * @param databases the databases value to set * @return the FailoverGroupUpdate object itself. @@ -103,7 +103,7 @@ public FailoverGroupUpdate withDatabases(List databases) { } /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -112,7 +112,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the FailoverGroupUpdate object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportExtensionRequest.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportExtensionRequest.java index 9d3348ec422..834e4e95e09 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportExtensionRequest.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportExtensionRequest.java @@ -74,13 +74,18 @@ public class ImportExtensionRequest { /** * Creates an instance of ImportExtensionRequest class. + * @param storageKeyType the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'. + * @param storageKey the storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?.". + * @param storageUri the storage uri to use. + * @param administratorLogin the name of the SQL administrator. + * @param administratorLoginPassword the password of the SQL administrator. */ public ImportExtensionRequest() { operationMode = "Import"; } /** - * Get the name value. + * Get the name of the extension. * * @return the name value */ @@ -89,7 +94,7 @@ public String name() { } /** - * Set the name value. + * Set the name of the extension. * * @param name the name value to set * @return the ImportExtensionRequest object itself. @@ -100,7 +105,7 @@ public ImportExtensionRequest withName(String name) { } /** - * Get the type value. + * Get the type of the extension. * * @return the type value */ @@ -109,7 +114,7 @@ public String type() { } /** - * Set the type value. + * Set the type of the extension. * * @param type the type value to set * @return the ImportExtensionRequest object itself. @@ -120,7 +125,7 @@ public ImportExtensionRequest withType(String type) { } /** - * Get the storageKeyType value. + * Get the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'. * * @return the storageKeyType value */ @@ -129,7 +134,7 @@ public StorageKeyType storageKeyType() { } /** - * Set the storageKeyType value. + * Set the type of the storage key to use. Possible values include: 'StorageAccessKey', 'SharedAccessKey'. * * @param storageKeyType the storageKeyType value to set * @return the ImportExtensionRequest object itself. @@ -140,7 +145,7 @@ public ImportExtensionRequest withStorageKeyType(StorageKeyType storageKeyType) } /** - * Get the storageKey value. + * Get the storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?.". * * @return the storageKey value */ @@ -149,7 +154,7 @@ public String storageKey() { } /** - * Set the storageKey value. + * Set the storage key to use. If storage key type is SharedAccessKey, it must be preceded with a "?.". * * @param storageKey the storageKey value to set * @return the ImportExtensionRequest object itself. @@ -160,7 +165,7 @@ public ImportExtensionRequest withStorageKey(String storageKey) { } /** - * Get the storageUri value. + * Get the storage uri to use. * * @return the storageUri value */ @@ -169,7 +174,7 @@ public String storageUri() { } /** - * Set the storageUri value. + * Set the storage uri to use. * * @param storageUri the storageUri value to set * @return the ImportExtensionRequest object itself. @@ -180,7 +185,7 @@ public ImportExtensionRequest withStorageUri(String storageUri) { } /** - * Get the administratorLogin value. + * Get the name of the SQL administrator. * * @return the administratorLogin value */ @@ -189,7 +194,7 @@ public String administratorLogin() { } /** - * Set the administratorLogin value. + * Set the name of the SQL administrator. * * @param administratorLogin the administratorLogin value to set * @return the ImportExtensionRequest object itself. @@ -200,7 +205,7 @@ public ImportExtensionRequest withAdministratorLogin(String administratorLogin) } /** - * Get the administratorLoginPassword value. + * Get the password of the SQL administrator. * * @return the administratorLoginPassword value */ @@ -209,7 +214,7 @@ public String administratorLoginPassword() { } /** - * Set the administratorLoginPassword value. + * Set the password of the SQL administrator. * * @param administratorLoginPassword the administratorLoginPassword value to set * @return the ImportExtensionRequest object itself. @@ -220,7 +225,7 @@ public ImportExtensionRequest withAdministratorLoginPassword(String administrato } /** - * Get the authenticationType value. + * Get the authentication type. Possible values include: 'SQL', 'ADPassword'. * * @return the authenticationType value */ @@ -229,7 +234,7 @@ public AuthenticationType authenticationType() { } /** - * Set the authenticationType value. + * Set the authentication type. Possible values include: 'SQL', 'ADPassword'. * * @param authenticationType the authenticationType value to set * @return the ImportExtensionRequest object itself. @@ -240,7 +245,7 @@ public ImportExtensionRequest withAuthenticationType(AuthenticationType authenti } /** - * Get the operationMode value. + * Get the type of import operation being performed. This is always Import. * * @return the operationMode value */ @@ -249,7 +254,7 @@ public String operationMode() { } /** - * Set the operationMode value. + * Set the type of import operation being performed. This is always Import. * * @param operationMode the operationMode value to set * @return the ImportExtensionRequest object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportRequest.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportRequest.java index 4ce11244ff3..0b2cd31cc53 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportRequest.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ImportRequest.java @@ -50,7 +50,7 @@ public class ImportRequest extends ExportRequest { private String maxSizeBytes; /** - * Get the databaseName value. + * Get the name of the database to import. * * @return the databaseName value */ @@ -59,7 +59,7 @@ public String databaseName() { } /** - * Set the databaseName value. + * Set the name of the database to import. * * @param databaseName the databaseName value to set * @return the ImportRequest object itself. @@ -70,7 +70,7 @@ public ImportRequest withDatabaseName(String databaseName) { } /** - * Get the edition value. + * Get the edition for the database being created. Possible values include: 'Web', 'Business', 'Basic', 'Standard', 'Premium', 'PremiumRS', 'Free', 'Stretch', 'DataWarehouse', 'System', 'System2'. * * @return the edition value */ @@ -79,7 +79,7 @@ public DatabaseEdition edition() { } /** - * Set the edition value. + * Set the edition for the database being created. Possible values include: 'Web', 'Business', 'Basic', 'Standard', 'Premium', 'PremiumRS', 'Free', 'Stretch', 'DataWarehouse', 'System', 'System2'. * * @param edition the edition value to set * @return the ImportRequest object itself. @@ -90,7 +90,7 @@ public ImportRequest withEdition(DatabaseEdition edition) { } /** - * Get the serviceObjectiveName value. + * Get the name of the service objective to assign to the database. Possible values include: 'System', 'System0', 'System1', 'System2', 'System3', 'System4', 'System2L', 'System3L', 'System4L', 'Free', 'Basic', 'S0', 'S1', 'S2', 'S3', 'S4', 'S6', 'S7', 'S9', 'S12', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'PRS1', 'PRS2', 'PRS4', 'PRS6', 'DW100', 'DW200', 'DW300', 'DW400', 'DW500', 'DW600', 'DW1000', 'DW1200', 'DW1000c', 'DW1500', 'DW1500c', 'DW2000', 'DW2000c', 'DW3000', 'DW2500c', 'DW3000c', 'DW6000', 'DW5000c', 'DW6000c', 'DW7500c', 'DW10000c', 'DW15000c', 'DW30000c', 'DS100', 'DS200', 'DS300', 'DS400', 'DS500', 'DS600', 'DS1000', 'DS1200', 'DS1500', 'DS2000', 'ElasticPool'. * * @return the serviceObjectiveName value */ @@ -99,7 +99,7 @@ public ServiceObjectiveName serviceObjectiveName() { } /** - * Set the serviceObjectiveName value. + * Set the name of the service objective to assign to the database. Possible values include: 'System', 'System0', 'System1', 'System2', 'System3', 'System4', 'System2L', 'System3L', 'System4L', 'Free', 'Basic', 'S0', 'S1', 'S2', 'S3', 'S4', 'S6', 'S7', 'S9', 'S12', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'PRS1', 'PRS2', 'PRS4', 'PRS6', 'DW100', 'DW200', 'DW300', 'DW400', 'DW500', 'DW600', 'DW1000', 'DW1200', 'DW1000c', 'DW1500', 'DW1500c', 'DW2000', 'DW2000c', 'DW3000', 'DW2500c', 'DW3000c', 'DW6000', 'DW5000c', 'DW6000c', 'DW7500c', 'DW10000c', 'DW15000c', 'DW30000c', 'DS100', 'DS200', 'DS300', 'DS400', 'DS500', 'DS600', 'DS1000', 'DS1200', 'DS1500', 'DS2000', 'ElasticPool'. * * @param serviceObjectiveName the serviceObjectiveName value to set * @return the ImportRequest object itself. @@ -110,7 +110,7 @@ public ImportRequest withServiceObjectiveName(ServiceObjectiveName serviceObject } /** - * Get the maxSizeBytes value. + * Get the maximum size for the newly imported database. * * @return the maxSizeBytes value */ @@ -119,7 +119,7 @@ public String maxSizeBytes() { } /** - * Set the maxSizeBytes value. + * Set the maximum size for the newly imported database. * * @param maxSizeBytes the maxSizeBytes value to set * @return the ImportRequest object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadOnlyEndpoint.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadOnlyEndpoint.java index 7ed65cc4b4c..b5d04e3aec1 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadOnlyEndpoint.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadOnlyEndpoint.java @@ -22,7 +22,7 @@ public class InstanceFailoverGroupReadOnlyEndpoint { private ReadOnlyEndpointFailoverPolicy failoverPolicy; /** - * Get the failoverPolicy value. + * Get failover policy of the read-only endpoint for the failover group. Possible values include: 'Disabled', 'Enabled'. * * @return the failoverPolicy value */ @@ -31,7 +31,7 @@ public ReadOnlyEndpointFailoverPolicy failoverPolicy() { } /** - * Set the failoverPolicy value. + * Set failover policy of the read-only endpoint for the failover group. Possible values include: 'Disabled', 'Enabled'. * * @param failoverPolicy the failoverPolicy value to set * @return the InstanceFailoverGroupReadOnlyEndpoint object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadWriteEndpoint.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadWriteEndpoint.java index 4718a45bf99..b43f9cd6866 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadWriteEndpoint.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/InstanceFailoverGroupReadWriteEndpoint.java @@ -31,7 +31,7 @@ public class InstanceFailoverGroupReadWriteEndpoint { private Integer failoverWithDataLossGracePeriodMinutes; /** - * Get the failoverPolicy value. + * Get failover policy of the read-write endpoint for the failover group. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. Possible values include: 'Manual', 'Automatic'. * * @return the failoverPolicy value */ @@ -40,7 +40,7 @@ public ReadWriteEndpointFailoverPolicy failoverPolicy() { } /** - * Set the failoverPolicy value. + * Set failover policy of the read-write endpoint for the failover group. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. Possible values include: 'Manual', 'Automatic'. * * @param failoverPolicy the failoverPolicy value to set * @return the InstanceFailoverGroupReadWriteEndpoint object itself. @@ -51,7 +51,7 @@ public InstanceFailoverGroupReadWriteEndpoint withFailoverPolicy(ReadWriteEndpoi } /** - * Get the failoverWithDataLossGracePeriodMinutes value. + * Get grace period before failover with data loss is attempted for the read-write endpoint. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. * * @return the failoverWithDataLossGracePeriodMinutes value */ @@ -60,7 +60,7 @@ public Integer failoverWithDataLossGracePeriodMinutes() { } /** - * Set the failoverWithDataLossGracePeriodMinutes value. + * Set grace period before failover with data loss is attempted for the read-write endpoint. If failoverPolicy is Automatic then failoverWithDataLossGracePeriodMinutes is required. * * @param failoverWithDataLossGracePeriodMinutes the failoverWithDataLossGracePeriodMinutes value to set * @return the InstanceFailoverGroupReadWriteEndpoint object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobAgentUpdate.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobAgentUpdate.java index f6200ae8bb8..55b4b6c93ea 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobAgentUpdate.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobAgentUpdate.java @@ -22,7 +22,7 @@ public class JobAgentUpdate { private Map tags; /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -31,7 +31,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the JobAgentUpdate object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobExecutionTarget.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobExecutionTarget.java index d31c58fa946..a122f380c99 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobExecutionTarget.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobExecutionTarget.java @@ -34,7 +34,7 @@ public class JobExecutionTarget { private String databaseName; /** - * Get the type value. + * Get the type of the target. Possible values include: 'TargetGroup', 'SqlDatabase', 'SqlElasticPool', 'SqlShardMap', 'SqlServer'. * * @return the type value */ @@ -43,7 +43,7 @@ public JobTargetType type() { } /** - * Get the serverName value. + * Get the server name. * * @return the serverName value */ @@ -52,7 +52,7 @@ public String serverName() { } /** - * Get the databaseName value. + * Get the database name. * * @return the databaseName value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobSchedule.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobSchedule.java index 21c6c6cff91..7756a769c58 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobSchedule.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobSchedule.java @@ -47,7 +47,7 @@ public class JobSchedule { private String interval; /** - * Get the startTime value. + * Get schedule start time. * * @return the startTime value */ @@ -56,7 +56,7 @@ public DateTime startTime() { } /** - * Set the startTime value. + * Set schedule start time. * * @param startTime the startTime value to set * @return the JobSchedule object itself. @@ -67,7 +67,7 @@ public JobSchedule withStartTime(DateTime startTime) { } /** - * Get the endTime value. + * Get schedule end time. * * @return the endTime value */ @@ -76,7 +76,7 @@ public DateTime endTime() { } /** - * Set the endTime value. + * Set schedule end time. * * @param endTime the endTime value to set * @return the JobSchedule object itself. @@ -87,7 +87,7 @@ public JobSchedule withEndTime(DateTime endTime) { } /** - * Get the type value. + * Get schedule interval type. Possible values include: 'Once', 'Recurring'. * * @return the type value */ @@ -96,7 +96,7 @@ public JobScheduleType type() { } /** - * Set the type value. + * Set schedule interval type. Possible values include: 'Once', 'Recurring'. * * @param type the type value to set * @return the JobSchedule object itself. @@ -107,7 +107,7 @@ public JobSchedule withType(JobScheduleType type) { } /** - * Get the enabled value. + * Get whether or not the schedule is enabled. * * @return the enabled value */ @@ -116,7 +116,7 @@ public Boolean enabled() { } /** - * Set the enabled value. + * Set whether or not the schedule is enabled. * * @param enabled the enabled value to set * @return the JobSchedule object itself. @@ -127,7 +127,7 @@ public JobSchedule withEnabled(Boolean enabled) { } /** - * Get the interval value. + * Get value of the schedule's recurring interval, if the scheduletype is recurring. ISO8601 duration format. * * @return the interval value */ @@ -136,7 +136,7 @@ public String interval() { } /** - * Set the interval value. + * Set value of the schedule's recurring interval, if the scheduletype is recurring. ISO8601 duration format. * * @param interval the interval value to set * @return the JobSchedule object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepAction.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepAction.java index 8f27b80cba2..cf9b98f95c8 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepAction.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepAction.java @@ -34,7 +34,7 @@ public class JobStepAction { private String value; /** - * Get the type value. + * Get type of action being executed by the job step. Possible values include: 'TSql'. * * @return the type value */ @@ -43,7 +43,7 @@ public JobStepActionType type() { } /** - * Set the type value. + * Set type of action being executed by the job step. Possible values include: 'TSql'. * * @param type the type value to set * @return the JobStepAction object itself. @@ -54,7 +54,7 @@ public JobStepAction withType(JobStepActionType type) { } /** - * Get the source value. + * Get the source of the action to execute. Possible values include: 'Inline'. * * @return the source value */ @@ -63,7 +63,7 @@ public JobStepActionSource source() { } /** - * Set the source value. + * Set the source of the action to execute. Possible values include: 'Inline'. * * @param source the source value to set * @return the JobStepAction object itself. @@ -74,7 +74,7 @@ public JobStepAction withSource(JobStepActionSource source) { } /** - * Get the value value. + * Get the action value, for example the text of the T-SQL script to execute. * * @return the value value */ @@ -83,7 +83,7 @@ public String value() { } /** - * Set the value value. + * Set the action value, for example the text of the T-SQL script to execute. * * @param value the value value to set * @return the JobStepAction object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepExecutionOptions.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepExecutionOptions.java index deb9b752891..e467a469d0a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepExecutionOptions.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepExecutionOptions.java @@ -47,7 +47,7 @@ public class JobStepExecutionOptions { private Double retryIntervalBackoffMultiplier; /** - * Get the timeoutSeconds value. + * Get execution timeout for the job step. * * @return the timeoutSeconds value */ @@ -56,7 +56,7 @@ public Integer timeoutSeconds() { } /** - * Set the timeoutSeconds value. + * Set execution timeout for the job step. * * @param timeoutSeconds the timeoutSeconds value to set * @return the JobStepExecutionOptions object itself. @@ -67,7 +67,7 @@ public JobStepExecutionOptions withTimeoutSeconds(Integer timeoutSeconds) { } /** - * Get the retryAttempts value. + * Get maximum number of times the job step will be reattempted if the first attempt fails. * * @return the retryAttempts value */ @@ -76,7 +76,7 @@ public Integer retryAttempts() { } /** - * Set the retryAttempts value. + * Set maximum number of times the job step will be reattempted if the first attempt fails. * * @param retryAttempts the retryAttempts value to set * @return the JobStepExecutionOptions object itself. @@ -87,7 +87,7 @@ public JobStepExecutionOptions withRetryAttempts(Integer retryAttempts) { } /** - * Get the initialRetryIntervalSeconds value. + * Get initial delay between retries for job step execution. * * @return the initialRetryIntervalSeconds value */ @@ -96,7 +96,7 @@ public Integer initialRetryIntervalSeconds() { } /** - * Set the initialRetryIntervalSeconds value. + * Set initial delay between retries for job step execution. * * @param initialRetryIntervalSeconds the initialRetryIntervalSeconds value to set * @return the JobStepExecutionOptions object itself. @@ -107,7 +107,7 @@ public JobStepExecutionOptions withInitialRetryIntervalSeconds(Integer initialRe } /** - * Get the maximumRetryIntervalSeconds value. + * Get the maximum amount of time to wait between retries for job step execution. * * @return the maximumRetryIntervalSeconds value */ @@ -116,7 +116,7 @@ public Integer maximumRetryIntervalSeconds() { } /** - * Set the maximumRetryIntervalSeconds value. + * Set the maximum amount of time to wait between retries for job step execution. * * @param maximumRetryIntervalSeconds the maximumRetryIntervalSeconds value to set * @return the JobStepExecutionOptions object itself. @@ -127,7 +127,7 @@ public JobStepExecutionOptions withMaximumRetryIntervalSeconds(Integer maximumRe } /** - * Get the retryIntervalBackoffMultiplier value. + * Get the backoff multiplier for the time between retries. * * @return the retryIntervalBackoffMultiplier value */ @@ -136,7 +136,7 @@ public Double retryIntervalBackoffMultiplier() { } /** - * Set the retryIntervalBackoffMultiplier value. + * Set the backoff multiplier for the time between retries. * * @param retryIntervalBackoffMultiplier the retryIntervalBackoffMultiplier value to set * @return the JobStepExecutionOptions object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepOutput.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepOutput.java index 28baaa7dfeb..4b5ffe6d9d3 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepOutput.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobStepOutput.java @@ -65,7 +65,7 @@ public class JobStepOutput { private String credential; /** - * Get the type value. + * Get the output destination type. Possible values include: 'SqlDatabase'. * * @return the type value */ @@ -74,7 +74,7 @@ public JobStepOutputType type() { } /** - * Set the type value. + * Set the output destination type. Possible values include: 'SqlDatabase'. * * @param type the type value to set * @return the JobStepOutput object itself. @@ -85,7 +85,7 @@ public JobStepOutput withType(JobStepOutputType type) { } /** - * Get the subscriptionId value. + * Get the output destination subscription id. * * @return the subscriptionId value */ @@ -94,7 +94,7 @@ public UUID subscriptionId() { } /** - * Set the subscriptionId value. + * Set the output destination subscription id. * * @param subscriptionId the subscriptionId value to set * @return the JobStepOutput object itself. @@ -105,7 +105,7 @@ public JobStepOutput withSubscriptionId(UUID subscriptionId) { } /** - * Get the resourceGroupName value. + * Get the output destination resource group. * * @return the resourceGroupName value */ @@ -114,7 +114,7 @@ public String resourceGroupName() { } /** - * Set the resourceGroupName value. + * Set the output destination resource group. * * @param resourceGroupName the resourceGroupName value to set * @return the JobStepOutput object itself. @@ -125,7 +125,7 @@ public JobStepOutput withResourceGroupName(String resourceGroupName) { } /** - * Get the serverName value. + * Get the output destination server name. * * @return the serverName value */ @@ -134,7 +134,7 @@ public String serverName() { } /** - * Set the serverName value. + * Set the output destination server name. * * @param serverName the serverName value to set * @return the JobStepOutput object itself. @@ -145,7 +145,7 @@ public JobStepOutput withServerName(String serverName) { } /** - * Get the databaseName value. + * Get the output destination database. * * @return the databaseName value */ @@ -154,7 +154,7 @@ public String databaseName() { } /** - * Set the databaseName value. + * Set the output destination database. * * @param databaseName the databaseName value to set * @return the JobStepOutput object itself. @@ -165,7 +165,7 @@ public JobStepOutput withDatabaseName(String databaseName) { } /** - * Get the schemaName value. + * Get the output destination schema. * * @return the schemaName value */ @@ -174,7 +174,7 @@ public String schemaName() { } /** - * Set the schemaName value. + * Set the output destination schema. * * @param schemaName the schemaName value to set * @return the JobStepOutput object itself. @@ -185,7 +185,7 @@ public JobStepOutput withSchemaName(String schemaName) { } /** - * Get the tableName value. + * Get the output destination table. * * @return the tableName value */ @@ -194,7 +194,7 @@ public String tableName() { } /** - * Set the tableName value. + * Set the output destination table. * * @param tableName the tableName value to set * @return the JobStepOutput object itself. @@ -205,7 +205,7 @@ public JobStepOutput withTableName(String tableName) { } /** - * Get the credential value. + * Get the resource ID of the credential to use to connect to the output destination. * * @return the credential value */ @@ -214,7 +214,7 @@ public String credential() { } /** - * Set the credential value. + * Set the resource ID of the credential to use to connect to the output destination. * * @param credential the credential value to set * @return the JobStepOutput object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobTarget.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobTarget.java index 2f94e3175b3..eba06a1f689 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobTarget.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/JobTarget.java @@ -62,7 +62,7 @@ public class JobTarget { private String refreshCredential; /** - * Get the membershipType value. + * Get whether the target is included or excluded from the group. Possible values include: 'Include', 'Exclude'. * * @return the membershipType value */ @@ -71,7 +71,7 @@ public JobTargetGroupMembershipType membershipType() { } /** - * Set the membershipType value. + * Set whether the target is included or excluded from the group. Possible values include: 'Include', 'Exclude'. * * @param membershipType the membershipType value to set * @return the JobTarget object itself. @@ -82,7 +82,7 @@ public JobTarget withMembershipType(JobTargetGroupMembershipType membershipType) } /** - * Get the type value. + * Get the target type. Possible values include: 'TargetGroup', 'SqlDatabase', 'SqlElasticPool', 'SqlShardMap', 'SqlServer'. * * @return the type value */ @@ -91,7 +91,7 @@ public JobTargetType type() { } /** - * Set the type value. + * Set the target type. Possible values include: 'TargetGroup', 'SqlDatabase', 'SqlElasticPool', 'SqlShardMap', 'SqlServer'. * * @param type the type value to set * @return the JobTarget object itself. @@ -102,7 +102,7 @@ public JobTarget withType(JobTargetType type) { } /** - * Get the serverName value. + * Get the target server name. * * @return the serverName value */ @@ -111,7 +111,7 @@ public String serverName() { } /** - * Set the serverName value. + * Set the target server name. * * @param serverName the serverName value to set * @return the JobTarget object itself. @@ -122,7 +122,7 @@ public JobTarget withServerName(String serverName) { } /** - * Get the databaseName value. + * Get the target database name. * * @return the databaseName value */ @@ -131,7 +131,7 @@ public String databaseName() { } /** - * Set the databaseName value. + * Set the target database name. * * @param databaseName the databaseName value to set * @return the JobTarget object itself. @@ -142,7 +142,7 @@ public JobTarget withDatabaseName(String databaseName) { } /** - * Get the elasticPoolName value. + * Get the target elastic pool name. * * @return the elasticPoolName value */ @@ -151,7 +151,7 @@ public String elasticPoolName() { } /** - * Set the elasticPoolName value. + * Set the target elastic pool name. * * @param elasticPoolName the elasticPoolName value to set * @return the JobTarget object itself. @@ -162,7 +162,7 @@ public JobTarget withElasticPoolName(String elasticPoolName) { } /** - * Get the shardMapName value. + * Get the target shard map. * * @return the shardMapName value */ @@ -171,7 +171,7 @@ public String shardMapName() { } /** - * Set the shardMapName value. + * Set the target shard map. * * @param shardMapName the shardMapName value to set * @return the JobTarget object itself. @@ -182,7 +182,7 @@ public JobTarget withShardMapName(String shardMapName) { } /** - * Get the refreshCredential value. + * Get the resource ID of the credential that is used during job execution to connect to the target and determine the list of databases inside the target. * * @return the refreshCredential value */ @@ -191,7 +191,7 @@ public String refreshCredential() { } /** - * Set the refreshCredential value. + * Set the resource ID of the credential that is used during job execution to connect to the target and determine the list of databases inside the target. * * @param refreshCredential the refreshCredential value to set * @return the JobTarget object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LicenseTypeCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LicenseTypeCapability.java index 666d77875e0..19f2110dabf 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LicenseTypeCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LicenseTypeCapability.java @@ -34,7 +34,7 @@ public class LicenseTypeCapability { private String reason; /** - * Get the name value. + * Get license type identifier. * * @return the name value */ @@ -43,7 +43,7 @@ public String name() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -52,7 +52,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -61,7 +61,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the LicenseTypeCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LogSizeCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LogSizeCapability.java index 9dc2c0290bb..f023aaf59f7 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LogSizeCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/LogSizeCapability.java @@ -28,7 +28,7 @@ public class LogSizeCapability { private LogSizeUnit unit; /** - * Get the limit value. + * Get the log size limit (see 'unit' for the units). * * @return the limit value */ @@ -37,7 +37,7 @@ public Integer limit() { } /** - * Get the unit value. + * Get the units that the limit is expressed in. Possible values include: 'Megabytes', 'Gigabytes', 'Terabytes', 'Petabytes', 'Percent'. * * @return the unit value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedDatabaseUpdate.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedDatabaseUpdate.java index 5ab037cee36..1b3dca8c877 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedDatabaseUpdate.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedDatabaseUpdate.java @@ -112,7 +112,7 @@ public class ManagedDatabaseUpdate { private Map tags; /** - * Get the collation value. + * Get collation of the managed database. * * @return the collation value */ @@ -121,7 +121,7 @@ public String collation() { } /** - * Set the collation value. + * Set collation of the managed database. * * @param collation the collation value to set * @return the ManagedDatabaseUpdate object itself. @@ -132,7 +132,7 @@ public ManagedDatabaseUpdate withCollation(String collation) { } /** - * Get the status value. + * Get status for the database. Possible values include: 'Online', 'Offline', 'Shutdown', 'Creating', 'Inaccessible'. * * @return the status value */ @@ -141,7 +141,7 @@ public ManagedDatabaseStatus status() { } /** - * Get the creationDate value. + * Get creation date of the database. * * @return the creationDate value */ @@ -150,7 +150,7 @@ public DateTime creationDate() { } /** - * Get the earliestRestorePoint value. + * Get earliest restore point in time for point in time restore. * * @return the earliestRestorePoint value */ @@ -159,7 +159,7 @@ public DateTime earliestRestorePoint() { } /** - * Get the restorePointInTime value. + * Get conditional. If createMode is PointInTimeRestore, this value is required. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @return the restorePointInTime value */ @@ -168,7 +168,7 @@ public DateTime restorePointInTime() { } /** - * Set the restorePointInTime value. + * Set conditional. If createMode is PointInTimeRestore, this value is required. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @param restorePointInTime the restorePointInTime value to set * @return the ManagedDatabaseUpdate object itself. @@ -179,7 +179,7 @@ public ManagedDatabaseUpdate withRestorePointInTime(DateTime restorePointInTime) } /** - * Get the defaultSecondaryLocation value. + * Get geo paired region. * * @return the defaultSecondaryLocation value */ @@ -188,7 +188,7 @@ public String defaultSecondaryLocation() { } /** - * Get the catalogCollation value. + * Get collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @return the catalogCollation value */ @@ -197,7 +197,7 @@ public CatalogCollationType catalogCollation() { } /** - * Set the catalogCollation value. + * Set collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @param catalogCollation the catalogCollation value to set * @return the ManagedDatabaseUpdate object itself. @@ -208,7 +208,7 @@ public ManagedDatabaseUpdate withCatalogCollation(CatalogCollationType catalogCo } /** - * Get the createMode value. + * Get managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Possible values include: 'Default', 'RestoreExternalBackup', 'PointInTimeRestore'. * * @return the createMode value */ @@ -217,7 +217,7 @@ public ManagedDatabaseCreateMode createMode() { } /** - * Set the createMode value. + * Set managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Possible values include: 'Default', 'RestoreExternalBackup', 'PointInTimeRestore'. * * @param createMode the createMode value to set * @return the ManagedDatabaseUpdate object itself. @@ -228,7 +228,7 @@ public ManagedDatabaseUpdate withCreateMode(ManagedDatabaseCreateMode createMode } /** - * Get the storageContainerUri value. + * Get conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the uri of the storage container where backups for this restore are stored. * * @return the storageContainerUri value */ @@ -237,7 +237,7 @@ public String storageContainerUri() { } /** - * Set the storageContainerUri value. + * Set conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the uri of the storage container where backups for this restore are stored. * * @param storageContainerUri the storageContainerUri value to set * @return the ManagedDatabaseUpdate object itself. @@ -248,7 +248,7 @@ public ManagedDatabaseUpdate withStorageContainerUri(String storageContainerUri) } /** - * Get the sourceDatabaseId value. + * Get the resource identifier of the source database associated with create operation of this database. * * @return the sourceDatabaseId value */ @@ -257,7 +257,7 @@ public String sourceDatabaseId() { } /** - * Set the sourceDatabaseId value. + * Set the resource identifier of the source database associated with create operation of this database. * * @param sourceDatabaseId the sourceDatabaseId value to set * @return the ManagedDatabaseUpdate object itself. @@ -268,7 +268,7 @@ public ManagedDatabaseUpdate withSourceDatabaseId(String sourceDatabaseId) { } /** - * Get the storageContainerSasToken value. + * Get conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the storage container sas token. * * @return the storageContainerSasToken value */ @@ -277,7 +277,7 @@ public String storageContainerSasToken() { } /** - * Set the storageContainerSasToken value. + * Set conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the storage container sas token. * * @param storageContainerSasToken the storageContainerSasToken value to set * @return the ManagedDatabaseUpdate object itself. @@ -288,7 +288,7 @@ public ManagedDatabaseUpdate withStorageContainerSasToken(String storageContaine } /** - * Get the failoverGroupId value. + * Get instance Failover Group resource identifier that this managed database belongs to. * * @return the failoverGroupId value */ @@ -297,7 +297,7 @@ public String failoverGroupId() { } /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -306,7 +306,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the ManagedDatabaseUpdate object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceEditionCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceEditionCapability.java index 71bf4b07c01..c828715c3cf 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceEditionCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceEditionCapability.java @@ -41,7 +41,7 @@ public class ManagedInstanceEditionCapability { private String reason; /** - * Get the name value. + * Get the managed server version name. * * @return the name value */ @@ -50,7 +50,7 @@ public String name() { } /** - * Get the supportedFamilies value. + * Get the supported families. * * @return the supportedFamilies value */ @@ -59,7 +59,7 @@ public List supportedFamilies() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -68,7 +68,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -77,7 +77,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ManagedInstanceEditionCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceFamilyCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceFamilyCapability.java index d8033b65807..82f8447db3e 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceFamilyCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceFamilyCapability.java @@ -65,7 +65,7 @@ public class ManagedInstanceFamilyCapability { private String reason; /** - * Get the name value. + * Get family name. * * @return the name value */ @@ -74,7 +74,7 @@ public String name() { } /** - * Get the sku value. + * Get sKU name. * * @return the sku value */ @@ -83,7 +83,7 @@ public String sku() { } /** - * Get the supportedLicenseTypes value. + * Get list of supported license types. * * @return the supportedLicenseTypes value */ @@ -92,7 +92,7 @@ public List supportedLicenseTypes() { } /** - * Get the supportedVcoresValues value. + * Get list of supported virtual cores values. * * @return the supportedVcoresValues value */ @@ -101,7 +101,7 @@ public List supportedVcoresValues() { } /** - * Get the includedMaxSize value. + * Get included size. * * @return the includedMaxSize value */ @@ -110,7 +110,7 @@ public MaxSizeCapability includedMaxSize() { } /** - * Get the supportedStorageSizes value. + * Get storage size ranges. * * @return the supportedStorageSizes value */ @@ -119,7 +119,7 @@ public List supportedStorageSizes() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -128,7 +128,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -137,7 +137,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ManagedInstanceFamilyCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstancePairInfo.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstancePairInfo.java index d6f36227ecf..f4324aa857a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstancePairInfo.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstancePairInfo.java @@ -27,7 +27,7 @@ public class ManagedInstancePairInfo { private String partnerManagedInstanceId; /** - * Get the primaryManagedInstanceId value. + * Get id of Primary Managed Instance in pair. * * @return the primaryManagedInstanceId value */ @@ -36,7 +36,7 @@ public String primaryManagedInstanceId() { } /** - * Set the primaryManagedInstanceId value. + * Set id of Primary Managed Instance in pair. * * @param primaryManagedInstanceId the primaryManagedInstanceId value to set * @return the ManagedInstancePairInfo object itself. @@ -47,7 +47,7 @@ public ManagedInstancePairInfo withPrimaryManagedInstanceId(String primaryManage } /** - * Get the partnerManagedInstanceId value. + * Get id of Partner Managed Instance in pair. * * @return the partnerManagedInstanceId value */ @@ -56,7 +56,7 @@ public String partnerManagedInstanceId() { } /** - * Set the partnerManagedInstanceId value. + * Set id of Partner Managed Instance in pair. * * @param partnerManagedInstanceId the partnerManagedInstanceId value to set * @return the ManagedInstancePairInfo object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceUpdate.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceUpdate.java index 86ae30e7377..ca624eba741 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceUpdate.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceUpdate.java @@ -81,7 +81,7 @@ public class ManagedInstanceUpdate { private Map tags; /** - * Get the sku value. + * Get managed instance sku. * * @return the sku value */ @@ -90,7 +90,7 @@ public Sku sku() { } /** - * Set the sku value. + * Set managed instance sku. * * @param sku the sku value to set * @return the ManagedInstanceUpdate object itself. @@ -101,7 +101,7 @@ public ManagedInstanceUpdate withSku(Sku sku) { } /** - * Get the fullyQualifiedDomainName value. + * Get the fully qualified domain name of the managed instance. * * @return the fullyQualifiedDomainName value */ @@ -110,7 +110,7 @@ public String fullyQualifiedDomainName() { } /** - * Get the administratorLogin value. + * Get administrator username for the managed instance. Can only be specified when the managed instance is being created (and is required for creation). * * @return the administratorLogin value */ @@ -119,7 +119,7 @@ public String administratorLogin() { } /** - * Set the administratorLogin value. + * Set administrator username for the managed instance. Can only be specified when the managed instance is being created (and is required for creation). * * @param administratorLogin the administratorLogin value to set * @return the ManagedInstanceUpdate object itself. @@ -130,7 +130,7 @@ public ManagedInstanceUpdate withAdministratorLogin(String administratorLogin) { } /** - * Get the administratorLoginPassword value. + * Get the administrator login password (required for managed instance creation). * * @return the administratorLoginPassword value */ @@ -139,7 +139,7 @@ public String administratorLoginPassword() { } /** - * Set the administratorLoginPassword value. + * Set the administrator login password (required for managed instance creation). * * @param administratorLoginPassword the administratorLoginPassword value to set * @return the ManagedInstanceUpdate object itself. @@ -150,7 +150,7 @@ public ManagedInstanceUpdate withAdministratorLoginPassword(String administrator } /** - * Get the subnetId value. + * Get subnet resource ID for the managed instance. * * @return the subnetId value */ @@ -159,7 +159,7 @@ public String subnetId() { } /** - * Set the subnetId value. + * Set subnet resource ID for the managed instance. * * @param subnetId the subnetId value to set * @return the ManagedInstanceUpdate object itself. @@ -170,7 +170,7 @@ public ManagedInstanceUpdate withSubnetId(String subnetId) { } /** - * Get the state value. + * Get the state of the managed instance. * * @return the state value */ @@ -179,7 +179,7 @@ public String state() { } /** - * Get the licenseType value. + * Get the license type. Possible values are 'LicenseIncluded' and 'BasePrice'. * * @return the licenseType value */ @@ -188,7 +188,7 @@ public String licenseType() { } /** - * Set the licenseType value. + * Set the license type. Possible values are 'LicenseIncluded' and 'BasePrice'. * * @param licenseType the licenseType value to set * @return the ManagedInstanceUpdate object itself. @@ -199,7 +199,7 @@ public ManagedInstanceUpdate withLicenseType(String licenseType) { } /** - * Get the vCores value. + * Get the number of VCores. * * @return the vCores value */ @@ -208,7 +208,7 @@ public Integer vCores() { } /** - * Set the vCores value. + * Set the number of VCores. * * @param vCores the vCores value to set * @return the ManagedInstanceUpdate object itself. @@ -219,7 +219,7 @@ public ManagedInstanceUpdate withVCores(Integer vCores) { } /** - * Get the storageSizeInGB value. + * Get the maximum storage size in GB. * * @return the storageSizeInGB value */ @@ -228,7 +228,7 @@ public Integer storageSizeInGB() { } /** - * Set the storageSizeInGB value. + * Set the maximum storage size in GB. * * @param storageSizeInGB the storageSizeInGB value to set * @return the ManagedInstanceUpdate object itself. @@ -239,7 +239,7 @@ public ManagedInstanceUpdate withStorageSizeInGB(Integer storageSizeInGB) { } /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -248,7 +248,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the ManagedInstanceUpdate object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVcoresCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVcoresCapability.java index 6c7770e297e..043171ea42c 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVcoresCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVcoresCapability.java @@ -40,7 +40,7 @@ public class ManagedInstanceVcoresCapability { private String reason; /** - * Get the name value. + * Get the virtual cores identifier. * * @return the name value */ @@ -49,7 +49,7 @@ public String name() { } /** - * Get the value value. + * Get the virtual cores value. * * @return the value value */ @@ -58,7 +58,7 @@ public Integer value() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -67,7 +67,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -76,7 +76,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ManagedInstanceVcoresCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVersionCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVersionCapability.java index 5d467c27586..4a05bd83d76 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVersionCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ManagedInstanceVersionCapability.java @@ -41,7 +41,7 @@ public class ManagedInstanceVersionCapability { private String reason; /** - * Get the name value. + * Get the server version name. * * @return the name value */ @@ -50,7 +50,7 @@ public String name() { } /** - * Get the supportedEditions value. + * Get the list of supported managed instance editions. * * @return the supportedEditions value */ @@ -59,7 +59,7 @@ public List supportedEditions() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -68,7 +68,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -77,7 +77,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ManagedInstanceVersionCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeCapability.java index 10618e4f6ff..87cde306d38 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeCapability.java @@ -28,7 +28,7 @@ public class MaxSizeCapability { private MaxSizeUnit unit; /** - * Get the limit value. + * Get the maximum size limit (see 'unit' for the units). * * @return the limit value */ @@ -37,7 +37,7 @@ public Integer limit() { } /** - * Get the unit value. + * Get the units that the limit is expressed in. Possible values include: 'Megabytes', 'Gigabytes', 'Terabytes', 'Petabytes'. * * @return the unit value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeRangeCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeRangeCapability.java index b67c51b1dea..16d04e5018f 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeRangeCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MaxSizeRangeCapability.java @@ -53,7 +53,7 @@ public class MaxSizeRangeCapability { private String reason; /** - * Get the minValue value. + * Get minimum value. * * @return the minValue value */ @@ -62,7 +62,7 @@ public MaxSizeCapability minValue() { } /** - * Get the maxValue value. + * Get maximum value. * * @return the maxValue value */ @@ -71,7 +71,7 @@ public MaxSizeCapability maxValue() { } /** - * Get the scaleSize value. + * Get scale/step size for discrete values between the minimum value and the maximum value. * * @return the scaleSize value */ @@ -80,7 +80,7 @@ public MaxSizeCapability scaleSize() { } /** - * Get the logSize value. + * Get size of transaction log. * * @return the logSize value */ @@ -89,7 +89,7 @@ public LogSizeCapability logSize() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -98,7 +98,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -107,7 +107,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the MaxSizeRangeCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricAvailability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricAvailability.java index 96e5b36a4d0..a964d6158f8 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricAvailability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricAvailability.java @@ -27,7 +27,7 @@ public class MetricAvailability { private String timeGrain; /** - * Get the retention value. + * Get the length of retention for the database metric. * * @return the retention value */ @@ -36,7 +36,7 @@ public String retention() { } /** - * Get the timeGrain value. + * Get the granularity of the database metric. * * @return the timeGrain value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricName.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricName.java index 08725c9ad59..a6efbd3c62f 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricName.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricName.java @@ -27,7 +27,7 @@ public class MetricName { private String localizedValue; /** - * Get the value value. + * Get the name of the database metric. * * @return the value value */ @@ -36,7 +36,7 @@ public String value() { } /** - * Get the localizedValue value. + * Get the friendly name of the database metric. * * @return the localizedValue value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricValue.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricValue.java index 52dc22085dd..c8bd1ca1136 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricValue.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/MetricValue.java @@ -52,7 +52,7 @@ public class MetricValue { private Double total; /** - * Get the count value. + * Get the number of values for the metric. * * @return the count value */ @@ -61,7 +61,7 @@ public Double count() { } /** - * Get the average value. + * Get the average value of the metric. * * @return the average value */ @@ -70,7 +70,7 @@ public Double average() { } /** - * Get the maximum value. + * Get the max value of the metric. * * @return the maximum value */ @@ -79,7 +79,7 @@ public Double maximum() { } /** - * Get the minimum value. + * Get the min value of the metric. * * @return the minimum value */ @@ -88,7 +88,7 @@ public Double minimum() { } /** - * Get the timestamp value. + * Get the metric timestamp (ISO-8601 format). * * @return the timestamp value */ @@ -97,7 +97,7 @@ public DateTime timestamp() { } /** - * Get the total value. + * Get the total value of the metric. * * @return the total value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationDisplay.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationDisplay.java index fe63d6c69c8..1968ebc724e 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationDisplay.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationDisplay.java @@ -40,7 +40,7 @@ public class OperationDisplay { private String description; /** - * Get the provider value. + * Get the localized friendly form of the resource provider name. * * @return the provider value */ @@ -49,7 +49,7 @@ public String provider() { } /** - * Get the resource value. + * Get the localized friendly form of the resource type related to this action/operation. * * @return the resource value */ @@ -58,7 +58,7 @@ public String resource() { } /** - * Get the operation value. + * Get the localized friendly name for the operation. * * @return the operation value */ @@ -67,7 +67,7 @@ public String operation() { } /** - * Get the description value. + * Get the localized friendly description for the operation. * * @return the description value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationImpact.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationImpact.java index fb005b97cf1..4f52b14bcf7 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationImpact.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/OperationImpact.java @@ -39,7 +39,7 @@ public class OperationImpact { private Double changeValueRelative; /** - * Get the name value. + * Get the name of the impact dimension. * * @return the name value */ @@ -48,7 +48,7 @@ public String name() { } /** - * Get the unit value. + * Get the unit in which estimated impact to dimension is measured. * * @return the unit value */ @@ -57,7 +57,7 @@ public String unit() { } /** - * Get the changeValueAbsolute value. + * Get the absolute impact to dimension. * * @return the changeValueAbsolute value */ @@ -66,7 +66,7 @@ public Double changeValueAbsolute() { } /** - * Get the changeValueRelative value. + * Get the relative impact to dimension (null if not applicable). * * @return the changeValueRelative value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerInfo.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerInfo.java index e8163227727..0e255435b80 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerInfo.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerInfo.java @@ -34,7 +34,7 @@ public class PartnerInfo { private FailoverGroupReplicationRole replicationRole; /** - * Get the id value. + * Get resource identifier of the partner server. * * @return the id value */ @@ -43,7 +43,7 @@ public String id() { } /** - * Set the id value. + * Set resource identifier of the partner server. * * @param id the id value to set * @return the PartnerInfo object itself. @@ -54,7 +54,7 @@ public PartnerInfo withId(String id) { } /** - * Get the location value. + * Get geo location of the partner server. * * @return the location value */ @@ -63,7 +63,7 @@ public String location() { } /** - * Get the replicationRole value. + * Get replication role of the partner server. Possible values include: 'Primary', 'Secondary'. * * @return the replicationRole value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerRegionInfo.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerRegionInfo.java index c835ce1d52d..7c284178b80 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerRegionInfo.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PartnerRegionInfo.java @@ -28,7 +28,7 @@ public class PartnerRegionInfo { private InstanceFailoverGroupReplicationRole replicationRole; /** - * Get the location value. + * Get geo location of the partner managed instances. * * @return the location value */ @@ -37,7 +37,7 @@ public String location() { } /** - * Set the location value. + * Set geo location of the partner managed instances. * * @param location the location value to set * @return the PartnerRegionInfo object itself. @@ -48,7 +48,7 @@ public PartnerRegionInfo withLocation(String location) { } /** - * Get the replicationRole value. + * Get replication role of the partner managed instances. Possible values include: 'Primary', 'Secondary'. * * @return the replicationRole value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PerformanceLevelCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PerformanceLevelCapability.java index 2e51b9abe39..f87a03ac539 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PerformanceLevelCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/PerformanceLevelCapability.java @@ -28,7 +28,7 @@ public class PerformanceLevelCapability { private PerformanceLevelUnit unit; /** - * Get the value value. + * Get performance level value. * * @return the value value */ @@ -37,7 +37,7 @@ public Double value() { } /** - * Get the unit value. + * Get unit type used to measure performance level. Possible values include: 'DTU', 'VCores'. * * @return the unit value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/RecommendedIndex.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/RecommendedIndex.java index eacfa6c6fcd..2042902628c 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/RecommendedIndex.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/RecommendedIndex.java @@ -100,7 +100,7 @@ public class RecommendedIndex extends ProxyResourceInner { private List reportedImpact; /** - * Get the action value. + * Get the proposed index action. You can create a missing index, drop an unused index, or rebuild an existing index to improve its performance. Possible values include: 'Create', 'Drop', 'Rebuild'. * * @return the action value */ @@ -109,7 +109,7 @@ public RecommendedIndexAction action() { } /** - * Get the state value. + * Get the current recommendation state. Possible values include: 'Active', 'Pending', 'Executing', 'Verifying', 'Pending Revert', 'Reverting', 'Reverted', 'Ignored', 'Expired', 'Blocked', 'Success'. * * @return the state value */ @@ -118,7 +118,7 @@ public RecommendedIndexState state() { } /** - * Get the created value. + * Get the UTC datetime showing when this resource was created (ISO8601 format). * * @return the created value */ @@ -127,7 +127,7 @@ public DateTime created() { } /** - * Get the lastModified value. + * Get the UTC datetime of when was this resource last changed (ISO8601 format). * * @return the lastModified value */ @@ -136,7 +136,7 @@ public DateTime lastModified() { } /** - * Get the indexType value. + * Get the type of index (CLUSTERED, NONCLUSTERED, COLUMNSTORE, CLUSTERED COLUMNSTORE). Possible values include: 'CLUSTERED', 'NONCLUSTERED', 'COLUMNSTORE', 'CLUSTERED COLUMNSTORE'. * * @return the indexType value */ @@ -145,7 +145,7 @@ public RecommendedIndexType indexType() { } /** - * Get the schema value. + * Get the schema where table to build index over resides. * * @return the schema value */ @@ -154,7 +154,7 @@ public String schema() { } /** - * Get the table value. + * Get the table on which to build index. * * @return the table value */ @@ -163,7 +163,7 @@ public String table() { } /** - * Get the columns value. + * Get columns over which to build index. * * @return the columns value */ @@ -172,7 +172,7 @@ public List columns() { } /** - * Get the includedColumns value. + * Get the list of column names to be included in the index. * * @return the includedColumns value */ @@ -181,7 +181,7 @@ public List includedColumns() { } /** - * Get the indexScript value. + * Get the full build index script. * * @return the indexScript value */ @@ -190,7 +190,7 @@ public String indexScript() { } /** - * Get the estimatedImpact value. + * Get the estimated impact of doing recommended index action. * * @return the estimatedImpact value */ @@ -199,7 +199,7 @@ public List estimatedImpact() { } /** - * Get the reportedImpact value. + * Get the values reported after index action is complete. * * @return the reportedImpact value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceIdentity.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceIdentity.java index 5446dbc44bb..a5a136efbe6 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceIdentity.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceIdentity.java @@ -36,7 +36,7 @@ public class ResourceIdentity { private UUID tenantId; /** - * Get the principalId value. + * Get the Azure Active Directory principal id. * * @return the principalId value */ @@ -45,7 +45,7 @@ public UUID principalId() { } /** - * Get the type value. + * Get the identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. Possible values include: 'SystemAssigned'. * * @return the type value */ @@ -54,7 +54,7 @@ public IdentityType type() { } /** - * Set the type value. + * Set the identity type. Set this to 'SystemAssigned' in order to automatically create and assign an Azure Active Directory principal for the resource. Possible values include: 'SystemAssigned'. * * @param type the type value to set * @return the ResourceIdentity object itself. @@ -65,7 +65,7 @@ public ResourceIdentity withType(IdentityType type) { } /** - * Get the tenantId value. + * Get the Azure Active Directory tenant id. * * @return the tenantId value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceMoveDefinition.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceMoveDefinition.java index dff778261d8..684281d96eb 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceMoveDefinition.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ResourceMoveDefinition.java @@ -21,7 +21,7 @@ public class ResourceMoveDefinition { private String id; /** - * Get the id value. + * Get the target ID for the resource. * * @return the id value */ @@ -30,7 +30,7 @@ public String id() { } /** - * Set the id value. + * Set the target ID for the resource. * * @param id the id value to set * @return the ResourceMoveDefinition object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerDnsAliasAcquisition.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerDnsAliasAcquisition.java index e299b9352b3..53b4a4bc6cc 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerDnsAliasAcquisition.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerDnsAliasAcquisition.java @@ -22,7 +22,7 @@ public class ServerDnsAliasAcquisition { private String oldServerDnsAliasId; /** - * Get the oldServerDnsAliasId value. + * Get the id of the server alias that will be acquired to point to this server instead. * * @return the oldServerDnsAliasId value */ @@ -31,7 +31,7 @@ public String oldServerDnsAliasId() { } /** - * Set the oldServerDnsAliasId value. + * Set the id of the server alias that will be acquired to point to this server instead. * * @param oldServerDnsAliasId the oldServerDnsAliasId value to set * @return the ServerDnsAliasAcquisition object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerUpdate.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerUpdate.java index a6fbd478151..dfd82e39cd7 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerUpdate.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerUpdate.java @@ -55,7 +55,7 @@ public class ServerUpdate { private Map tags; /** - * Get the administratorLogin value. + * Get administrator username for the server. Once created it cannot be changed. * * @return the administratorLogin value */ @@ -64,7 +64,7 @@ public String administratorLogin() { } /** - * Set the administratorLogin value. + * Set administrator username for the server. Once created it cannot be changed. * * @param administratorLogin the administratorLogin value to set * @return the ServerUpdate object itself. @@ -75,7 +75,7 @@ public ServerUpdate withAdministratorLogin(String administratorLogin) { } /** - * Get the administratorLoginPassword value. + * Get the administrator login password (required for server creation). * * @return the administratorLoginPassword value */ @@ -84,7 +84,7 @@ public String administratorLoginPassword() { } /** - * Set the administratorLoginPassword value. + * Set the administrator login password (required for server creation). * * @param administratorLoginPassword the administratorLoginPassword value to set * @return the ServerUpdate object itself. @@ -95,7 +95,7 @@ public ServerUpdate withAdministratorLoginPassword(String administratorLoginPass } /** - * Get the version value. + * Get the version of the server. * * @return the version value */ @@ -104,7 +104,7 @@ public String version() { } /** - * Set the version value. + * Set the version of the server. * * @param version the version value to set * @return the ServerUpdate object itself. @@ -115,7 +115,7 @@ public ServerUpdate withVersion(String version) { } /** - * Get the state value. + * Get the state of the server. * * @return the state value */ @@ -124,7 +124,7 @@ public String state() { } /** - * Get the fullyQualifiedDomainName value. + * Get the fully qualified domain name of the server. * * @return the fullyQualifiedDomainName value */ @@ -133,7 +133,7 @@ public String fullyQualifiedDomainName() { } /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -142,7 +142,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the ServerUpdate object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerVersionCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerVersionCapability.java index 286c26e196a..c0dc5c26378 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerVersionCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServerVersionCapability.java @@ -47,7 +47,7 @@ public class ServerVersionCapability { private String reason; /** - * Get the name value. + * Get the server version name. * * @return the name value */ @@ -56,7 +56,7 @@ public String name() { } /** - * Get the supportedEditions value. + * Get the list of supported database editions. * * @return the supportedEditions value */ @@ -65,7 +65,7 @@ public List supportedEditions() { } /** - * Get the supportedElasticPoolEditions value. + * Get the list of supported elastic pool editions. * * @return the supportedElasticPoolEditions value */ @@ -74,7 +74,7 @@ public List supportedElasticPoolEditions() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -83,7 +83,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -92,7 +92,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ServerVersionCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServiceObjectiveCapability.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServiceObjectiveCapability.java index 05d5d4e7ea3..1540a7a53bb 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServiceObjectiveCapability.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/ServiceObjectiveCapability.java @@ -72,7 +72,7 @@ public class ServiceObjectiveCapability { private String reason; /** - * Get the id value. + * Get the unique ID of the service objective. * * @return the id value */ @@ -81,7 +81,7 @@ public UUID id() { } /** - * Get the name value. + * Get the service objective name. * * @return the name value */ @@ -90,7 +90,7 @@ public String name() { } /** - * Get the supportedMaxSizes value. + * Get the list of supported maximum database sizes. * * @return the supportedMaxSizes value */ @@ -99,7 +99,7 @@ public List supportedMaxSizes() { } /** - * Get the performanceLevel value. + * Get the performance level. * * @return the performanceLevel value */ @@ -108,7 +108,7 @@ public PerformanceLevelCapability performanceLevel() { } /** - * Get the sku value. + * Get the sku. * * @return the sku value */ @@ -117,7 +117,7 @@ public Sku sku() { } /** - * Get the supportedLicenseTypes value. + * Get list of supported license types. * * @return the supportedLicenseTypes value */ @@ -126,7 +126,7 @@ public List supportedLicenseTypes() { } /** - * Get the includedMaxSize value. + * Get the included (free) max size. * * @return the includedMaxSize value */ @@ -135,7 +135,7 @@ public MaxSizeCapability includedMaxSize() { } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -144,7 +144,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -153,7 +153,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the ServiceObjectiveCapability object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/Sku.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/Sku.java index f670fa07f35..5b8f789d956 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/Sku.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/Sku.java @@ -11,23 +11,25 @@ import com.fasterxml.jackson.annotation.JsonProperty; /** - * An ARM Resource SKU. + * The resource model definition representing SKU. */ public class Sku { /** - * The name of the SKU, typically, a letter + Number code, e.g. P3. + * The name of the SKU. Ex - P3. It is typically a letter+number code. */ @JsonProperty(value = "name", required = true) private String name; /** - * The tier of the particular SKU, e.g. Basic, Premium. + * This field is required to be implemented by the Resource Provider if the + * service has more than one tier, but is not required on a PUT. */ @JsonProperty(value = "tier") private String tier; /** - * Size of the particular SKU. + * The SKU size. When the name field is the combination of tier and some + * other value, this would be the standalone code. */ @JsonProperty(value = "size") private String size; @@ -40,13 +42,15 @@ public class Sku { private String family; /** - * Capacity of the particular SKU. + * If the SKU supports scale out/in then the capacity integer should be + * included. If scale out/in is not possible for the resource this may be + * omitted. */ @JsonProperty(value = "capacity") private Integer capacity; /** - * Get the name value. + * Get the name of the SKU. Ex - P3. It is typically a letter+number code. * * @return the name value */ @@ -55,7 +59,7 @@ public String name() { } /** - * Set the name value. + * Set the name of the SKU. Ex - P3. It is typically a letter+number code. * * @param name the name value to set * @return the Sku object itself. @@ -66,7 +70,7 @@ public Sku withName(String name) { } /** - * Get the tier value. + * Get this field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. * * @return the tier value */ @@ -75,7 +79,7 @@ public String tier() { } /** - * Set the tier value. + * Set this field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. * * @param tier the tier value to set * @return the Sku object itself. @@ -86,7 +90,7 @@ public Sku withTier(String tier) { } /** - * Get the size value. + * Get the SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. * * @return the size value */ @@ -95,7 +99,7 @@ public String size() { } /** - * Set the size value. + * Set the SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. * * @param size the size value to set * @return the Sku object itself. @@ -106,7 +110,7 @@ public Sku withSize(String size) { } /** - * Get the family value. + * Get if the service has different generations of hardware, for the same SKU, then that can be captured here. * * @return the family value */ @@ -115,7 +119,7 @@ public String family() { } /** - * Set the family value. + * Set if the service has different generations of hardware, for the same SKU, then that can be captured here. * * @param family the family value to set * @return the Sku object itself. @@ -126,7 +130,7 @@ public Sku withFamily(String family) { } /** - * Get the capacity value. + * Get if the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. * * @return the capacity value */ @@ -135,7 +139,7 @@ public Integer capacity() { } /** - * Set the capacity value. + * Set if the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. * * @param capacity the capacity value to set * @return the Sku object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SloUsageMetric.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SloUsageMetric.java index cddbd01ed63..82ca20d807d 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SloUsageMetric.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SloUsageMetric.java @@ -43,7 +43,7 @@ public class SloUsageMetric { private double inRangeTimeRatio; /** - * Get the serviceLevelObjective value. + * Get the serviceLevelObjective for SLO usage metric. Possible values include: 'System', 'System0', 'System1', 'System2', 'System3', 'System4', 'System2L', 'System3L', 'System4L', 'Free', 'Basic', 'S0', 'S1', 'S2', 'S3', 'S4', 'S6', 'S7', 'S9', 'S12', 'P1', 'P2', 'P3', 'P4', 'P6', 'P11', 'P15', 'PRS1', 'PRS2', 'PRS4', 'PRS6', 'DW100', 'DW200', 'DW300', 'DW400', 'DW500', 'DW600', 'DW1000', 'DW1200', 'DW1000c', 'DW1500', 'DW1500c', 'DW2000', 'DW2000c', 'DW3000', 'DW2500c', 'DW3000c', 'DW6000', 'DW5000c', 'DW6000c', 'DW7500c', 'DW10000c', 'DW15000c', 'DW30000c', 'DS100', 'DS200', 'DS300', 'DS400', 'DS500', 'DS600', 'DS1000', 'DS1200', 'DS1500', 'DS2000', 'ElasticPool'. * * @return the serviceLevelObjective value */ @@ -52,7 +52,7 @@ public ServiceObjectiveName serviceLevelObjective() { } /** - * Get the serviceLevelObjectiveId value. + * Get the serviceLevelObjectiveId for SLO usage metric. * * @return the serviceLevelObjectiveId value */ @@ -61,7 +61,7 @@ public UUID serviceLevelObjectiveId() { } /** - * Get the inRangeTimeRatio value. + * Get gets or sets inRangeTimeRatio for SLO usage metric. * * @return the inRangeTimeRatio value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTable.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTable.java index e5453ed4a35..6a61ba88012 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTable.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTable.java @@ -46,7 +46,7 @@ public class SyncFullSchemaTable { private String quotedName; /** - * Get the columns value. + * Get list of columns in the table of database full schema. * * @return the columns value */ @@ -55,7 +55,7 @@ public List columns() { } /** - * Get the errorId value. + * Get error id of the table. * * @return the errorId value */ @@ -64,7 +64,7 @@ public String errorId() { } /** - * Get the hasError value. + * Get if there is error in the table. * * @return the hasError value */ @@ -73,7 +73,7 @@ public Boolean hasError() { } /** - * Get the name value. + * Get name of the table. * * @return the name value */ @@ -82,7 +82,7 @@ public String name() { } /** - * Get the quotedName value. + * Get quoted name of the table. * * @return the quotedName value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTableColumn.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTableColumn.java index 0b091c46355..d1cac08d455 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTableColumn.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncFullSchemaTableColumn.java @@ -57,7 +57,7 @@ public class SyncFullSchemaTableColumn { private String quotedName; /** - * Get the dataSize value. + * Get data size of the column. * * @return the dataSize value */ @@ -66,7 +66,7 @@ public String dataSize() { } /** - * Get the dataType value. + * Get data type of the column. * * @return the dataType value */ @@ -75,7 +75,7 @@ public String dataType() { } /** - * Get the errorId value. + * Get error id of the column. * * @return the errorId value */ @@ -84,7 +84,7 @@ public String errorId() { } /** - * Get the hasError value. + * Get if there is error in the table. * * @return the hasError value */ @@ -93,7 +93,7 @@ public Boolean hasError() { } /** - * Get the isPrimaryKey value. + * Get if it is the primary key of the table. * * @return the isPrimaryKey value */ @@ -102,7 +102,7 @@ public Boolean isPrimaryKey() { } /** - * Get the name value. + * Get name of the column. * * @return the name value */ @@ -111,7 +111,7 @@ public String name() { } /** - * Get the quotedName value. + * Get quoted name of the column. * * @return the quotedName value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchema.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchema.java index 8fc60433f7b..33353064142 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchema.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchema.java @@ -28,7 +28,7 @@ public class SyncGroupSchema { private String masterSyncMemberName; /** - * Get the tables value. + * Get list of tables in sync group schema. * * @return the tables value */ @@ -37,7 +37,7 @@ public List tables() { } /** - * Set the tables value. + * Set list of tables in sync group schema. * * @param tables the tables value to set * @return the SyncGroupSchema object itself. @@ -48,7 +48,7 @@ public SyncGroupSchema withTables(List tables) { } /** - * Get the masterSyncMemberName value. + * Get name of master sync member where the schema is from. * * @return the masterSyncMemberName value */ @@ -57,7 +57,7 @@ public String masterSyncMemberName() { } /** - * Set the masterSyncMemberName value. + * Set name of master sync member where the schema is from. * * @param masterSyncMemberName the masterSyncMemberName value to set * @return the SyncGroupSchema object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTable.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTable.java index 22eb794dcae..b02594564af 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTable.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTable.java @@ -28,7 +28,7 @@ public class SyncGroupSchemaTable { private String quotedName; /** - * Get the columns value. + * Get list of columns in sync group schema. * * @return the columns value */ @@ -37,7 +37,7 @@ public List columns() { } /** - * Set the columns value. + * Set list of columns in sync group schema. * * @param columns the columns value to set * @return the SyncGroupSchemaTable object itself. @@ -48,7 +48,7 @@ public SyncGroupSchemaTable withColumns(List columns } /** - * Get the quotedName value. + * Get quoted name of sync group schema table. * * @return the quotedName value */ @@ -57,7 +57,7 @@ public String quotedName() { } /** - * Set the quotedName value. + * Set quoted name of sync group schema table. * * @param quotedName the quotedName value to set * @return the SyncGroupSchemaTable object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTableColumn.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTableColumn.java index 480847060d9..09f9ad6865d 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTableColumn.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/SyncGroupSchemaTableColumn.java @@ -33,7 +33,7 @@ public class SyncGroupSchemaTableColumn { private String dataType; /** - * Get the quotedName value. + * Get quoted name of sync group table column. * * @return the quotedName value */ @@ -42,7 +42,7 @@ public String quotedName() { } /** - * Set the quotedName value. + * Set quoted name of sync group table column. * * @param quotedName the quotedName value to set * @return the SyncGroupSchemaTableColumn object itself. @@ -53,7 +53,7 @@ public SyncGroupSchemaTableColumn withQuotedName(String quotedName) { } /** - * Get the dataSize value. + * Get data size of the column. * * @return the dataSize value */ @@ -62,7 +62,7 @@ public String dataSize() { } /** - * Set the dataSize value. + * Set data size of the column. * * @param dataSize the dataSize value to set * @return the SyncGroupSchemaTableColumn object itself. @@ -73,7 +73,7 @@ public SyncGroupSchemaTableColumn withDataSize(String dataSize) { } /** - * Get the dataType value. + * Get data type of the column. * * @return the dataType value */ @@ -82,7 +82,7 @@ public String dataType() { } /** - * Set the dataType value. + * Set data type of the column. * * @param dataType the dataType value to set * @return the SyncGroupSchemaTableColumn object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentRecurringScansProperties.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentRecurringScansProperties.java index 92e369ca950..4fbf40b7dc0 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentRecurringScansProperties.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentRecurringScansProperties.java @@ -36,7 +36,7 @@ public class VulnerabilityAssessmentRecurringScansProperties { private List emails; /** - * Get the isEnabled value. + * Get recurring scans state. * * @return the isEnabled value */ @@ -45,7 +45,7 @@ public Boolean isEnabled() { } /** - * Set the isEnabled value. + * Set recurring scans state. * * @param isEnabled the isEnabled value to set * @return the VulnerabilityAssessmentRecurringScansProperties object itself. @@ -56,7 +56,7 @@ public VulnerabilityAssessmentRecurringScansProperties withIsEnabled(Boolean isE } /** - * Get the emailSubscriptionAdmins value. + * Get specifies that the schedule scan notification will be is sent to the subscription administrators. * * @return the emailSubscriptionAdmins value */ @@ -65,7 +65,7 @@ public Boolean emailSubscriptionAdmins() { } /** - * Set the emailSubscriptionAdmins value. + * Set specifies that the schedule scan notification will be is sent to the subscription administrators. * * @param emailSubscriptionAdmins the emailSubscriptionAdmins value to set * @return the VulnerabilityAssessmentRecurringScansProperties object itself. @@ -76,7 +76,7 @@ public VulnerabilityAssessmentRecurringScansProperties withEmailSubscriptionAdmi } /** - * Get the emails value. + * Get specifies an array of e-mail addresses to which the scan notification is sent. * * @return the emails value */ @@ -85,7 +85,7 @@ public List emails() { } /** - * Set the emails value. + * Set specifies an array of e-mail addresses to which the scan notification is sent. * * @param emails the emails value to set * @return the VulnerabilityAssessmentRecurringScansProperties object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentScanError.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentScanError.java index 658ad5ec29b..33913dd821a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentScanError.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/VulnerabilityAssessmentScanError.java @@ -27,7 +27,7 @@ public class VulnerabilityAssessmentScanError { private String message; /** - * Get the code value. + * Get the error code. * * @return the code value */ @@ -36,7 +36,7 @@ public String code() { } /** - * Get the message value. + * Get the error message. * * @return the message value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupLongTermRetentionPolicyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupLongTermRetentionPolicyInner.java index fa8e34765d6..02387f04ae2 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupLongTermRetentionPolicyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupLongTermRetentionPolicyInner.java @@ -41,7 +41,7 @@ public class BackupLongTermRetentionPolicyInner extends ProxyResourceInner { private Integer weekOfYear; /** - * Get the weeklyRetention value. + * Get the weekly retention policy for an LTR backup in an ISO 8601 format. * * @return the weeklyRetention value */ @@ -50,7 +50,7 @@ public String weeklyRetention() { } /** - * Set the weeklyRetention value. + * Set the weekly retention policy for an LTR backup in an ISO 8601 format. * * @param weeklyRetention the weeklyRetention value to set * @return the BackupLongTermRetentionPolicyInner object itself. @@ -61,7 +61,7 @@ public BackupLongTermRetentionPolicyInner withWeeklyRetention(String weeklyReten } /** - * Get the monthlyRetention value. + * Get the montly retention policy for an LTR backup in an ISO 8601 format. * * @return the monthlyRetention value */ @@ -70,7 +70,7 @@ public String monthlyRetention() { } /** - * Set the monthlyRetention value. + * Set the montly retention policy for an LTR backup in an ISO 8601 format. * * @param monthlyRetention the monthlyRetention value to set * @return the BackupLongTermRetentionPolicyInner object itself. @@ -81,7 +81,7 @@ public BackupLongTermRetentionPolicyInner withMonthlyRetention(String monthlyRet } /** - * Get the yearlyRetention value. + * Get the yearly retention policy for an LTR backup in an ISO 8601 format. * * @return the yearlyRetention value */ @@ -90,7 +90,7 @@ public String yearlyRetention() { } /** - * Set the yearlyRetention value. + * Set the yearly retention policy for an LTR backup in an ISO 8601 format. * * @param yearlyRetention the yearlyRetention value to set * @return the BackupLongTermRetentionPolicyInner object itself. @@ -101,7 +101,7 @@ public BackupLongTermRetentionPolicyInner withYearlyRetention(String yearlyReten } /** - * Get the weekOfYear value. + * Get the week of year to take the yearly backup in an ISO 8601 format. * * @return the weekOfYear value */ @@ -110,7 +110,7 @@ public Integer weekOfYear() { } /** - * Set the weekOfYear value. + * Set the week of year to take the yearly backup in an ISO 8601 format. * * @param weekOfYear the weekOfYear value to set * @return the BackupLongTermRetentionPolicyInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupShortTermRetentionPolicyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupShortTermRetentionPolicyInner.java index 9375c17c6b2..53a69a5f759 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupShortTermRetentionPolicyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/BackupShortTermRetentionPolicyInner.java @@ -24,7 +24,7 @@ public class BackupShortTermRetentionPolicyInner extends ProxyResourceInner { private Integer retentionDays; /** - * Get the retentionDays value. + * Get the backup retention period in days. This is how many days Point-in-Time Restore will be supported. * * @return the retentionDays value */ @@ -33,7 +33,7 @@ public Integer retentionDays() { } /** - * Set the retentionDays value. + * Set the backup retention period in days. This is how many days Point-in-Time Restore will be supported. * * @param retentionDays the retentionDays value to set * @return the BackupShortTermRetentionPolicyInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/CheckNameAvailabilityResponseInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/CheckNameAvailabilityResponseInner.java index 7840f88d554..bcdfb91d8d1 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/CheckNameAvailabilityResponseInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/CheckNameAvailabilityResponseInner.java @@ -44,7 +44,7 @@ public class CheckNameAvailabilityResponseInner { private CheckNameAvailabilityReason reason; /** - * Get the available value. + * Get true if the name is available, otherwise false. * * @return the available value */ @@ -53,7 +53,7 @@ public Boolean available() { } /** - * Get the message value. + * Get a message explaining why the name is unavailable. Will be null if the name is available. * * @return the message value */ @@ -62,7 +62,7 @@ public String message() { } /** - * Get the name value. + * Get the name whose availability was checked. * * @return the name value */ @@ -71,7 +71,7 @@ public String name() { } /** - * Get the reason value. + * Get the reason code explaining why the name is unavailable. Will be null if the name is available. Possible values include: 'Invalid', 'AlreadyExists'. * * @return the reason value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingPolicyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingPolicyInner.java index fb29e8c6b77..1a0c3964ee3 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingPolicyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingPolicyInner.java @@ -59,7 +59,7 @@ public class DataMaskingPolicyInner extends ProxyResourceInner { private String kind; /** - * Get the dataMaskingState value. + * Get the state of the data masking policy. Possible values include: 'Disabled', 'Enabled'. * * @return the dataMaskingState value */ @@ -68,7 +68,7 @@ public DataMaskingState dataMaskingState() { } /** - * Set the dataMaskingState value. + * Set the state of the data masking policy. Possible values include: 'Disabled', 'Enabled'. * * @param dataMaskingState the dataMaskingState value to set * @return the DataMaskingPolicyInner object itself. @@ -79,7 +79,7 @@ public DataMaskingPolicyInner withDataMaskingState(DataMaskingState dataMaskingS } /** - * Get the exemptPrincipals value. + * Get the list of the exempt principals. Specifies the semicolon-separated list of database users for which the data masking policy does not apply. The specified users receive data results without masking for all of the database queries. * * @return the exemptPrincipals value */ @@ -88,7 +88,7 @@ public String exemptPrincipals() { } /** - * Set the exemptPrincipals value. + * Set the list of the exempt principals. Specifies the semicolon-separated list of database users for which the data masking policy does not apply. The specified users receive data results without masking for all of the database queries. * * @param exemptPrincipals the exemptPrincipals value to set * @return the DataMaskingPolicyInner object itself. @@ -99,7 +99,7 @@ public DataMaskingPolicyInner withExemptPrincipals(String exemptPrincipals) { } /** - * Get the applicationPrincipals value. + * Get the list of the application principals. This is a legacy parameter and is no longer used. * * @return the applicationPrincipals value */ @@ -108,7 +108,7 @@ public String applicationPrincipals() { } /** - * Get the maskingLevel value. + * Get the masking level. This is a legacy parameter and is no longer used. * * @return the maskingLevel value */ @@ -117,7 +117,7 @@ public String maskingLevel() { } /** - * Get the location value. + * Get the location of the data masking policy. * * @return the location value */ @@ -126,7 +126,7 @@ public String location() { } /** - * Get the kind value. + * Get the kind of data masking policy. Metadata, used for Azure portal. * * @return the kind value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingRuleInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingRuleInner.java index 45bd60ea132..8065af3c562 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingRuleInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DataMaskingRuleInner.java @@ -117,7 +117,7 @@ public class DataMaskingRuleInner extends ProxyResourceInner { private String kind; /** - * Get the dataMaskingRuleId value. + * Get the rule Id. * * @return the dataMaskingRuleId value */ @@ -126,7 +126,7 @@ public String dataMaskingRuleId() { } /** - * Get the aliasName value. + * Get the alias name. This is a legacy parameter and is no longer used. * * @return the aliasName value */ @@ -135,7 +135,7 @@ public String aliasName() { } /** - * Set the aliasName value. + * Set the alias name. This is a legacy parameter and is no longer used. * * @param aliasName the aliasName value to set * @return the DataMaskingRuleInner object itself. @@ -146,7 +146,7 @@ public DataMaskingRuleInner withAliasName(String aliasName) { } /** - * Get the ruleState value. + * Get the rule state. Used to delete a rule. To delete an existing rule, specify the schemaName, tableName, columnName, maskingFunction, and specify ruleState as disabled. However, if the rule doesn't already exist, the rule will be created with ruleState set to enabled, regardless of the provided value of ruleState. Possible values include: 'Disabled', 'Enabled'. * * @return the ruleState value */ @@ -155,7 +155,7 @@ public DataMaskingRuleState ruleState() { } /** - * Set the ruleState value. + * Set the rule state. Used to delete a rule. To delete an existing rule, specify the schemaName, tableName, columnName, maskingFunction, and specify ruleState as disabled. However, if the rule doesn't already exist, the rule will be created with ruleState set to enabled, regardless of the provided value of ruleState. Possible values include: 'Disabled', 'Enabled'. * * @param ruleState the ruleState value to set * @return the DataMaskingRuleInner object itself. @@ -166,7 +166,7 @@ public DataMaskingRuleInner withRuleState(DataMaskingRuleState ruleState) { } /** - * Get the schemaName value. + * Get the schema name on which the data masking rule is applied. * * @return the schemaName value */ @@ -175,7 +175,7 @@ public String schemaName() { } /** - * Set the schemaName value. + * Set the schema name on which the data masking rule is applied. * * @param schemaName the schemaName value to set * @return the DataMaskingRuleInner object itself. @@ -186,7 +186,7 @@ public DataMaskingRuleInner withSchemaName(String schemaName) { } /** - * Get the tableName value. + * Get the table name on which the data masking rule is applied. * * @return the tableName value */ @@ -195,7 +195,7 @@ public String tableName() { } /** - * Set the tableName value. + * Set the table name on which the data masking rule is applied. * * @param tableName the tableName value to set * @return the DataMaskingRuleInner object itself. @@ -206,7 +206,7 @@ public DataMaskingRuleInner withTableName(String tableName) { } /** - * Get the columnName value. + * Get the column name on which the data masking rule is applied. * * @return the columnName value */ @@ -215,7 +215,7 @@ public String columnName() { } /** - * Set the columnName value. + * Set the column name on which the data masking rule is applied. * * @param columnName the columnName value to set * @return the DataMaskingRuleInner object itself. @@ -226,7 +226,7 @@ public DataMaskingRuleInner withColumnName(String columnName) { } /** - * Get the maskingFunction value. + * Get the masking function that is used for the data masking rule. Possible values include: 'Default', 'CCN', 'Email', 'Number', 'SSN', 'Text'. * * @return the maskingFunction value */ @@ -235,7 +235,7 @@ public DataMaskingFunction maskingFunction() { } /** - * Set the maskingFunction value. + * Set the masking function that is used for the data masking rule. Possible values include: 'Default', 'CCN', 'Email', 'Number', 'SSN', 'Text'. * * @param maskingFunction the maskingFunction value to set * @return the DataMaskingRuleInner object itself. @@ -246,7 +246,7 @@ public DataMaskingRuleInner withMaskingFunction(DataMaskingFunction maskingFunct } /** - * Get the numberFrom value. + * Get the numberFrom property of the masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored. * * @return the numberFrom value */ @@ -255,7 +255,7 @@ public String numberFrom() { } /** - * Set the numberFrom value. + * Set the numberFrom property of the masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored. * * @param numberFrom the numberFrom value to set * @return the DataMaskingRuleInner object itself. @@ -266,7 +266,7 @@ public DataMaskingRuleInner withNumberFrom(String numberFrom) { } /** - * Get the numberTo value. + * Get the numberTo property of the data masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored. * * @return the numberTo value */ @@ -275,7 +275,7 @@ public String numberTo() { } /** - * Set the numberTo value. + * Set the numberTo property of the data masking rule. Required if maskingFunction is set to Number, otherwise this parameter will be ignored. * * @param numberTo the numberTo value to set * @return the DataMaskingRuleInner object itself. @@ -286,7 +286,7 @@ public DataMaskingRuleInner withNumberTo(String numberTo) { } /** - * Get the prefixSize value. + * Get if maskingFunction is set to Text, the number of characters to show unmasked in the beginning of the string. Otherwise, this parameter will be ignored. * * @return the prefixSize value */ @@ -295,7 +295,7 @@ public String prefixSize() { } /** - * Set the prefixSize value. + * Set if maskingFunction is set to Text, the number of characters to show unmasked in the beginning of the string. Otherwise, this parameter will be ignored. * * @param prefixSize the prefixSize value to set * @return the DataMaskingRuleInner object itself. @@ -306,7 +306,7 @@ public DataMaskingRuleInner withPrefixSize(String prefixSize) { } /** - * Get the suffixSize value. + * Get if maskingFunction is set to Text, the number of characters to show unmasked at the end of the string. Otherwise, this parameter will be ignored. * * @return the suffixSize value */ @@ -315,7 +315,7 @@ public String suffixSize() { } /** - * Set the suffixSize value. + * Set if maskingFunction is set to Text, the number of characters to show unmasked at the end of the string. Otherwise, this parameter will be ignored. * * @param suffixSize the suffixSize value to set * @return the DataMaskingRuleInner object itself. @@ -326,7 +326,7 @@ public DataMaskingRuleInner withSuffixSize(String suffixSize) { } /** - * Get the replacementString value. + * Get if maskingFunction is set to Text, the character to use for masking the unexposed part of the string. Otherwise, this parameter will be ignored. * * @return the replacementString value */ @@ -335,7 +335,7 @@ public String replacementString() { } /** - * Set the replacementString value. + * Set if maskingFunction is set to Text, the character to use for masking the unexposed part of the string. Otherwise, this parameter will be ignored. * * @param replacementString the replacementString value to set * @return the DataMaskingRuleInner object itself. @@ -346,7 +346,7 @@ public DataMaskingRuleInner withReplacementString(String replacementString) { } /** - * Get the location value. + * Get the location of the data masking rule. * * @return the location value */ @@ -355,7 +355,7 @@ public String location() { } /** - * Get the kind value. + * Get the kind of Data Masking Rule. Metadata, used for Azure portal. * * @return the kind value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseAutomaticTuningInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseAutomaticTuningInner.java index 7f07ac28d93..1913871dfd3 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseAutomaticTuningInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseAutomaticTuningInner.java @@ -40,7 +40,7 @@ public class DatabaseAutomaticTuningInner extends ProxyResourceInner { private Map options; /** - * Get the desiredState value. + * Get automatic tuning desired state. Possible values include: 'Inherit', 'Custom', 'Auto', 'Unspecified'. * * @return the desiredState value */ @@ -49,7 +49,7 @@ public AutomaticTuningMode desiredState() { } /** - * Set the desiredState value. + * Set automatic tuning desired state. Possible values include: 'Inherit', 'Custom', 'Auto', 'Unspecified'. * * @param desiredState the desiredState value to set * @return the DatabaseAutomaticTuningInner object itself. @@ -60,7 +60,7 @@ public DatabaseAutomaticTuningInner withDesiredState(AutomaticTuningMode desired } /** - * Get the actualState value. + * Get automatic tuning actual state. Possible values include: 'Inherit', 'Custom', 'Auto', 'Unspecified'. * * @return the actualState value */ @@ -69,7 +69,7 @@ public AutomaticTuningMode actualState() { } /** - * Get the options value. + * Get automatic tuning options definition. * * @return the options value */ @@ -78,7 +78,7 @@ public Map options() { } /** - * Set the options value. + * Set automatic tuning options definition. * * @param options the options value to set * @return the DatabaseAutomaticTuningInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseBlobAuditingPolicyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseBlobAuditingPolicyInner.java index 15af027e247..834d47ac36b 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseBlobAuditingPolicyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseBlobAuditingPolicyInner.java @@ -74,7 +74,7 @@ public class DatabaseBlobAuditingPolicyInner extends ProxyResourceInner { private Boolean isStorageSecondaryKeyInUse; /** - * Get the kind value. + * Get resource kind. * * @return the kind value */ @@ -83,7 +83,7 @@ public String kind() { } /** - * Get the state value. + * Get specifies the state of the policy. If state is Enabled, storageEndpoint and storageAccountAccessKey are required. Possible values include: 'Enabled', 'Disabled'. * * @return the state value */ @@ -92,7 +92,7 @@ public BlobAuditingPolicyState state() { } /** - * Set the state value. + * Set specifies the state of the policy. If state is Enabled, storageEndpoint and storageAccountAccessKey are required. Possible values include: 'Enabled', 'Disabled'. * * @param state the state value to set * @return the DatabaseBlobAuditingPolicyInner object itself. @@ -103,7 +103,7 @@ public DatabaseBlobAuditingPolicyInner withState(BlobAuditingPolicyState state) } /** - * Get the storageEndpoint value. + * Get specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint is required. * * @return the storageEndpoint value */ @@ -112,7 +112,7 @@ public String storageEndpoint() { } /** - * Set the storageEndpoint value. + * Set specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). If state is Enabled, storageEndpoint is required. * * @param storageEndpoint the storageEndpoint value to set * @return the DatabaseBlobAuditingPolicyInner object itself. @@ -123,7 +123,7 @@ public DatabaseBlobAuditingPolicyInner withStorageEndpoint(String storageEndpoin } /** - * Get the storageAccountAccessKey value. + * Get specifies the identifier key of the auditing storage account. If state is Enabled, storageAccountAccessKey is required. * * @return the storageAccountAccessKey value */ @@ -132,7 +132,7 @@ public String storageAccountAccessKey() { } /** - * Set the storageAccountAccessKey value. + * Set specifies the identifier key of the auditing storage account. If state is Enabled, storageAccountAccessKey is required. * * @param storageAccountAccessKey the storageAccountAccessKey value to set * @return the DatabaseBlobAuditingPolicyInner object itself. @@ -143,7 +143,7 @@ public DatabaseBlobAuditingPolicyInner withStorageAccountAccessKey(String storag } /** - * Get the retentionDays value. + * Get specifies the number of days to keep in the audit logs. * * @return the retentionDays value */ @@ -152,7 +152,7 @@ public Integer retentionDays() { } /** - * Set the retentionDays value. + * Set specifies the number of days to keep in the audit logs. * * @param retentionDays the retentionDays value to set * @return the DatabaseBlobAuditingPolicyInner object itself. @@ -163,7 +163,7 @@ public DatabaseBlobAuditingPolicyInner withRetentionDays(Integer retentionDays) } /** - * Get the auditActionsAndGroups value. + * Get specifies the Actions and Actions-Groups to audit. * * @return the auditActionsAndGroups value */ @@ -172,7 +172,7 @@ public List auditActionsAndGroups() { } /** - * Set the auditActionsAndGroups value. + * Set specifies the Actions and Actions-Groups to audit. * * @param auditActionsAndGroups the auditActionsAndGroups value to set * @return the DatabaseBlobAuditingPolicyInner object itself. @@ -183,7 +183,7 @@ public DatabaseBlobAuditingPolicyInner withAuditActionsAndGroups(List au } /** - * Get the storageAccountSubscriptionId value. + * Get specifies the blob storage subscription Id. * * @return the storageAccountSubscriptionId value */ @@ -192,7 +192,7 @@ public UUID storageAccountSubscriptionId() { } /** - * Set the storageAccountSubscriptionId value. + * Set specifies the blob storage subscription Id. * * @param storageAccountSubscriptionId the storageAccountSubscriptionId value to set * @return the DatabaseBlobAuditingPolicyInner object itself. @@ -203,7 +203,7 @@ public DatabaseBlobAuditingPolicyInner withStorageAccountSubscriptionId(UUID sto } /** - * Get the isStorageSecondaryKeyInUse value. + * Get specifies whether storageAccountAccessKey value is the storage’s secondary key. * * @return the isStorageSecondaryKeyInUse value */ @@ -212,7 +212,7 @@ public Boolean isStorageSecondaryKeyInUse() { } /** - * Set the isStorageSecondaryKeyInUse value. + * Set specifies whether storageAccountAccessKey value is the storage’s secondary key. * * @param isStorageSecondaryKeyInUse the isStorageSecondaryKeyInUse value to set * @return the DatabaseBlobAuditingPolicyInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseInner.java index ab6d6db79dd..b7e58f26ce9 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseInner.java @@ -256,7 +256,7 @@ public class DatabaseInner extends TrackedResourceInner { private Sku currentSku; /** - * Get the sku value. + * Get the name and tier of the SKU. * * @return the sku value */ @@ -265,7 +265,7 @@ public Sku sku() { } /** - * Set the sku value. + * Set the name and tier of the SKU. * * @param sku the sku value to set * @return the DatabaseInner object itself. @@ -276,7 +276,7 @@ public DatabaseInner withSku(Sku sku) { } /** - * Get the kind value. + * Get kind of database. This is metadata used for the Azure portal experience. * * @return the kind value */ @@ -285,7 +285,7 @@ public String kind() { } /** - * Get the managedBy value. + * Get resource that manages the database. * * @return the managedBy value */ @@ -294,7 +294,15 @@ public String managedBy() { } /** - * Get the createMode value. + * Get specifies the mode of database creation. + Default: regular database creation. + Copy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database. + Secondary: creates a database as a secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database. + PointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified. + Recovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore. + Restore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time. + RestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID. + Copy, Secondary, and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition. Possible values include: 'Default', 'Copy', 'Secondary', 'PointInTimeRestore', 'Restore', 'Recovery', 'RestoreExternalBackup', 'RestoreExternalBackupSecondary', 'RestoreLongTermRetentionBackup', 'OnlineSecondary'. * * @return the createMode value */ @@ -303,7 +311,15 @@ public CreateMode createMode() { } /** - * Set the createMode value. + * Set specifies the mode of database creation. + Default: regular database creation. + Copy: creates a database as a copy of an existing database. sourceDatabaseId must be specified as the resource ID of the source database. + Secondary: creates a database as a secondary replica of an existing database. sourceDatabaseId must be specified as the resource ID of the existing primary database. + PointInTimeRestore: Creates a database by restoring a point in time backup of an existing database. sourceDatabaseId must be specified as the resource ID of the existing database, and restorePointInTime must be specified. + Recovery: Creates a database by restoring a geo-replicated backup. sourceDatabaseId must be specified as the recoverable database resource ID to restore. + Restore: Creates a database by restoring a backup of a deleted database. sourceDatabaseId must be specified. If sourceDatabaseId is the database's original resource ID, then sourceDatabaseDeletionDate must be specified. Otherwise sourceDatabaseId must be the restorable dropped database resource ID and sourceDatabaseDeletionDate is ignored. restorePointInTime may also be specified to restore from an earlier point in time. + RestoreLongTermRetentionBackup: Creates a database by restoring from a long term retention vault. recoveryServicesRecoveryPointResourceId must be specified as the recovery point resource ID. + Copy, Secondary, and RestoreLongTermRetentionBackup are not supported for DataWarehouse edition. Possible values include: 'Default', 'Copy', 'Secondary', 'PointInTimeRestore', 'Restore', 'Recovery', 'RestoreExternalBackup', 'RestoreExternalBackupSecondary', 'RestoreLongTermRetentionBackup', 'OnlineSecondary'. * * @param createMode the createMode value to set * @return the DatabaseInner object itself. @@ -314,7 +330,7 @@ public DatabaseInner withCreateMode(CreateMode createMode) { } /** - * Get the collation value. + * Get the collation of the database. * * @return the collation value */ @@ -323,7 +339,7 @@ public String collation() { } /** - * Set the collation value. + * Set the collation of the database. * * @param collation the collation value to set * @return the DatabaseInner object itself. @@ -334,7 +350,7 @@ public DatabaseInner withCollation(String collation) { } /** - * Get the maxSizeBytes value. + * Get the max size of the database expressed in bytes. * * @return the maxSizeBytes value */ @@ -343,7 +359,7 @@ public Long maxSizeBytes() { } /** - * Set the maxSizeBytes value. + * Set the max size of the database expressed in bytes. * * @param maxSizeBytes the maxSizeBytes value to set * @return the DatabaseInner object itself. @@ -354,7 +370,7 @@ public DatabaseInner withMaxSizeBytes(Long maxSizeBytes) { } /** - * Get the sampleName value. + * Get the name of the sample schema to apply when creating this database. Possible values include: 'AdventureWorksLT', 'WideWorldImportersStd', 'WideWorldImportersFull'. * * @return the sampleName value */ @@ -363,7 +379,7 @@ public SampleName sampleName() { } /** - * Set the sampleName value. + * Set the name of the sample schema to apply when creating this database. Possible values include: 'AdventureWorksLT', 'WideWorldImportersStd', 'WideWorldImportersFull'. * * @param sampleName the sampleName value to set * @return the DatabaseInner object itself. @@ -374,7 +390,7 @@ public DatabaseInner withSampleName(SampleName sampleName) { } /** - * Get the elasticPoolId value. + * Get the resource identifier of the elastic pool containing this database. * * @return the elasticPoolId value */ @@ -383,7 +399,7 @@ public String elasticPoolId() { } /** - * Set the elasticPoolId value. + * Set the resource identifier of the elastic pool containing this database. * * @param elasticPoolId the elasticPoolId value to set * @return the DatabaseInner object itself. @@ -394,7 +410,7 @@ public DatabaseInner withElasticPoolId(String elasticPoolId) { } /** - * Get the sourceDatabaseId value. + * Get the resource identifier of the source database associated with create operation of this database. * * @return the sourceDatabaseId value */ @@ -403,7 +419,7 @@ public String sourceDatabaseId() { } /** - * Set the sourceDatabaseId value. + * Set the resource identifier of the source database associated with create operation of this database. * * @param sourceDatabaseId the sourceDatabaseId value to set * @return the DatabaseInner object itself. @@ -414,7 +430,7 @@ public DatabaseInner withSourceDatabaseId(String sourceDatabaseId) { } /** - * Get the status value. + * Get the status of the database. Possible values include: 'Online', 'Restoring', 'RecoveryPending', 'Recovering', 'Suspect', 'Offline', 'Standby', 'Shutdown', 'EmergencyMode', 'AutoClosed', 'Copying', 'Creating', 'Inaccessible', 'OfflineSecondary', 'Pausing', 'Paused', 'Resuming', 'Scaling'. * * @return the status value */ @@ -423,7 +439,7 @@ public DatabaseStatus status() { } /** - * Get the databaseId value. + * Get the ID of the database. * * @return the databaseId value */ @@ -432,7 +448,7 @@ public UUID databaseId() { } /** - * Get the creationDate value. + * Get the creation date of the database (ISO8601 format). * * @return the creationDate value */ @@ -441,7 +457,7 @@ public DateTime creationDate() { } /** - * Get the currentServiceObjectiveName value. + * Get the current service level objective name of the database. * * @return the currentServiceObjectiveName value */ @@ -450,7 +466,7 @@ public String currentServiceObjectiveName() { } /** - * Get the requestedServiceObjectiveName value. + * Get the requested service level objective name of the database. * * @return the requestedServiceObjectiveName value */ @@ -459,7 +475,7 @@ public String requestedServiceObjectiveName() { } /** - * Get the defaultSecondaryLocation value. + * Get the default secondary region for this database. * * @return the defaultSecondaryLocation value */ @@ -468,7 +484,7 @@ public String defaultSecondaryLocation() { } /** - * Get the failoverGroupId value. + * Get failover Group resource identifier that this database belongs to. * * @return the failoverGroupId value */ @@ -477,7 +493,7 @@ public String failoverGroupId() { } /** - * Get the restorePointInTime value. + * Get specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @return the restorePointInTime value */ @@ -486,7 +502,7 @@ public DateTime restorePointInTime() { } /** - * Set the restorePointInTime value. + * Set specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @param restorePointInTime the restorePointInTime value to set * @return the DatabaseInner object itself. @@ -497,7 +513,7 @@ public DatabaseInner withRestorePointInTime(DateTime restorePointInTime) { } /** - * Get the sourceDatabaseDeletionDate value. + * Get specifies the time that the database was deleted. * * @return the sourceDatabaseDeletionDate value */ @@ -506,7 +522,7 @@ public DateTime sourceDatabaseDeletionDate() { } /** - * Set the sourceDatabaseDeletionDate value. + * Set specifies the time that the database was deleted. * * @param sourceDatabaseDeletionDate the sourceDatabaseDeletionDate value to set * @return the DatabaseInner object itself. @@ -517,7 +533,7 @@ public DatabaseInner withSourceDatabaseDeletionDate(DateTime sourceDatabaseDelet } /** - * Get the recoveryServicesRecoveryPointId value. + * Get the resource identifier of the recovery point associated with create operation of this database. * * @return the recoveryServicesRecoveryPointId value */ @@ -526,7 +542,7 @@ public String recoveryServicesRecoveryPointId() { } /** - * Set the recoveryServicesRecoveryPointId value. + * Set the resource identifier of the recovery point associated with create operation of this database. * * @param recoveryServicesRecoveryPointId the recoveryServicesRecoveryPointId value to set * @return the DatabaseInner object itself. @@ -537,7 +553,7 @@ public DatabaseInner withRecoveryServicesRecoveryPointId(String recoveryServices } /** - * Get the longTermRetentionBackupResourceId value. + * Get the resource identifier of the long term retention backup associated with create operation of this database. * * @return the longTermRetentionBackupResourceId value */ @@ -546,7 +562,7 @@ public String longTermRetentionBackupResourceId() { } /** - * Set the longTermRetentionBackupResourceId value. + * Set the resource identifier of the long term retention backup associated with create operation of this database. * * @param longTermRetentionBackupResourceId the longTermRetentionBackupResourceId value to set * @return the DatabaseInner object itself. @@ -557,7 +573,7 @@ public DatabaseInner withLongTermRetentionBackupResourceId(String longTermRetent } /** - * Get the recoverableDatabaseId value. + * Get the resource identifier of the recoverable database associated with create operation of this database. * * @return the recoverableDatabaseId value */ @@ -566,7 +582,7 @@ public String recoverableDatabaseId() { } /** - * Set the recoverableDatabaseId value. + * Set the resource identifier of the recoverable database associated with create operation of this database. * * @param recoverableDatabaseId the recoverableDatabaseId value to set * @return the DatabaseInner object itself. @@ -577,7 +593,7 @@ public DatabaseInner withRecoverableDatabaseId(String recoverableDatabaseId) { } /** - * Get the restorableDroppedDatabaseId value. + * Get the resource identifier of the restorable dropped database associated with create operation of this database. * * @return the restorableDroppedDatabaseId value */ @@ -586,7 +602,7 @@ public String restorableDroppedDatabaseId() { } /** - * Set the restorableDroppedDatabaseId value. + * Set the resource identifier of the restorable dropped database associated with create operation of this database. * * @param restorableDroppedDatabaseId the restorableDroppedDatabaseId value to set * @return the DatabaseInner object itself. @@ -597,7 +613,7 @@ public DatabaseInner withRestorableDroppedDatabaseId(String restorableDroppedDat } /** - * Get the catalogCollation value. + * Get collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @return the catalogCollation value */ @@ -606,7 +622,7 @@ public CatalogCollationType catalogCollation() { } /** - * Set the catalogCollation value. + * Set collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @param catalogCollation the catalogCollation value to set * @return the DatabaseInner object itself. @@ -617,7 +633,7 @@ public DatabaseInner withCatalogCollation(CatalogCollationType catalogCollation) } /** - * Get the zoneRedundant value. + * Get whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones. * * @return the zoneRedundant value */ @@ -626,7 +642,7 @@ public Boolean zoneRedundant() { } /** - * Set the zoneRedundant value. + * Set whether or not this database is zone redundant, which means the replicas of this database will be spread across multiple availability zones. * * @param zoneRedundant the zoneRedundant value to set * @return the DatabaseInner object itself. @@ -637,7 +653,7 @@ public DatabaseInner withZoneRedundant(Boolean zoneRedundant) { } /** - * Get the licenseType value. + * Get the license type to apply for this database. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @return the licenseType value */ @@ -646,7 +662,7 @@ public DatabaseLicenseType licenseType() { } /** - * Set the licenseType value. + * Set the license type to apply for this database. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @param licenseType the licenseType value to set * @return the DatabaseInner object itself. @@ -657,7 +673,7 @@ public DatabaseInner withLicenseType(DatabaseLicenseType licenseType) { } /** - * Get the maxLogSizeBytes value. + * Get the max log size for this database. * * @return the maxLogSizeBytes value */ @@ -666,7 +682,7 @@ public Long maxLogSizeBytes() { } /** - * Get the earliestRestoreDate value. + * Get this records the earliest start date and time that restore is available for this database (ISO8601 format). * * @return the earliestRestoreDate value */ @@ -675,7 +691,7 @@ public DateTime earliestRestoreDate() { } /** - * Get the readScale value. + * Get the state of read-only routing. If enabled, connections that have application intent set to readonly in their connection string may be routed to a readonly secondary replica in the same region. Possible values include: 'Enabled', 'Disabled'. * * @return the readScale value */ @@ -684,7 +700,7 @@ public DatabaseReadScale readScale() { } /** - * Set the readScale value. + * Set the state of read-only routing. If enabled, connections that have application intent set to readonly in their connection string may be routed to a readonly secondary replica in the same region. Possible values include: 'Enabled', 'Disabled'. * * @param readScale the readScale value to set * @return the DatabaseInner object itself. @@ -695,7 +711,7 @@ public DatabaseInner withReadScale(DatabaseReadScale readScale) { } /** - * Get the currentSku value. + * Get the name and tier of the SKU. * * @return the currentSku value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseOperationInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseOperationInner.java index f92cc524dd6..e6a20881d53 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseOperationInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseOperationInner.java @@ -104,7 +104,7 @@ public class DatabaseOperationInner extends ProxyResourceInner { private Boolean isCancellable; /** - * Get the databaseName value. + * Get the name of the database the operation is being performed on. * * @return the databaseName value */ @@ -113,7 +113,7 @@ public String databaseName() { } /** - * Get the operation value. + * Get the name of operation. * * @return the operation value */ @@ -122,7 +122,7 @@ public String operation() { } /** - * Get the operationFriendlyName value. + * Get the friendly name of operation. * * @return the operationFriendlyName value */ @@ -131,7 +131,7 @@ public String operationFriendlyName() { } /** - * Get the percentComplete value. + * Get the percentage of the operation completed. * * @return the percentComplete value */ @@ -140,7 +140,7 @@ public Integer percentComplete() { } /** - * Get the serverName value. + * Get the name of the server. * * @return the serverName value */ @@ -149,7 +149,7 @@ public String serverName() { } /** - * Get the startTime value. + * Get the operation start time. * * @return the startTime value */ @@ -158,7 +158,7 @@ public DateTime startTime() { } /** - * Get the state value. + * Get the operation state. Possible values include: 'Pending', 'InProgress', 'Succeeded', 'Failed', 'CancelInProgress', 'Cancelled'. * * @return the state value */ @@ -167,7 +167,7 @@ public ManagementOperationState state() { } /** - * Get the errorCode value. + * Get the operation error code. * * @return the errorCode value */ @@ -176,7 +176,7 @@ public Integer errorCode() { } /** - * Get the errorDescription value. + * Get the operation error description. * * @return the errorDescription value */ @@ -185,7 +185,7 @@ public String errorDescription() { } /** - * Get the errorSeverity value. + * Get the operation error severity. * * @return the errorSeverity value */ @@ -194,7 +194,7 @@ public Integer errorSeverity() { } /** - * Get the isUserError value. + * Get whether or not the error is a user error. * * @return the isUserError value */ @@ -203,7 +203,7 @@ public Boolean isUserError() { } /** - * Get the estimatedCompletionTime value. + * Get the estimated completion time of the operation. * * @return the estimatedCompletionTime value */ @@ -212,7 +212,7 @@ public DateTime estimatedCompletionTime() { } /** - * Get the description value. + * Get the operation description. * * @return the description value */ @@ -221,7 +221,7 @@ public String description() { } /** - * Get the isCancellable value. + * Get whether the operation can be cancelled. * * @return the isCancellable value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseSecurityAlertPolicyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseSecurityAlertPolicyInner.java index c5d5375e88e..26509abf1da 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseSecurityAlertPolicyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseSecurityAlertPolicyInner.java @@ -91,7 +91,7 @@ public class DatabaseSecurityAlertPolicyInner extends ProxyResourceInner { private SecurityAlertPolicyUseServerDefault useServerDefault; /** - * Get the location value. + * Get the geo-location where the resource lives. * * @return the location value */ @@ -100,7 +100,7 @@ public String location() { } /** - * Set the location value. + * Set the geo-location where the resource lives. * * @param location the location value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -111,7 +111,7 @@ public DatabaseSecurityAlertPolicyInner withLocation(String location) { } /** - * Get the kind value. + * Get resource kind. * * @return the kind value */ @@ -120,7 +120,7 @@ public String kind() { } /** - * Get the state value. + * Get specifies the state of the policy. If state is Enabled, storageEndpoint and storageAccountAccessKey are required. Possible values include: 'New', 'Enabled', 'Disabled'. * * @return the state value */ @@ -129,7 +129,7 @@ public SecurityAlertPolicyState state() { } /** - * Set the state value. + * Set specifies the state of the policy. If state is Enabled, storageEndpoint and storageAccountAccessKey are required. Possible values include: 'New', 'Enabled', 'Disabled'. * * @param state the state value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -140,7 +140,7 @@ public DatabaseSecurityAlertPolicyInner withState(SecurityAlertPolicyState state } /** - * Get the disabledAlerts value. + * Get specifies the semicolon-separated list of alerts that are disabled, or empty string to disable no alerts. Possible values: Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly; Usage_Anomaly. * * @return the disabledAlerts value */ @@ -149,7 +149,7 @@ public String disabledAlerts() { } /** - * Set the disabledAlerts value. + * Set specifies the semicolon-separated list of alerts that are disabled, or empty string to disable no alerts. Possible values: Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly; Usage_Anomaly. * * @param disabledAlerts the disabledAlerts value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -160,7 +160,7 @@ public DatabaseSecurityAlertPolicyInner withDisabledAlerts(String disabledAlerts } /** - * Get the emailAddresses value. + * Get specifies the semicolon-separated list of e-mail addresses to which the alert is sent. * * @return the emailAddresses value */ @@ -169,7 +169,7 @@ public String emailAddresses() { } /** - * Set the emailAddresses value. + * Set specifies the semicolon-separated list of e-mail addresses to which the alert is sent. * * @param emailAddresses the emailAddresses value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -180,7 +180,7 @@ public DatabaseSecurityAlertPolicyInner withEmailAddresses(String emailAddresses } /** - * Get the emailAccountAdmins value. + * Get specifies that the alert is sent to the account administrators. Possible values include: 'Enabled', 'Disabled'. * * @return the emailAccountAdmins value */ @@ -189,7 +189,7 @@ public SecurityAlertPolicyEmailAccountAdmins emailAccountAdmins() { } /** - * Set the emailAccountAdmins value. + * Set specifies that the alert is sent to the account administrators. Possible values include: 'Enabled', 'Disabled'. * * @param emailAccountAdmins the emailAccountAdmins value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -200,7 +200,7 @@ public DatabaseSecurityAlertPolicyInner withEmailAccountAdmins(SecurityAlertPoli } /** - * Get the storageEndpoint value. + * Get specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs. If state is Enabled, storageEndpoint is required. * * @return the storageEndpoint value */ @@ -209,7 +209,7 @@ public String storageEndpoint() { } /** - * Set the storageEndpoint value. + * Set specifies the blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all Threat Detection audit logs. If state is Enabled, storageEndpoint is required. * * @param storageEndpoint the storageEndpoint value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -220,7 +220,7 @@ public DatabaseSecurityAlertPolicyInner withStorageEndpoint(String storageEndpoi } /** - * Get the storageAccountAccessKey value. + * Get specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required. * * @return the storageAccountAccessKey value */ @@ -229,7 +229,7 @@ public String storageAccountAccessKey() { } /** - * Set the storageAccountAccessKey value. + * Set specifies the identifier key of the Threat Detection audit storage account. If state is Enabled, storageAccountAccessKey is required. * * @param storageAccountAccessKey the storageAccountAccessKey value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -240,7 +240,7 @@ public DatabaseSecurityAlertPolicyInner withStorageAccountAccessKey(String stora } /** - * Get the retentionDays value. + * Get specifies the number of days to keep in the Threat Detection audit logs. * * @return the retentionDays value */ @@ -249,7 +249,7 @@ public Integer retentionDays() { } /** - * Set the retentionDays value. + * Set specifies the number of days to keep in the Threat Detection audit logs. * * @param retentionDays the retentionDays value to set * @return the DatabaseSecurityAlertPolicyInner object itself. @@ -260,7 +260,7 @@ public DatabaseSecurityAlertPolicyInner withRetentionDays(Integer retentionDays) } /** - * Get the useServerDefault value. + * Get specifies whether to use the default server policy. Possible values include: 'Enabled', 'Disabled'. * * @return the useServerDefault value */ @@ -269,7 +269,7 @@ public SecurityAlertPolicyUseServerDefault useServerDefault() { } /** - * Set the useServerDefault value. + * Set specifies whether to use the default server policy. Possible values include: 'Enabled', 'Disabled'. * * @param useServerDefault the useServerDefault value to set * @return the DatabaseSecurityAlertPolicyInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseUsageInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseUsageInner.java index 6ea9fe02489..a75fb7d698a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseUsageInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseUsageInner.java @@ -58,7 +58,7 @@ public class DatabaseUsageInner { private DateTime nextResetTime; /** - * Get the name value. + * Get the name of the usage metric. * * @return the name value */ @@ -67,7 +67,7 @@ public String name() { } /** - * Get the resourceName value. + * Get the name of the resource. * * @return the resourceName value */ @@ -76,7 +76,7 @@ public String resourceName() { } /** - * Get the displayName value. + * Get the usage metric display name. * * @return the displayName value */ @@ -85,7 +85,7 @@ public String displayName() { } /** - * Get the currentValue value. + * Get the current value of the usage metric. * * @return the currentValue value */ @@ -94,7 +94,7 @@ public Double currentValue() { } /** - * Get the limit value. + * Get the current limit of the usage metric. * * @return the limit value */ @@ -103,7 +103,7 @@ public Double limit() { } /** - * Get the unit value. + * Get the units of the usage metric. * * @return the unit value */ @@ -112,7 +112,7 @@ public String unit() { } /** - * Get the nextResetTime value. + * Get the next reset time for the usage metric (ISO8601 format). * * @return the nextResetTime value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentInner.java index 98d5b983105..05e52d7a66d 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentInner.java @@ -38,7 +38,7 @@ public class DatabaseVulnerabilityAssessmentInner extends ProxyResourceInner { private VulnerabilityAssessmentRecurringScansProperties recurringScans; /** - * Get the storageContainerPath value. + * Get a blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). * * @return the storageContainerPath value */ @@ -47,7 +47,7 @@ public String storageContainerPath() { } /** - * Set the storageContainerPath value. + * Set a blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/). * * @param storageContainerPath the storageContainerPath value to set * @return the DatabaseVulnerabilityAssessmentInner object itself. @@ -58,7 +58,7 @@ public DatabaseVulnerabilityAssessmentInner withStorageContainerPath(String stor } /** - * Get the storageContainerSasKey value. + * Get a shared access signature (SAS Key) that has write access to the blob container specified in 'storageContainerPath' parameter. * * @return the storageContainerSasKey value */ @@ -67,7 +67,7 @@ public String storageContainerSasKey() { } /** - * Set the storageContainerSasKey value. + * Set a shared access signature (SAS Key) that has write access to the blob container specified in 'storageContainerPath' parameter. * * @param storageContainerSasKey the storageContainerSasKey value to set * @return the DatabaseVulnerabilityAssessmentInner object itself. @@ -78,7 +78,7 @@ public DatabaseVulnerabilityAssessmentInner withStorageContainerSasKey(String st } /** - * Get the recurringScans value. + * Get the recurring scans settings. * * @return the recurringScans value */ @@ -87,7 +87,7 @@ public VulnerabilityAssessmentRecurringScansProperties recurringScans() { } /** - * Set the recurringScans value. + * Set the recurring scans settings. * * @param recurringScans the recurringScans value to set * @return the DatabaseVulnerabilityAssessmentInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentRuleBaselineInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentRuleBaselineInner.java index e3e0f28e539..ba2ec45f224 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentRuleBaselineInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentRuleBaselineInner.java @@ -25,7 +25,7 @@ public class DatabaseVulnerabilityAssessmentRuleBaselineInner extends ProxyResou private List baselineResults; /** - * Get the baselineResults value. + * Get the rule baseline result. * * @return the baselineResults value */ @@ -34,7 +34,7 @@ public List baselineResults() { } /** - * Set the baselineResults value. + * Set the rule baseline result. * * @param baselineResults the baselineResults value to set * @return the DatabaseVulnerabilityAssessmentRuleBaselineInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentScansExportInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentScansExportInner.java index fecf64a1054..ade3f30bfee 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentScansExportInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/DatabaseVulnerabilityAssessmentScansExportInner.java @@ -24,7 +24,7 @@ public class DatabaseVulnerabilityAssessmentScansExportInner extends ProxyResour private String exportedReportLocation; /** - * Get the exportedReportLocation value. + * Get location of the exported report (e.g. https://myStorage.blob.core.windows.net/VaScans/scans/serverName/databaseName/scan_scanId.xlsx). * * @return the exportedReportLocation value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolActivityInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolActivityInner.java index 4782a5ba29a..96ecac9b8a5 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolActivityInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolActivityInner.java @@ -145,7 +145,7 @@ public class ElasticPoolActivityInner extends ProxyResourceInner { private Integer requestedDtuGuarantee; /** - * Get the location value. + * Get the geo-location where the resource lives. * * @return the location value */ @@ -154,7 +154,7 @@ public String location() { } /** - * Set the location value. + * Set the geo-location where the resource lives. * * @param location the location value to set * @return the ElasticPoolActivityInner object itself. @@ -165,7 +165,7 @@ public ElasticPoolActivityInner withLocation(String location) { } /** - * Get the endTime value. + * Get the time the operation finished (ISO8601 format). * * @return the endTime value */ @@ -174,7 +174,7 @@ public DateTime endTime() { } /** - * Get the errorCode value. + * Get the error code if available. * * @return the errorCode value */ @@ -183,7 +183,7 @@ public Integer errorCode() { } /** - * Get the errorMessage value. + * Get the error message if available. * * @return the errorMessage value */ @@ -192,7 +192,7 @@ public String errorMessage() { } /** - * Get the errorSeverity value. + * Get the error severity if available. * * @return the errorSeverity value */ @@ -201,7 +201,7 @@ public Integer errorSeverity() { } /** - * Get the operation value. + * Get the operation name. * * @return the operation value */ @@ -210,7 +210,7 @@ public String operation() { } /** - * Get the operationId value. + * Get the unique operation ID. * * @return the operationId value */ @@ -219,7 +219,7 @@ public UUID operationId() { } /** - * Get the percentComplete value. + * Get the percentage complete if available. * * @return the percentComplete value */ @@ -228,7 +228,7 @@ public Integer percentComplete() { } /** - * Get the requestedDatabaseDtuMax value. + * Get the requested max DTU per database if available. * * @return the requestedDatabaseDtuMax value */ @@ -237,7 +237,7 @@ public Integer requestedDatabaseDtuMax() { } /** - * Get the requestedDatabaseDtuMin value. + * Get the requested min DTU per database if available. * * @return the requestedDatabaseDtuMin value */ @@ -246,7 +246,7 @@ public Integer requestedDatabaseDtuMin() { } /** - * Get the requestedDtu value. + * Get the requested DTU for the pool if available. * * @return the requestedDtu value */ @@ -255,7 +255,7 @@ public Integer requestedDtu() { } /** - * Get the requestedElasticPoolName value. + * Get the requested name for the elastic pool if available. * * @return the requestedElasticPoolName value */ @@ -264,7 +264,7 @@ public String requestedElasticPoolName() { } /** - * Get the requestedStorageLimitInGB value. + * Get the requested storage limit for the pool in GB if available. * * @return the requestedStorageLimitInGB value */ @@ -273,7 +273,7 @@ public Long requestedStorageLimitInGB() { } /** - * Get the elasticPoolName value. + * Get the name of the elastic pool. * * @return the elasticPoolName value */ @@ -282,7 +282,7 @@ public String elasticPoolName() { } /** - * Get the serverName value. + * Get the name of the server the elastic pool is in. * * @return the serverName value */ @@ -291,7 +291,7 @@ public String serverName() { } /** - * Get the startTime value. + * Get the time the operation started (ISO8601 format). * * @return the startTime value */ @@ -300,7 +300,7 @@ public DateTime startTime() { } /** - * Get the state value. + * Get the current state of the operation. * * @return the state value */ @@ -309,7 +309,7 @@ public String state() { } /** - * Get the requestedStorageLimitInMB value. + * Get the requested storage limit in MB. * * @return the requestedStorageLimitInMB value */ @@ -318,7 +318,7 @@ public Integer requestedStorageLimitInMB() { } /** - * Get the requestedDatabaseDtuGuarantee value. + * Get the requested per database DTU guarantee. * * @return the requestedDatabaseDtuGuarantee value */ @@ -327,7 +327,7 @@ public Integer requestedDatabaseDtuGuarantee() { } /** - * Get the requestedDatabaseDtuCap value. + * Get the requested per database DTU cap. * * @return the requestedDatabaseDtuCap value */ @@ -336,7 +336,7 @@ public Integer requestedDatabaseDtuCap() { } /** - * Get the requestedDtuGuarantee value. + * Get the requested DTU guarantee. * * @return the requestedDtuGuarantee value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolDatabaseActivityInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolDatabaseActivityInner.java index 87450043f3f..3cea0febf3f 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolDatabaseActivityInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolDatabaseActivityInner.java @@ -115,7 +115,7 @@ public class ElasticPoolDatabaseActivityInner extends ProxyResourceInner { private String state; /** - * Get the location value. + * Get the geo-location where the resource lives. * * @return the location value */ @@ -124,7 +124,7 @@ public String location() { } /** - * Set the location value. + * Set the geo-location where the resource lives. * * @param location the location value to set * @return the ElasticPoolDatabaseActivityInner object itself. @@ -135,7 +135,7 @@ public ElasticPoolDatabaseActivityInner withLocation(String location) { } /** - * Get the databaseName value. + * Get the database name. * * @return the databaseName value */ @@ -144,7 +144,7 @@ public String databaseName() { } /** - * Get the endTime value. + * Get the time the operation finished (ISO8601 format). * * @return the endTime value */ @@ -153,7 +153,7 @@ public DateTime endTime() { } /** - * Get the errorCode value. + * Get the error code if available. * * @return the errorCode value */ @@ -162,7 +162,7 @@ public Integer errorCode() { } /** - * Get the errorMessage value. + * Get the error message if available. * * @return the errorMessage value */ @@ -171,7 +171,7 @@ public String errorMessage() { } /** - * Get the errorSeverity value. + * Get the error severity if available. * * @return the errorSeverity value */ @@ -180,7 +180,7 @@ public Integer errorSeverity() { } /** - * Get the operation value. + * Get the operation name. * * @return the operation value */ @@ -189,7 +189,7 @@ public String operation() { } /** - * Get the operationId value. + * Get the unique operation ID. * * @return the operationId value */ @@ -198,7 +198,7 @@ public UUID operationId() { } /** - * Get the percentComplete value. + * Get the percentage complete if available. * * @return the percentComplete value */ @@ -207,7 +207,7 @@ public Integer percentComplete() { } /** - * Get the requestedElasticPoolName value. + * Get the name for the elastic pool the database is moving into if available. * * @return the requestedElasticPoolName value */ @@ -216,7 +216,7 @@ public String requestedElasticPoolName() { } /** - * Get the currentElasticPoolName value. + * Get the name of the current elastic pool the database is in if available. * * @return the currentElasticPoolName value */ @@ -225,7 +225,7 @@ public String currentElasticPoolName() { } /** - * Get the currentServiceObjective value. + * Get the name of the current service objective if available. * * @return the currentServiceObjective value */ @@ -234,7 +234,7 @@ public String currentServiceObjective() { } /** - * Get the requestedServiceObjective value. + * Get the name of the requested service objective if available. * * @return the requestedServiceObjective value */ @@ -243,7 +243,7 @@ public String requestedServiceObjective() { } /** - * Get the serverName value. + * Get the name of the server the elastic pool is in. * * @return the serverName value */ @@ -252,7 +252,7 @@ public String serverName() { } /** - * Get the startTime value. + * Get the time the operation started (ISO8601 format). * * @return the startTime value */ @@ -261,7 +261,7 @@ public DateTime startTime() { } /** - * Get the state value. + * Get the current state of the operation. * * @return the state value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolInner.java index 3b0b013c4f8..15b06a52a5d 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolInner.java @@ -95,7 +95,7 @@ public ElasticPoolInner withSku(Sku sku) { } /** - * Get the kind value. + * Get kind of elastic pool. This is metadata used for the Azure portal experience. * * @return the kind value */ @@ -104,7 +104,7 @@ public String kind() { } /** - * Get the state value. + * Get the state of the elastic pool. Possible values include: 'Creating', 'Ready', 'Disabled'. * * @return the state value */ @@ -113,7 +113,7 @@ public ElasticPoolState state() { } /** - * Get the creationDate value. + * Get the creation date of the elastic pool (ISO8601 format). * * @return the creationDate value */ @@ -122,7 +122,7 @@ public DateTime creationDate() { } /** - * Get the maxSizeBytes value. + * Get the storage limit for the database elastic pool in bytes. * * @return the maxSizeBytes value */ @@ -131,7 +131,7 @@ public Long maxSizeBytes() { } /** - * Set the maxSizeBytes value. + * Set the storage limit for the database elastic pool in bytes. * * @param maxSizeBytes the maxSizeBytes value to set * @return the ElasticPoolInner object itself. @@ -142,7 +142,7 @@ public ElasticPoolInner withMaxSizeBytes(Long maxSizeBytes) { } /** - * Get the perDatabaseSettings value. + * Get the per database settings for the elastic pool. * * @return the perDatabaseSettings value */ @@ -151,7 +151,7 @@ public ElasticPoolPerDatabaseSettings perDatabaseSettings() { } /** - * Set the perDatabaseSettings value. + * Set the per database settings for the elastic pool. * * @param perDatabaseSettings the perDatabaseSettings value to set * @return the ElasticPoolInner object itself. @@ -162,7 +162,7 @@ public ElasticPoolInner withPerDatabaseSettings(ElasticPoolPerDatabaseSettings p } /** - * Get the zoneRedundant value. + * Get whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. * * @return the zoneRedundant value */ @@ -171,7 +171,7 @@ public Boolean zoneRedundant() { } /** - * Set the zoneRedundant value. + * Set whether or not this elastic pool is zone redundant, which means the replicas of this elastic pool will be spread across multiple availability zones. * * @param zoneRedundant the zoneRedundant value to set * @return the ElasticPoolInner object itself. @@ -182,7 +182,7 @@ public ElasticPoolInner withZoneRedundant(Boolean zoneRedundant) { } /** - * Get the licenseType value. + * Get the license type to apply for this elastic pool. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @return the licenseType value */ @@ -191,7 +191,7 @@ public ElasticPoolLicenseType licenseType() { } /** - * Set the licenseType value. + * Set the license type to apply for this elastic pool. Possible values include: 'LicenseIncluded', 'BasePrice'. * * @param licenseType the licenseType value to set * @return the ElasticPoolInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolOperationInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolOperationInner.java index ca5d268f67c..acc2c40b8e5 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolOperationInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ElasticPoolOperationInner.java @@ -102,7 +102,7 @@ public class ElasticPoolOperationInner extends ProxyResourceInner { private Boolean isCancellable; /** - * Get the elasticPoolName value. + * Get the name of the elastic pool the operation is being performed on. * * @return the elasticPoolName value */ @@ -111,7 +111,7 @@ public String elasticPoolName() { } /** - * Get the operation value. + * Get the name of operation. * * @return the operation value */ @@ -120,7 +120,7 @@ public String operation() { } /** - * Get the operationFriendlyName value. + * Get the friendly name of operation. * * @return the operationFriendlyName value */ @@ -129,7 +129,7 @@ public String operationFriendlyName() { } /** - * Get the percentComplete value. + * Get the percentage of the operation completed. * * @return the percentComplete value */ @@ -138,7 +138,7 @@ public Integer percentComplete() { } /** - * Get the serverName value. + * Get the name of the server. * * @return the serverName value */ @@ -147,7 +147,7 @@ public String serverName() { } /** - * Get the startTime value. + * Get the operation start time. * * @return the startTime value */ @@ -156,7 +156,7 @@ public DateTime startTime() { } /** - * Get the state value. + * Get the operation state. * * @return the state value */ @@ -165,7 +165,7 @@ public String state() { } /** - * Get the errorCode value. + * Get the operation error code. * * @return the errorCode value */ @@ -174,7 +174,7 @@ public Integer errorCode() { } /** - * Get the errorDescription value. + * Get the operation error description. * * @return the errorDescription value */ @@ -183,7 +183,7 @@ public String errorDescription() { } /** - * Get the errorSeverity value. + * Get the operation error severity. * * @return the errorSeverity value */ @@ -192,7 +192,7 @@ public Integer errorSeverity() { } /** - * Get the isUserError value. + * Get whether or not the error is a user error. * * @return the isUserError value */ @@ -201,7 +201,7 @@ public Boolean isUserError() { } /** - * Get the estimatedCompletionTime value. + * Get the estimated completion time of the operation. * * @return the estimatedCompletionTime value */ @@ -210,7 +210,7 @@ public DateTime estimatedCompletionTime() { } /** - * Get the description value. + * Get the operation description. * * @return the description value */ @@ -219,7 +219,7 @@ public String description() { } /** - * Get the isCancellable value. + * Get whether the operation can be cancelled. * * @return the isCancellable value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/EncryptionProtectorInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/EncryptionProtectorInner.java index ccbeaa6280b..5db8791ab4f 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/EncryptionProtectorInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/EncryptionProtectorInner.java @@ -62,7 +62,7 @@ public class EncryptionProtectorInner extends ProxyResourceInner { private String thumbprint; /** - * Get the kind value. + * Get kind of encryption protector. This is metadata used for the Azure portal experience. * * @return the kind value */ @@ -71,7 +71,7 @@ public String kind() { } /** - * Set the kind value. + * Set kind of encryption protector. This is metadata used for the Azure portal experience. * * @param kind the kind value to set * @return the EncryptionProtectorInner object itself. @@ -82,7 +82,7 @@ public EncryptionProtectorInner withKind(String kind) { } /** - * Get the location value. + * Get resource location. * * @return the location value */ @@ -91,7 +91,7 @@ public String location() { } /** - * Get the subregion value. + * Get subregion of the encryption protector. * * @return the subregion value */ @@ -100,7 +100,7 @@ public String subregion() { } /** - * Get the serverKeyName value. + * Get the name of the server key. * * @return the serverKeyName value */ @@ -109,7 +109,7 @@ public String serverKeyName() { } /** - * Set the serverKeyName value. + * Set the name of the server key. * * @param serverKeyName the serverKeyName value to set * @return the EncryptionProtectorInner object itself. @@ -120,7 +120,7 @@ public EncryptionProtectorInner withServerKeyName(String serverKeyName) { } /** - * Get the serverKeyType value. + * Get the encryption protector type like 'ServiceManaged', 'AzureKeyVault'. Possible values include: 'ServiceManaged', 'AzureKeyVault'. * * @return the serverKeyType value */ @@ -129,7 +129,7 @@ public ServerKeyType serverKeyType() { } /** - * Set the serverKeyType value. + * Set the encryption protector type like 'ServiceManaged', 'AzureKeyVault'. Possible values include: 'ServiceManaged', 'AzureKeyVault'. * * @param serverKeyType the serverKeyType value to set * @return the EncryptionProtectorInner object itself. @@ -140,7 +140,7 @@ public EncryptionProtectorInner withServerKeyType(ServerKeyType serverKeyType) { } /** - * Get the uri value. + * Get the URI of the server key. * * @return the uri value */ @@ -149,7 +149,7 @@ public String uri() { } /** - * Get the thumbprint value. + * Get thumbprint of the server key. * * @return the thumbprint value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FailoverGroupInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FailoverGroupInner.java index 7a73d0f8d74..395fed6c0df 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FailoverGroupInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FailoverGroupInner.java @@ -72,7 +72,7 @@ public class FailoverGroupInner extends ProxyResourceInner { private List databases; /** - * Get the location value. + * Get resource location. * * @return the location value */ @@ -81,7 +81,7 @@ public String location() { } /** - * Get the tags value. + * Get resource tags. * * @return the tags value */ @@ -90,7 +90,7 @@ public Map tags() { } /** - * Set the tags value. + * Set resource tags. * * @param tags the tags value to set * @return the FailoverGroupInner object itself. @@ -101,7 +101,7 @@ public FailoverGroupInner withTags(Map tags) { } /** - * Get the readWriteEndpoint value. + * Get read-write endpoint of the failover group instance. * * @return the readWriteEndpoint value */ @@ -110,7 +110,7 @@ public FailoverGroupReadWriteEndpoint readWriteEndpoint() { } /** - * Set the readWriteEndpoint value. + * Set read-write endpoint of the failover group instance. * * @param readWriteEndpoint the readWriteEndpoint value to set * @return the FailoverGroupInner object itself. @@ -121,7 +121,7 @@ public FailoverGroupInner withReadWriteEndpoint(FailoverGroupReadWriteEndpoint r } /** - * Get the readOnlyEndpoint value. + * Get read-only endpoint of the failover group instance. * * @return the readOnlyEndpoint value */ @@ -130,7 +130,7 @@ public FailoverGroupReadOnlyEndpoint readOnlyEndpoint() { } /** - * Set the readOnlyEndpoint value. + * Set read-only endpoint of the failover group instance. * * @param readOnlyEndpoint the readOnlyEndpoint value to set * @return the FailoverGroupInner object itself. @@ -141,7 +141,7 @@ public FailoverGroupInner withReadOnlyEndpoint(FailoverGroupReadOnlyEndpoint rea } /** - * Get the replicationRole value. + * Get local replication role of the failover group instance. Possible values include: 'Primary', 'Secondary'. * * @return the replicationRole value */ @@ -150,7 +150,7 @@ public FailoverGroupReplicationRole replicationRole() { } /** - * Get the replicationState value. + * Get replication state of the failover group instance. * * @return the replicationState value */ @@ -159,7 +159,7 @@ public String replicationState() { } /** - * Get the partnerServers value. + * Get list of partner server information for the failover group. * * @return the partnerServers value */ @@ -168,7 +168,7 @@ public List partnerServers() { } /** - * Set the partnerServers value. + * Set list of partner server information for the failover group. * * @param partnerServers the partnerServers value to set * @return the FailoverGroupInner object itself. @@ -179,7 +179,7 @@ public FailoverGroupInner withPartnerServers(List partnerServers) { } /** - * Get the databases value. + * Get list of databases in the failover group. * * @return the databases value */ @@ -188,7 +188,7 @@ public List databases() { } /** - * Set the databases value. + * Set list of databases in the failover group. * * @param databases the databases value to set * @return the FailoverGroupInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FirewallRuleInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FirewallRuleInner.java index c0971eb1c40..217556ae8c0 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FirewallRuleInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/FirewallRuleInner.java @@ -44,7 +44,7 @@ public class FirewallRuleInner extends ProxyResourceInner { private String endIpAddress; /** - * Get the kind value. + * Get kind of server that contains this firewall rule. * * @return the kind value */ @@ -53,7 +53,7 @@ public String kind() { } /** - * Get the location value. + * Get location of the server that contains this firewall rule. * * @return the location value */ @@ -62,7 +62,7 @@ public String location() { } /** - * Get the startIpAddress value. + * Get the start IP address of the firewall rule. Must be IPv4 format. Use value '0.0.0.0' to represent all Azure-internal IP addresses. * * @return the startIpAddress value */ @@ -71,7 +71,7 @@ public String startIpAddress() { } /** - * Set the startIpAddress value. + * Set the start IP address of the firewall rule. Must be IPv4 format. Use value '0.0.0.0' to represent all Azure-internal IP addresses. * * @param startIpAddress the startIpAddress value to set * @return the FirewallRuleInner object itself. @@ -82,7 +82,7 @@ public FirewallRuleInner withStartIpAddress(String startIpAddress) { } /** - * Get the endIpAddress value. + * Get the end IP address of the firewall rule. Must be IPv4 format. Must be greater than or equal to startIpAddress. Use value '0.0.0.0' to represent all Azure-internal IP addresses. * * @return the endIpAddress value */ @@ -91,7 +91,7 @@ public String endIpAddress() { } /** - * Set the endIpAddress value. + * Set the end IP address of the firewall rule. Must be IPv4 format. Must be greater than or equal to startIpAddress. Use value '0.0.0.0' to represent all Azure-internal IP addresses. * * @param endIpAddress the endIpAddress value to set * @return the FirewallRuleInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/GeoBackupPolicyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/GeoBackupPolicyInner.java index e15f66d95c7..a52114a0a66 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/GeoBackupPolicyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/GeoBackupPolicyInner.java @@ -44,7 +44,7 @@ public class GeoBackupPolicyInner extends ProxyResourceInner { private String location; /** - * Get the state value. + * Get the state of the geo backup policy. Possible values include: 'Disabled', 'Enabled'. * * @return the state value */ @@ -53,7 +53,7 @@ public GeoBackupPolicyState state() { } /** - * Set the state value. + * Set the state of the geo backup policy. Possible values include: 'Disabled', 'Enabled'. * * @param state the state value to set * @return the GeoBackupPolicyInner object itself. @@ -64,7 +64,7 @@ public GeoBackupPolicyInner withState(GeoBackupPolicyState state) { } /** - * Get the storageType value. + * Get the storage type of the geo backup policy. * * @return the storageType value */ @@ -73,7 +73,7 @@ public String storageType() { } /** - * Get the kind value. + * Get kind of geo backup policy. This is metadata used for the Azure portal experience. * * @return the kind value */ @@ -82,7 +82,7 @@ public String kind() { } /** - * Get the location value. + * Get backup policy location. * * @return the location value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ImportExportResponseInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ImportExportResponseInner.java index 72f94f1dd54..b6e2a4e73ff 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ImportExportResponseInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ImportExportResponseInner.java @@ -72,7 +72,7 @@ public class ImportExportResponseInner extends ProxyResourceInner { private String errorMessage; /** - * Get the requestType value. + * Get the request type of the operation. * * @return the requestType value */ @@ -81,7 +81,7 @@ public String requestType() { } /** - * Get the requestId value. + * Get the request type of the operation. * * @return the requestId value */ @@ -90,7 +90,7 @@ public UUID requestId() { } /** - * Get the serverName value. + * Get the name of the server. * * @return the serverName value */ @@ -99,7 +99,7 @@ public String serverName() { } /** - * Get the databaseName value. + * Get the name of the database. * * @return the databaseName value */ @@ -108,7 +108,7 @@ public String databaseName() { } /** - * Get the status value. + * Get the status message returned from the server. * * @return the status value */ @@ -117,7 +117,7 @@ public String status() { } /** - * Get the lastModifiedTime value. + * Get the operation status last modified time. * * @return the lastModifiedTime value */ @@ -126,7 +126,7 @@ public String lastModifiedTime() { } /** - * Get the queuedTime value. + * Get the operation queued time. * * @return the queuedTime value */ @@ -135,7 +135,7 @@ public String queuedTime() { } /** - * Get the blobUri value. + * Get the blob uri. * * @return the blobUri value */ @@ -144,7 +144,7 @@ public String blobUri() { } /** - * Get the errorMessage value. + * Get the error message returned from the server. * * @return the errorMessage value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/InstanceFailoverGroupInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/InstanceFailoverGroupInner.java index a2be1ffbbb1..c23cd0cc1f5 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/InstanceFailoverGroupInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/InstanceFailoverGroupInner.java @@ -60,7 +60,7 @@ public class InstanceFailoverGroupInner extends ProxyResourceInner { private List managedInstancePairs; /** - * Get the readWriteEndpoint value. + * Get read-write endpoint of the failover group instance. * * @return the readWriteEndpoint value */ @@ -69,7 +69,7 @@ public InstanceFailoverGroupReadWriteEndpoint readWriteEndpoint() { } /** - * Set the readWriteEndpoint value. + * Set read-write endpoint of the failover group instance. * * @param readWriteEndpoint the readWriteEndpoint value to set * @return the InstanceFailoverGroupInner object itself. @@ -80,7 +80,7 @@ public InstanceFailoverGroupInner withReadWriteEndpoint(InstanceFailoverGroupRea } /** - * Get the readOnlyEndpoint value. + * Get read-only endpoint of the failover group instance. * * @return the readOnlyEndpoint value */ @@ -89,7 +89,7 @@ public InstanceFailoverGroupReadOnlyEndpoint readOnlyEndpoint() { } /** - * Set the readOnlyEndpoint value. + * Set read-only endpoint of the failover group instance. * * @param readOnlyEndpoint the readOnlyEndpoint value to set * @return the InstanceFailoverGroupInner object itself. @@ -100,7 +100,7 @@ public InstanceFailoverGroupInner withReadOnlyEndpoint(InstanceFailoverGroupRead } /** - * Get the replicationRole value. + * Get local replication role of the failover group instance. Possible values include: 'Primary', 'Secondary'. * * @return the replicationRole value */ @@ -109,7 +109,7 @@ public InstanceFailoverGroupReplicationRole replicationRole() { } /** - * Get the replicationState value. + * Get replication state of the failover group instance. * * @return the replicationState value */ @@ -118,7 +118,7 @@ public String replicationState() { } /** - * Get the partnerRegions value. + * Get partner region information for the failover group. * * @return the partnerRegions value */ @@ -127,7 +127,7 @@ public List partnerRegions() { } /** - * Set the partnerRegions value. + * Set partner region information for the failover group. * * @param partnerRegions the partnerRegions value to set * @return the InstanceFailoverGroupInner object itself. @@ -138,7 +138,7 @@ public InstanceFailoverGroupInner withPartnerRegions(List par } /** - * Get the managedInstancePairs value. + * Get list of managed instance pairs in the failover group. * * @return the managedInstancePairs value */ @@ -147,7 +147,7 @@ public List managedInstancePairs() { } /** - * Set the managedInstancePairs value. + * Set list of managed instance pairs in the failover group. * * @param managedInstancePairs the managedInstancePairs value to set * @return the InstanceFailoverGroupInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobAgentInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobAgentInner.java index 0cf0561cff3..43b298349ab 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobAgentInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobAgentInner.java @@ -38,7 +38,7 @@ public class JobAgentInner extends TrackedResourceInner { private JobAgentState state; /** - * Get the sku value. + * Get the name and tier of the SKU. * * @return the sku value */ @@ -47,7 +47,7 @@ public Sku sku() { } /** - * Set the sku value. + * Set the name and tier of the SKU. * * @param sku the sku value to set * @return the JobAgentInner object itself. @@ -58,7 +58,7 @@ public JobAgentInner withSku(Sku sku) { } /** - * Get the databaseId value. + * Get resource ID of the database to store job metadata in. * * @return the databaseId value */ @@ -67,7 +67,7 @@ public String databaseId() { } /** - * Set the databaseId value. + * Set resource ID of the database to store job metadata in. * * @param databaseId the databaseId value to set * @return the JobAgentInner object itself. @@ -78,7 +78,7 @@ public JobAgentInner withDatabaseId(String databaseId) { } /** - * Get the state value. + * Get the state of the job agent. Possible values include: 'Creating', 'Ready', 'Updating', 'Deleting', 'Disabled'. * * @return the state value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobCredentialInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobCredentialInner.java index 7f05c03ccdf..fc8c52ed692 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobCredentialInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobCredentialInner.java @@ -30,7 +30,7 @@ public class JobCredentialInner extends ProxyResourceInner { private String password; /** - * Get the username value. + * Get the credential user name. * * @return the username value */ @@ -39,7 +39,7 @@ public String username() { } /** - * Set the username value. + * Set the credential user name. * * @param username the username value to set * @return the JobCredentialInner object itself. @@ -50,7 +50,7 @@ public JobCredentialInner withUsername(String username) { } /** - * Get the password value. + * Get the credential password. * * @return the password value */ @@ -59,7 +59,7 @@ public String password() { } /** - * Set the password value. + * Set the credential password. * * @param password the password value to set * @return the JobCredentialInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobExecutionInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobExecutionInner.java index 4735ef7a201..985e23a1b00 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobExecutionInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobExecutionInner.java @@ -104,7 +104,7 @@ public class JobExecutionInner extends ProxyResourceInner { private JobExecutionTarget target; /** - * Get the jobVersion value. + * Get the job version number. * * @return the jobVersion value */ @@ -113,7 +113,7 @@ public Integer jobVersion() { } /** - * Get the stepName value. + * Get the job step name. * * @return the stepName value */ @@ -122,7 +122,7 @@ public String stepName() { } /** - * Get the stepId value. + * Get the job step id. * * @return the stepId value */ @@ -131,7 +131,7 @@ public Integer stepId() { } /** - * Get the jobExecutionId value. + * Get the unique identifier of the job execution. * * @return the jobExecutionId value */ @@ -140,7 +140,7 @@ public UUID jobExecutionId() { } /** - * Get the lifecycle value. + * Get the detailed state of the job execution. Possible values include: 'Created', 'InProgress', 'WaitingForChildJobExecutions', 'WaitingForRetry', 'Succeeded', 'SucceededWithSkipped', 'Failed', 'TimedOut', 'Canceled', 'Skipped'. * * @return the lifecycle value */ @@ -149,7 +149,7 @@ public JobExecutionLifecycle lifecycle() { } /** - * Get the provisioningState value. + * Get the ARM provisioning state of the job execution. Possible values include: 'Created', 'InProgress', 'Succeeded', 'Failed', 'Canceled'. * * @return the provisioningState value */ @@ -158,7 +158,7 @@ public ProvisioningState provisioningState() { } /** - * Get the createTime value. + * Get the time that the job execution was created. * * @return the createTime value */ @@ -167,7 +167,7 @@ public DateTime createTime() { } /** - * Get the startTime value. + * Get the time that the job execution started. * * @return the startTime value */ @@ -176,7 +176,7 @@ public DateTime startTime() { } /** - * Get the endTime value. + * Get the time that the job execution completed. * * @return the endTime value */ @@ -185,7 +185,7 @@ public DateTime endTime() { } /** - * Get the currentAttempts value. + * Get number of times the job execution has been attempted. * * @return the currentAttempts value */ @@ -194,7 +194,7 @@ public Integer currentAttempts() { } /** - * Set the currentAttempts value. + * Set number of times the job execution has been attempted. * * @param currentAttempts the currentAttempts value to set * @return the JobExecutionInner object itself. @@ -205,7 +205,7 @@ public JobExecutionInner withCurrentAttempts(Integer currentAttempts) { } /** - * Get the currentAttemptStartTime value. + * Get start time of the current attempt. * * @return the currentAttemptStartTime value */ @@ -214,7 +214,7 @@ public DateTime currentAttemptStartTime() { } /** - * Get the lastMessage value. + * Get the last status or error message. * * @return the lastMessage value */ @@ -223,7 +223,7 @@ public String lastMessage() { } /** - * Get the target value. + * Get the target that this execution is executed on. * * @return the target value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobInner.java index dc0083e046c..c9b2a8e2fb2 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobInner.java @@ -36,7 +36,7 @@ public class JobInner extends ProxyResourceInner { private JobSchedule schedule; /** - * Get the description value. + * Get user-defined description of the job. * * @return the description value */ @@ -45,7 +45,7 @@ public String description() { } /** - * Set the description value. + * Set user-defined description of the job. * * @param description the description value to set * @return the JobInner object itself. @@ -56,7 +56,7 @@ public JobInner withDescription(String description) { } /** - * Get the version value. + * Get the job version number. * * @return the version value */ @@ -65,7 +65,7 @@ public Integer version() { } /** - * Get the schedule value. + * Get schedule properties of the job. * * @return the schedule value */ @@ -74,7 +74,7 @@ public JobSchedule schedule() { } /** - * Set the schedule value. + * Set schedule properties of the job. * * @param schedule the schedule value to set * @return the JobInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobStepInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobStepInner.java index b5cf1a863d8..c3dd423f214 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobStepInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobStepInner.java @@ -60,7 +60,7 @@ public class JobStepInner extends ProxyResourceInner { private JobStepExecutionOptions executionOptions; /** - * Get the stepId value. + * Get the job step's index within the job. If not specified when creating the job step, it will be created as the last step. If not specified when updating the job step, the step id is not modified. * * @return the stepId value */ @@ -69,7 +69,7 @@ public Integer stepId() { } /** - * Set the stepId value. + * Set the job step's index within the job. If not specified when creating the job step, it will be created as the last step. If not specified when updating the job step, the step id is not modified. * * @param stepId the stepId value to set * @return the JobStepInner object itself. @@ -80,7 +80,7 @@ public JobStepInner withStepId(Integer stepId) { } /** - * Get the targetGroup value. + * Get the resource ID of the target group that the job step will be executed on. * * @return the targetGroup value */ @@ -89,7 +89,7 @@ public String targetGroup() { } /** - * Set the targetGroup value. + * Set the resource ID of the target group that the job step will be executed on. * * @param targetGroup the targetGroup value to set * @return the JobStepInner object itself. @@ -100,7 +100,7 @@ public JobStepInner withTargetGroup(String targetGroup) { } /** - * Get the credential value. + * Get the resource ID of the job credential that will be used to connect to the targets. * * @return the credential value */ @@ -109,7 +109,7 @@ public String credential() { } /** - * Set the credential value. + * Set the resource ID of the job credential that will be used to connect to the targets. * * @param credential the credential value to set * @return the JobStepInner object itself. @@ -120,7 +120,7 @@ public JobStepInner withCredential(String credential) { } /** - * Get the action value. + * Get the action payload of the job step. * * @return the action value */ @@ -129,7 +129,7 @@ public JobStepAction action() { } /** - * Set the action value. + * Set the action payload of the job step. * * @param action the action value to set * @return the JobStepInner object itself. @@ -140,7 +140,7 @@ public JobStepInner withAction(JobStepAction action) { } /** - * Get the output value. + * Get output destination properties of the job step. * * @return the output value */ @@ -149,7 +149,7 @@ public JobStepOutput output() { } /** - * Set the output value. + * Set output destination properties of the job step. * * @param output the output value to set * @return the JobStepInner object itself. @@ -160,7 +160,7 @@ public JobStepInner withOutput(JobStepOutput output) { } /** - * Get the executionOptions value. + * Get execution options for the job step. * * @return the executionOptions value */ @@ -169,7 +169,7 @@ public JobStepExecutionOptions executionOptions() { } /** - * Set the executionOptions value. + * Set execution options for the job step. * * @param executionOptions the executionOptions value to set * @return the JobStepInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobTargetGroupInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobTargetGroupInner.java index 73784441b99..15e9840f46f 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobTargetGroupInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/JobTargetGroupInner.java @@ -25,7 +25,7 @@ public class JobTargetGroupInner extends ProxyResourceInner { private List members; /** - * Get the members value. + * Get members of the target group. * * @return the members value */ @@ -34,7 +34,7 @@ public List members() { } /** - * Set the members value. + * Set members of the target group. * * @param members the members value to set * @return the JobTargetGroupInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LocationCapabilitiesInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LocationCapabilitiesInner.java index 27145505693..277ad892f98 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LocationCapabilitiesInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LocationCapabilitiesInner.java @@ -50,7 +50,7 @@ public class LocationCapabilitiesInner { private String reason; /** - * Get the name value. + * Get the location name. * * @return the name value */ @@ -59,7 +59,7 @@ public String name() { } /** - * Get the supportedServerVersions value. + * Get the list of supported server versions. * * @return the supportedServerVersions value */ @@ -68,7 +68,7 @@ public List supportedServerVersions() { } /** - * Get the supportedManagedInstanceVersions value. + * Get the list of supported managed instance versions. * * @return the supportedManagedInstanceVersions value */ @@ -77,7 +77,7 @@ public List supportedManagedInstanceVersions() } /** - * Get the status value. + * Get the status of the capability. Possible values include: 'Visible', 'Available', 'Default', 'Disabled'. * * @return the status value */ @@ -86,7 +86,7 @@ public CapabilityStatus status() { } /** - * Get the reason value. + * Get the reason for the capability not being available. * * @return the reason value */ @@ -95,7 +95,7 @@ public String reason() { } /** - * Set the reason value. + * Set the reason for the capability not being available. * * @param reason the reason value to set * @return the LocationCapabilitiesInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LongTermRetentionBackupInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LongTermRetentionBackupInner.java index f525aeb74ea..e654692931b 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LongTermRetentionBackupInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/LongTermRetentionBackupInner.java @@ -54,7 +54,7 @@ public class LongTermRetentionBackupInner extends ProxyResourceInner { private DateTime backupExpirationTime; /** - * Get the serverName value. + * Get the server name that the backup database belong to. * * @return the serverName value */ @@ -63,7 +63,7 @@ public String serverName() { } /** - * Get the serverCreateTime value. + * Get the create time of the server. * * @return the serverCreateTime value */ @@ -72,7 +72,7 @@ public DateTime serverCreateTime() { } /** - * Get the databaseName value. + * Get the name of the database the backup belong to. * * @return the databaseName value */ @@ -81,7 +81,7 @@ public String databaseName() { } /** - * Get the databaseDeletionTime value. + * Get the delete time of the database. * * @return the databaseDeletionTime value */ @@ -90,7 +90,7 @@ public DateTime databaseDeletionTime() { } /** - * Get the backupTime value. + * Get the time the backup was taken. * * @return the backupTime value */ @@ -99,7 +99,7 @@ public DateTime backupTime() { } /** - * Get the backupExpirationTime value. + * Get the time the long term retention backup will expire. * * @return the backupExpirationTime value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedDatabaseInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedDatabaseInner.java index 7c2b398629d..a5c06897341 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedDatabaseInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedDatabaseInner.java @@ -108,7 +108,7 @@ public class ManagedDatabaseInner extends TrackedResourceInner { private String failoverGroupId; /** - * Get the collation value. + * Get collation of the managed database. * * @return the collation value */ @@ -117,7 +117,7 @@ public String collation() { } /** - * Set the collation value. + * Set collation of the managed database. * * @param collation the collation value to set * @return the ManagedDatabaseInner object itself. @@ -128,7 +128,7 @@ public ManagedDatabaseInner withCollation(String collation) { } /** - * Get the status value. + * Get status for the database. Possible values include: 'Online', 'Offline', 'Shutdown', 'Creating', 'Inaccessible'. * * @return the status value */ @@ -137,7 +137,7 @@ public ManagedDatabaseStatus status() { } /** - * Get the creationDate value. + * Get creation date of the database. * * @return the creationDate value */ @@ -146,7 +146,7 @@ public DateTime creationDate() { } /** - * Get the earliestRestorePoint value. + * Get earliest restore point in time for point in time restore. * * @return the earliestRestorePoint value */ @@ -155,7 +155,7 @@ public DateTime earliestRestorePoint() { } /** - * Get the restorePointInTime value. + * Get conditional. If createMode is PointInTimeRestore, this value is required. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @return the restorePointInTime value */ @@ -164,7 +164,7 @@ public DateTime restorePointInTime() { } /** - * Set the restorePointInTime value. + * Set conditional. If createMode is PointInTimeRestore, this value is required. Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database. * * @param restorePointInTime the restorePointInTime value to set * @return the ManagedDatabaseInner object itself. @@ -175,7 +175,7 @@ public ManagedDatabaseInner withRestorePointInTime(DateTime restorePointInTime) } /** - * Get the defaultSecondaryLocation value. + * Get geo paired region. * * @return the defaultSecondaryLocation value */ @@ -184,7 +184,7 @@ public String defaultSecondaryLocation() { } /** - * Get the catalogCollation value. + * Get collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @return the catalogCollation value */ @@ -193,7 +193,7 @@ public CatalogCollationType catalogCollation() { } /** - * Set the catalogCollation value. + * Set collation of the metadata catalog. Possible values include: 'DATABASE_DEFAULT', 'SQL_Latin1_General_CP1_CI_AS'. * * @param catalogCollation the catalogCollation value to set * @return the ManagedDatabaseInner object itself. @@ -204,7 +204,7 @@ public ManagedDatabaseInner withCatalogCollation(CatalogCollationType catalogCol } /** - * Get the createMode value. + * Get managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Possible values include: 'Default', 'RestoreExternalBackup', 'PointInTimeRestore'. * * @return the createMode value */ @@ -213,7 +213,7 @@ public ManagedDatabaseCreateMode createMode() { } /** - * Set the createMode value. + * Set managed database create mode. PointInTimeRestore: Create a database by restoring a point in time backup of an existing database. SourceDatabaseName, SourceManagedInstanceName and PointInTime must be specified. RestoreExternalBackup: Create a database by restoring from external backup files. Collation, StorageContainerUri and StorageContainerSasToken must be specified. Possible values include: 'Default', 'RestoreExternalBackup', 'PointInTimeRestore'. * * @param createMode the createMode value to set * @return the ManagedDatabaseInner object itself. @@ -224,7 +224,7 @@ public ManagedDatabaseInner withCreateMode(ManagedDatabaseCreateMode createMode) } /** - * Get the storageContainerUri value. + * Get conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the uri of the storage container where backups for this restore are stored. * * @return the storageContainerUri value */ @@ -233,7 +233,7 @@ public String storageContainerUri() { } /** - * Set the storageContainerUri value. + * Set conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the uri of the storage container where backups for this restore are stored. * * @param storageContainerUri the storageContainerUri value to set * @return the ManagedDatabaseInner object itself. @@ -244,7 +244,7 @@ public ManagedDatabaseInner withStorageContainerUri(String storageContainerUri) } /** - * Get the sourceDatabaseId value. + * Get the resource identifier of the source database associated with create operation of this database. * * @return the sourceDatabaseId value */ @@ -253,7 +253,7 @@ public String sourceDatabaseId() { } /** - * Set the sourceDatabaseId value. + * Set the resource identifier of the source database associated with create operation of this database. * * @param sourceDatabaseId the sourceDatabaseId value to set * @return the ManagedDatabaseInner object itself. @@ -264,7 +264,7 @@ public ManagedDatabaseInner withSourceDatabaseId(String sourceDatabaseId) { } /** - * Get the storageContainerSasToken value. + * Get conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the storage container sas token. * * @return the storageContainerSasToken value */ @@ -273,7 +273,7 @@ public String storageContainerSasToken() { } /** - * Set the storageContainerSasToken value. + * Set conditional. If createMode is RestoreExternalBackup, this value is required. Specifies the storage container sas token. * * @param storageContainerSasToken the storageContainerSasToken value to set * @return the ManagedDatabaseInner object itself. @@ -284,7 +284,7 @@ public ManagedDatabaseInner withStorageContainerSasToken(String storageContainer } /** - * Get the failoverGroupId value. + * Get instance Failover Group resource identifier that this managed database belongs to. * * @return the failoverGroupId value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedInstanceInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedInstanceInner.java index 4d6cf1fc5df..6affc680666 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedInstanceInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ManagedInstanceInner.java @@ -82,7 +82,7 @@ public class ManagedInstanceInner extends TrackedResourceInner { private Integer storageSizeInGB; /** - * Get the identity value. + * Get the Azure Active Directory identity of the managed instance. * * @return the identity value */ @@ -91,7 +91,7 @@ public ResourceIdentity identity() { } /** - * Set the identity value. + * Set the Azure Active Directory identity of the managed instance. * * @param identity the identity value to set * @return the ManagedInstanceInner object itself. @@ -102,7 +102,7 @@ public ManagedInstanceInner withIdentity(ResourceIdentity identity) { } /** - * Get the sku value. + * Get managed instance sku. * * @return the sku value */ @@ -111,7 +111,7 @@ public Sku sku() { } /** - * Set the sku value. + * Set managed instance sku. * * @param sku the sku value to set * @return the ManagedInstanceInner object itself. @@ -122,7 +122,7 @@ public ManagedInstanceInner withSku(Sku sku) { } /** - * Get the fullyQualifiedDomainName value. + * Get the fully qualified domain name of the managed instance. * * @return the fullyQualifiedDomainName value */ @@ -131,7 +131,7 @@ public String fullyQualifiedDomainName() { } /** - * Get the administratorLogin value. + * Get administrator username for the managed instance. Can only be specified when the managed instance is being created (and is required for creation). * * @return the administratorLogin value */ @@ -140,7 +140,7 @@ public String administratorLogin() { } /** - * Set the administratorLogin value. + * Set administrator username for the managed instance. Can only be specified when the managed instance is being created (and is required for creation). * * @param administratorLogin the administratorLogin value to set * @return the ManagedInstanceInner object itself. @@ -151,7 +151,7 @@ public ManagedInstanceInner withAdministratorLogin(String administratorLogin) { } /** - * Get the administratorLoginPassword value. + * Get the administrator login password (required for managed instance creation). * * @return the administratorLoginPassword value */ @@ -160,7 +160,7 @@ public String administratorLoginPassword() { } /** - * Set the administratorLoginPassword value. + * Set the administrator login password (required for managed instance creation). * * @param administratorLoginPassword the administratorLoginPassword value to set * @return the ManagedInstanceInner object itself. @@ -171,7 +171,7 @@ public ManagedInstanceInner withAdministratorLoginPassword(String administratorL } /** - * Get the subnetId value. + * Get subnet resource ID for the managed instance. * * @return the subnetId value */ @@ -180,7 +180,7 @@ public String subnetId() { } /** - * Set the subnetId value. + * Set subnet resource ID for the managed instance. * * @param subnetId the subnetId value to set * @return the ManagedInstanceInner object itself. @@ -191,7 +191,7 @@ public ManagedInstanceInner withSubnetId(String subnetId) { } /** - * Get the state value. + * Get the state of the managed instance. * * @return the state value */ @@ -200,7 +200,7 @@ public String state() { } /** - * Get the licenseType value. + * Get the license type. Possible values are 'LicenseIncluded' and 'BasePrice'. * * @return the licenseType value */ @@ -209,7 +209,7 @@ public String licenseType() { } /** - * Set the licenseType value. + * Set the license type. Possible values are 'LicenseIncluded' and 'BasePrice'. * * @param licenseType the licenseType value to set * @return the ManagedInstanceInner object itself. @@ -220,7 +220,7 @@ public ManagedInstanceInner withLicenseType(String licenseType) { } /** - * Get the vCores value. + * Get the number of VCores. * * @return the vCores value */ @@ -229,7 +229,7 @@ public Integer vCores() { } /** - * Set the vCores value. + * Set the number of VCores. * * @param vCores the vCores value to set * @return the ManagedInstanceInner object itself. @@ -240,7 +240,7 @@ public ManagedInstanceInner withVCores(Integer vCores) { } /** - * Get the storageSizeInGB value. + * Get the maximum storage size in GB. * * @return the storageSizeInGB value */ @@ -249,7 +249,7 @@ public Integer storageSizeInGB() { } /** - * Set the storageSizeInGB value. + * Set the maximum storage size in GB. * * @param storageSizeInGB the storageSizeInGB value to set * @return the ManagedInstanceInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricDefinitionInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricDefinitionInner.java index 22860673976..a4e43178da4 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricDefinitionInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricDefinitionInner.java @@ -53,7 +53,7 @@ public class MetricDefinitionInner { private List metricAvailabilities; /** - * Get the name value. + * Get the name information for the metric. * * @return the name value */ @@ -62,7 +62,7 @@ public MetricName name() { } /** - * Get the primaryAggregationType value. + * Get the primary aggregation type defining how metric values are displayed. Possible values include: 'None', 'Average', 'Count', 'Minimum', 'Maximum', 'Total'. * * @return the primaryAggregationType value */ @@ -71,7 +71,7 @@ public PrimaryAggregationType primaryAggregationType() { } /** - * Get the resourceUri value. + * Get the resource uri of the database. * * @return the resourceUri value */ @@ -80,7 +80,7 @@ public String resourceUri() { } /** - * Get the unit value. + * Get the unit of the metric. Possible values include: 'Count', 'Bytes', 'Seconds', 'Percent', 'CountPerSecond', 'BytesPerSecond'. * * @return the unit value */ @@ -89,7 +89,7 @@ public UnitDefinitionType unit() { } /** - * Get the metricAvailabilities value. + * Get the list of database metric availabities for the metric. * * @return the metricAvailabilities value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricInner.java index de45b1810a7..434b8c21b02 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/MetricInner.java @@ -57,7 +57,7 @@ public class MetricInner { private List metricValues; /** - * Get the startTime value. + * Get the start time for the metric (ISO-8601 format). * * @return the startTime value */ @@ -66,7 +66,7 @@ public DateTime startTime() { } /** - * Get the endTime value. + * Get the end time for the metric (ISO-8601 format). * * @return the endTime value */ @@ -75,7 +75,7 @@ public DateTime endTime() { } /** - * Get the timeGrain value. + * Get the time step to be used to summarize the metric values. * * @return the timeGrain value */ @@ -84,7 +84,7 @@ public String timeGrain() { } /** - * Get the unit value. + * Get the unit of the metric. Possible values include: 'count', 'bytes', 'seconds', 'percent', 'countPerSecond', 'bytesPerSecond'. * * @return the unit value */ @@ -93,7 +93,7 @@ public UnitType unit() { } /** - * Get the name value. + * Get the name information for the metric. * * @return the name value */ @@ -102,7 +102,7 @@ public MetricName name() { } /** - * Get the metricValues value. + * Get the metric values for the specified time window and timestep. * * @return the metricValues value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/OperationInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/OperationInner.java index 53b4d238d44..7897145956e 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/OperationInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/OperationInner.java @@ -44,7 +44,7 @@ public class OperationInner { private Map properties; /** - * Get the name value. + * Get the name of the operation being performed on this particular object. * * @return the name value */ @@ -53,7 +53,7 @@ public String name() { } /** - * Get the display value. + * Get the localized display information for this particular operation / action. * * @return the display value */ @@ -62,7 +62,7 @@ public OperationDisplay display() { } /** - * Get the origin value. + * Get the intended executor of the operation. Possible values include: 'user', 'system'. * * @return the origin value */ @@ -71,7 +71,7 @@ public OperationOrigin origin() { } /** - * Get the properties value. + * Get additional descriptions for the operation. * * @return the properties value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolInner.java index 52ac21387a3..4d6eba0dab8 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolInner.java @@ -88,7 +88,7 @@ public class RecommendedElasticPoolInner extends ProxyResourceInner { private List metrics; /** - * Get the databaseEdition value. + * Get the edition of the recommended elastic pool. The ElasticPoolEdition enumeration contains all the valid editions. Possible values include: 'Basic', 'Standard', 'Premium'. * * @return the databaseEdition value */ @@ -97,7 +97,7 @@ public ElasticPoolEdition databaseEdition() { } /** - * Get the dtu value. + * Get the DTU for the recommended elastic pool. * * @return the dtu value */ @@ -106,7 +106,7 @@ public Double dtu() { } /** - * Set the dtu value. + * Set the DTU for the recommended elastic pool. * * @param dtu the dtu value to set * @return the RecommendedElasticPoolInner object itself. @@ -117,7 +117,7 @@ public RecommendedElasticPoolInner withDtu(Double dtu) { } /** - * Get the databaseDtuMin value. + * Get the minimum DTU for the database. * * @return the databaseDtuMin value */ @@ -126,7 +126,7 @@ public Double databaseDtuMin() { } /** - * Set the databaseDtuMin value. + * Set the minimum DTU for the database. * * @param databaseDtuMin the databaseDtuMin value to set * @return the RecommendedElasticPoolInner object itself. @@ -137,7 +137,7 @@ public RecommendedElasticPoolInner withDatabaseDtuMin(Double databaseDtuMin) { } /** - * Get the databaseDtuMax value. + * Get the maximum DTU for the database. * * @return the databaseDtuMax value */ @@ -146,7 +146,7 @@ public Double databaseDtuMax() { } /** - * Set the databaseDtuMax value. + * Set the maximum DTU for the database. * * @param databaseDtuMax the databaseDtuMax value to set * @return the RecommendedElasticPoolInner object itself. @@ -157,7 +157,7 @@ public RecommendedElasticPoolInner withDatabaseDtuMax(Double databaseDtuMax) { } /** - * Get the storageMB value. + * Get gets storage size in megabytes. * * @return the storageMB value */ @@ -166,7 +166,7 @@ public Double storageMB() { } /** - * Set the storageMB value. + * Set gets storage size in megabytes. * * @param storageMB the storageMB value to set * @return the RecommendedElasticPoolInner object itself. @@ -177,7 +177,7 @@ public RecommendedElasticPoolInner withStorageMB(Double storageMB) { } /** - * Get the observationPeriodStart value. + * Get the observation period start (ISO8601 format). * * @return the observationPeriodStart value */ @@ -186,7 +186,7 @@ public DateTime observationPeriodStart() { } /** - * Get the observationPeriodEnd value. + * Get the observation period start (ISO8601 format). * * @return the observationPeriodEnd value */ @@ -195,7 +195,7 @@ public DateTime observationPeriodEnd() { } /** - * Get the maxObservedDtu value. + * Get gets maximum observed DTU. * * @return the maxObservedDtu value */ @@ -204,7 +204,7 @@ public Double maxObservedDtu() { } /** - * Get the maxObservedStorageMB value. + * Get gets maximum observed storage in megabytes. * * @return the maxObservedStorageMB value */ @@ -213,7 +213,7 @@ public Double maxObservedStorageMB() { } /** - * Get the databases value. + * Get the list of databases in this pool. Expanded property. * * @return the databases value */ @@ -222,7 +222,7 @@ public List databases() { } /** - * Get the metrics value. + * Get the list of databases housed in the server. Expanded property. * * @return the metrics value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolMetricInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolMetricInner.java index 5ae0b6ee171..a3623b56599 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolMetricInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecommendedElasticPoolMetricInner.java @@ -35,7 +35,7 @@ public class RecommendedElasticPoolMetricInner { private Double sizeGB; /** - * Get the dateTimeProperty value. + * Get the time of metric (ISO8601 format). * * @return the dateTimeProperty value */ @@ -44,7 +44,7 @@ public DateTime dateTimeProperty() { } /** - * Set the dateTimeProperty value. + * Set the time of metric (ISO8601 format). * * @param dateTimeProperty the dateTimeProperty value to set * @return the RecommendedElasticPoolMetricInner object itself. @@ -55,7 +55,7 @@ public RecommendedElasticPoolMetricInner withDateTimeProperty(DateTime dateTimeP } /** - * Get the dtu value. + * Get gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/. * * @return the dtu value */ @@ -64,7 +64,7 @@ public Double dtu() { } /** - * Set the dtu value. + * Set gets or sets the DTUs (Database Transaction Units). See https://azure.microsoft.com/documentation/articles/sql-database-what-is-a-dtu/. * * @param dtu the dtu value to set * @return the RecommendedElasticPoolMetricInner object itself. @@ -75,7 +75,7 @@ public RecommendedElasticPoolMetricInner withDtu(Double dtu) { } /** - * Get the sizeGB value. + * Get gets or sets size in gigabytes. * * @return the sizeGB value */ @@ -84,7 +84,7 @@ public Double sizeGB() { } /** - * Set the sizeGB value. + * Set gets or sets size in gigabytes. * * @param sizeGB the sizeGB value to set * @return the RecommendedElasticPoolMetricInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecoverableDatabaseInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecoverableDatabaseInner.java index 8c641a46e25..d9e2a68761a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecoverableDatabaseInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RecoverableDatabaseInner.java @@ -42,7 +42,7 @@ public class RecoverableDatabaseInner extends ProxyResourceInner { private DateTime lastAvailableBackupDate; /** - * Get the edition value. + * Get the edition of the database. * * @return the edition value */ @@ -51,7 +51,7 @@ public String edition() { } /** - * Get the serviceLevelObjective value. + * Get the service level objective name of the database. * * @return the serviceLevelObjective value */ @@ -60,7 +60,7 @@ public String serviceLevelObjective() { } /** - * Get the elasticPoolName value. + * Get the elastic pool name of the database. * * @return the elasticPoolName value */ @@ -69,7 +69,7 @@ public String elasticPoolName() { } /** - * Get the lastAvailableBackupDate value. + * Get the last available backup date of the database (ISO8601 format). * * @return the lastAvailableBackupDate value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ReplicationLinkInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ReplicationLinkInner.java index 2ef1167ba95..3ec51f258d7 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ReplicationLinkInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ReplicationLinkInner.java @@ -92,7 +92,7 @@ public class ReplicationLinkInner extends ProxyResourceInner { private ReplicationState replicationState; /** - * Get the location value. + * Get location of the server that contains this firewall rule. * * @return the location value */ @@ -101,7 +101,7 @@ public String location() { } /** - * Get the isTerminationAllowed value. + * Get legacy value indicating whether termination is allowed. Currently always returns true. * * @return the isTerminationAllowed value */ @@ -110,7 +110,7 @@ public Boolean isTerminationAllowed() { } /** - * Get the replicationMode value. + * Get replication mode of this replication link. * * @return the replicationMode value */ @@ -119,7 +119,7 @@ public String replicationMode() { } /** - * Get the partnerServer value. + * Get the name of the server hosting the partner database. * * @return the partnerServer value */ @@ -128,7 +128,7 @@ public String partnerServer() { } /** - * Get the partnerDatabase value. + * Get the name of the partner database. * * @return the partnerDatabase value */ @@ -137,7 +137,7 @@ public String partnerDatabase() { } /** - * Get the partnerLocation value. + * Get the Azure Region of the partner database. * * @return the partnerLocation value */ @@ -146,7 +146,7 @@ public String partnerLocation() { } /** - * Get the role value. + * Get the role of the database in the replication link. Possible values include: 'Primary', 'Secondary', 'NonReadableSecondary', 'Source', 'Copy'. * * @return the role value */ @@ -155,7 +155,7 @@ public ReplicationRole role() { } /** - * Get the partnerRole value. + * Get the role of the partner database in the replication link. Possible values include: 'Primary', 'Secondary', 'NonReadableSecondary', 'Source', 'Copy'. * * @return the partnerRole value */ @@ -164,7 +164,7 @@ public ReplicationRole partnerRole() { } /** - * Get the startTime value. + * Get the start time for the replication link. * * @return the startTime value */ @@ -173,7 +173,7 @@ public DateTime startTime() { } /** - * Get the percentComplete value. + * Get the percentage of seeding complete for the replication link. * * @return the percentComplete value */ @@ -182,7 +182,7 @@ public Integer percentComplete() { } /** - * Get the replicationState value. + * Get the replication state for the replication link. Possible values include: 'PENDING', 'SEEDING', 'CATCH_UP', 'SUSPENDED'. * * @return the replicationState value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorableDroppedDatabaseInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorableDroppedDatabaseInner.java index 8801ea1ab62..1cc3ba3015d 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorableDroppedDatabaseInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorableDroppedDatabaseInner.java @@ -72,7 +72,7 @@ public class RestorableDroppedDatabaseInner extends ProxyResourceInner { private DateTime earliestRestoreDate; /** - * Get the location value. + * Get the geo-location where the resource lives. * * @return the location value */ @@ -81,7 +81,7 @@ public String location() { } /** - * Get the databaseName value. + * Get the name of the database. * * @return the databaseName value */ @@ -90,7 +90,7 @@ public String databaseName() { } /** - * Get the edition value. + * Get the edition of the database. * * @return the edition value */ @@ -99,7 +99,7 @@ public String edition() { } /** - * Get the maxSizeBytes value. + * Get the max size in bytes of the database. * * @return the maxSizeBytes value */ @@ -108,7 +108,7 @@ public String maxSizeBytes() { } /** - * Get the serviceLevelObjective value. + * Get the service level objective name of the database. * * @return the serviceLevelObjective value */ @@ -117,7 +117,7 @@ public String serviceLevelObjective() { } /** - * Get the elasticPoolName value. + * Get the elastic pool name of the database. * * @return the elasticPoolName value */ @@ -126,7 +126,7 @@ public String elasticPoolName() { } /** - * Get the creationDate value. + * Get the creation date of the database (ISO8601 format). * * @return the creationDate value */ @@ -135,7 +135,7 @@ public DateTime creationDate() { } /** - * Get the deletionDate value. + * Get the deletion date of the database (ISO8601 format). * * @return the deletionDate value */ @@ -144,7 +144,7 @@ public DateTime deletionDate() { } /** - * Get the earliestRestoreDate value. + * Get the earliest restore date of the database (ISO8601 format). * * @return the earliestRestoreDate value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorePointInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorePointInner.java index e365d1a02d9..4d2876c0a43 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorePointInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/RestorePointInner.java @@ -50,7 +50,7 @@ public class RestorePointInner extends ProxyResourceInner { private String restorePointLabel; /** - * Get the location value. + * Get resource location. * * @return the location value */ @@ -59,7 +59,7 @@ public String location() { } /** - * Get the restorePointType value. + * Get the type of restore point. Possible values include: 'CONTINUOUS', 'DISCRETE'. * * @return the restorePointType value */ @@ -68,7 +68,7 @@ public RestorePointType restorePointType() { } /** - * Get the earliestRestoreDate value. + * Get the earliest time to which this database can be restored. * * @return the earliestRestoreDate value */ @@ -77,7 +77,7 @@ public DateTime earliestRestoreDate() { } /** - * Get the restorePointCreationDate value. + * Get the time the backup was taken. * * @return the restorePointCreationDate value */ @@ -86,7 +86,7 @@ public DateTime restorePointCreationDate() { } /** - * Get the restorePointLabel value. + * Get the label of restore point for backup request by user. * * @return the restorePointLabel value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAutomaticTuningInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAutomaticTuningInner.java index 5d8c3ec5baf..5550578023d 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAutomaticTuningInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAutomaticTuningInner.java @@ -40,7 +40,7 @@ public class ServerAutomaticTuningInner extends ProxyResourceInner { private Map options; /** - * Get the desiredState value. + * Get automatic tuning desired state. Possible values include: 'Custom', 'Auto', 'Unspecified'. * * @return the desiredState value */ @@ -49,7 +49,7 @@ public AutomaticTuningServerMode desiredState() { } /** - * Set the desiredState value. + * Set automatic tuning desired state. Possible values include: 'Custom', 'Auto', 'Unspecified'. * * @param desiredState the desiredState value to set * @return the ServerAutomaticTuningInner object itself. @@ -60,7 +60,7 @@ public ServerAutomaticTuningInner withDesiredState(AutomaticTuningServerMode des } /** - * Get the actualState value. + * Get automatic tuning actual state. Possible values include: 'Custom', 'Auto', 'Unspecified'. * * @return the actualState value */ @@ -69,7 +69,7 @@ public AutomaticTuningServerMode actualState() { } /** - * Get the options value. + * Get automatic tuning options definition. * * @return the options value */ @@ -78,7 +78,7 @@ public Map options() { } /** - * Set the options value. + * Set automatic tuning options definition. * * @param options the options value to set * @return the ServerAutomaticTuningInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAzureADAdministratorInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAzureADAdministratorInner.java index 37df5e4584b..9c49c3c4dd2 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAzureADAdministratorInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerAzureADAdministratorInner.java @@ -43,13 +43,16 @@ public class ServerAzureADAdministratorInner extends ProxyResourceInner { /** * Creates an instance of ServerAzureADAdministratorInner class. + * @param login the server administrator login value. + * @param sid the server administrator Sid (Secure ID). + * @param tenantId the server Active Directory Administrator tenant id. */ public ServerAzureADAdministratorInner() { administratorType = "ActiveDirectory"; } /** - * Get the administratorType value. + * Get the type of administrator. * * @return the administratorType value */ @@ -58,7 +61,7 @@ public String administratorType() { } /** - * Set the administratorType value. + * Set the type of administrator. * * @param administratorType the administratorType value to set * @return the ServerAzureADAdministratorInner object itself. @@ -69,7 +72,7 @@ public ServerAzureADAdministratorInner withAdministratorType(String administrato } /** - * Get the login value. + * Get the server administrator login value. * * @return the login value */ @@ -78,7 +81,7 @@ public String login() { } /** - * Set the login value. + * Set the server administrator login value. * * @param login the login value to set * @return the ServerAzureADAdministratorInner object itself. @@ -89,7 +92,7 @@ public ServerAzureADAdministratorInner withLogin(String login) { } /** - * Get the sid value. + * Get the server administrator Sid (Secure ID). * * @return the sid value */ @@ -98,7 +101,7 @@ public UUID sid() { } /** - * Set the sid value. + * Set the server administrator Sid (Secure ID). * * @param sid the sid value to set * @return the ServerAzureADAdministratorInner object itself. @@ -109,7 +112,7 @@ public ServerAzureADAdministratorInner withSid(UUID sid) { } /** - * Get the tenantId value. + * Get the server Active Directory Administrator tenant id. * * @return the tenantId value */ @@ -118,7 +121,7 @@ public UUID tenantId() { } /** - * Set the tenantId value. + * Set the server Active Directory Administrator tenant id. * * @param tenantId the tenantId value to set * @return the ServerAzureADAdministratorInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerCommunicationLinkInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerCommunicationLinkInner.java index 2c69b4590b7..a4676fb7ecb 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerCommunicationLinkInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerCommunicationLinkInner.java @@ -42,7 +42,7 @@ public class ServerCommunicationLinkInner extends ProxyResourceInner { private String kind; /** - * Get the state value. + * Get the state. * * @return the state value */ @@ -51,7 +51,7 @@ public String state() { } /** - * Get the partnerServer value. + * Get the name of the partner server. * * @return the partnerServer value */ @@ -60,7 +60,7 @@ public String partnerServer() { } /** - * Set the partnerServer value. + * Set the name of the partner server. * * @param partnerServer the partnerServer value to set * @return the ServerCommunicationLinkInner object itself. @@ -71,7 +71,7 @@ public ServerCommunicationLinkInner withPartnerServer(String partnerServer) { } /** - * Get the location value. + * Get communication link location. * * @return the location value */ @@ -80,7 +80,7 @@ public String location() { } /** - * Get the kind value. + * Get communication link kind. This property is used for Azure Portal metadata. * * @return the kind value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerConnectionPolicyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerConnectionPolicyInner.java index a263fb52cd4..121f0953655 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerConnectionPolicyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerConnectionPolicyInner.java @@ -37,7 +37,7 @@ public class ServerConnectionPolicyInner extends ProxyResourceInner { private ServerConnectionType connectionType; /** - * Get the kind value. + * Get metadata used for the Azure portal experience. * * @return the kind value */ @@ -46,7 +46,7 @@ public String kind() { } /** - * Get the location value. + * Get resource location. * * @return the location value */ @@ -55,7 +55,7 @@ public String location() { } /** - * Get the connectionType value. + * Get the server connection type. Possible values include: 'Default', 'Proxy', 'Redirect'. * * @return the connectionType value */ @@ -64,7 +64,7 @@ public ServerConnectionType connectionType() { } /** - * Set the connectionType value. + * Set the server connection type. Possible values include: 'Default', 'Proxy', 'Redirect'. * * @param connectionType the connectionType value to set * @return the ServerConnectionPolicyInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerDnsAliasInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerDnsAliasInner.java index 152b64edf9d..39b0bdcfe60 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerDnsAliasInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerDnsAliasInner.java @@ -23,7 +23,7 @@ public class ServerDnsAliasInner extends ProxyResourceInner { private String azureDnsRecord; /** - * Get the azureDnsRecord value. + * Get the fully qualified DNS record for alias. * * @return the azureDnsRecord value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerInner.java index 9dff04917cf..d01b45e53a8 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerInner.java @@ -62,7 +62,7 @@ public class ServerInner extends TrackedResourceInner { private String fullyQualifiedDomainName; /** - * Get the identity value. + * Get the Azure Active Directory identity of the server. * * @return the identity value */ @@ -71,7 +71,7 @@ public ResourceIdentity identity() { } /** - * Set the identity value. + * Set the Azure Active Directory identity of the server. * * @param identity the identity value to set * @return the ServerInner object itself. @@ -82,7 +82,7 @@ public ServerInner withIdentity(ResourceIdentity identity) { } /** - * Get the kind value. + * Get kind of sql server. This is metadata used for the Azure portal experience. * * @return the kind value */ @@ -91,7 +91,7 @@ public String kind() { } /** - * Get the administratorLogin value. + * Get administrator username for the server. Once created it cannot be changed. * * @return the administratorLogin value */ @@ -100,7 +100,7 @@ public String administratorLogin() { } /** - * Set the administratorLogin value. + * Set administrator username for the server. Once created it cannot be changed. * * @param administratorLogin the administratorLogin value to set * @return the ServerInner object itself. @@ -111,7 +111,7 @@ public ServerInner withAdministratorLogin(String administratorLogin) { } /** - * Get the administratorLoginPassword value. + * Get the administrator login password (required for server creation). * * @return the administratorLoginPassword value */ @@ -120,7 +120,7 @@ public String administratorLoginPassword() { } /** - * Set the administratorLoginPassword value. + * Set the administrator login password (required for server creation). * * @param administratorLoginPassword the administratorLoginPassword value to set * @return the ServerInner object itself. @@ -131,7 +131,7 @@ public ServerInner withAdministratorLoginPassword(String administratorLoginPassw } /** - * Get the version value. + * Get the version of the server. * * @return the version value */ @@ -140,7 +140,7 @@ public String version() { } /** - * Set the version value. + * Set the version of the server. * * @param version the version value to set * @return the ServerInner object itself. @@ -151,7 +151,7 @@ public ServerInner withVersion(String version) { } /** - * Get the state value. + * Get the state of the server. * * @return the state value */ @@ -160,7 +160,7 @@ public String state() { } /** - * Get the fullyQualifiedDomainName value. + * Get the fully qualified domain name of the server. * * @return the fullyQualifiedDomainName value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerKeyInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerKeyInner.java index bf7b5d5de85..80d9f69fd58 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerKeyInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerKeyInner.java @@ -63,7 +63,7 @@ public class ServerKeyInner extends ProxyResourceInner { private DateTime creationDate; /** - * Get the kind value. + * Get kind of encryption protector. This is metadata used for the Azure portal experience. * * @return the kind value */ @@ -72,7 +72,7 @@ public String kind() { } /** - * Set the kind value. + * Set kind of encryption protector. This is metadata used for the Azure portal experience. * * @param kind the kind value to set * @return the ServerKeyInner object itself. @@ -83,7 +83,7 @@ public ServerKeyInner withKind(String kind) { } /** - * Get the location value. + * Get resource location. * * @return the location value */ @@ -92,7 +92,7 @@ public String location() { } /** - * Get the subregion value. + * Get subregion of the server key. * * @return the subregion value */ @@ -101,7 +101,7 @@ public String subregion() { } /** - * Get the serverKeyType value. + * Get the server key type like 'ServiceManaged', 'AzureKeyVault'. Possible values include: 'ServiceManaged', 'AzureKeyVault'. * * @return the serverKeyType value */ @@ -110,7 +110,7 @@ public ServerKeyType serverKeyType() { } /** - * Set the serverKeyType value. + * Set the server key type like 'ServiceManaged', 'AzureKeyVault'. Possible values include: 'ServiceManaged', 'AzureKeyVault'. * * @param serverKeyType the serverKeyType value to set * @return the ServerKeyInner object itself. @@ -121,7 +121,7 @@ public ServerKeyInner withServerKeyType(ServerKeyType serverKeyType) { } /** - * Get the uri value. + * Get the URI of the server key. * * @return the uri value */ @@ -130,7 +130,7 @@ public String uri() { } /** - * Set the uri value. + * Set the URI of the server key. * * @param uri the uri value to set * @return the ServerKeyInner object itself. @@ -141,7 +141,7 @@ public ServerKeyInner withUri(String uri) { } /** - * Get the thumbprint value. + * Get thumbprint of the server key. * * @return the thumbprint value */ @@ -150,7 +150,7 @@ public String thumbprint() { } /** - * Set the thumbprint value. + * Set thumbprint of the server key. * * @param thumbprint the thumbprint value to set * @return the ServerKeyInner object itself. @@ -161,7 +161,7 @@ public ServerKeyInner withThumbprint(String thumbprint) { } /** - * Get the creationDate value. + * Get the server key creation date. * * @return the creationDate value */ @@ -170,7 +170,7 @@ public DateTime creationDate() { } /** - * Set the creationDate value. + * Set the server key creation date. * * @param creationDate the creationDate value to set * @return the ServerKeyInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerUsageInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerUsageInner.java index 1a68492a99b..611844f97fc 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerUsageInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServerUsageInner.java @@ -58,7 +58,7 @@ public class ServerUsageInner { private DateTime nextResetTime; /** - * Get the name value. + * Get name of the server usage metric. * * @return the name value */ @@ -67,7 +67,7 @@ public String name() { } /** - * Get the resourceName value. + * Get the name of the resource. * * @return the resourceName value */ @@ -76,7 +76,7 @@ public String resourceName() { } /** - * Get the displayName value. + * Get the metric display name. * * @return the displayName value */ @@ -85,7 +85,7 @@ public String displayName() { } /** - * Get the currentValue value. + * Get the current value of the metric. * * @return the currentValue value */ @@ -94,7 +94,7 @@ public Double currentValue() { } /** - * Get the limit value. + * Get the current limit of the metric. * * @return the limit value */ @@ -103,7 +103,7 @@ public Double limit() { } /** - * Get the unit value. + * Get the units of the metric. * * @return the unit value */ @@ -112,7 +112,7 @@ public String unit() { } /** - * Get the nextResetTime value. + * Get the next reset time for the metric (ISO8601 format). * * @return the nextResetTime value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceObjectiveInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceObjectiveInner.java index f2ce8749f4f..98a39d08589 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceObjectiveInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceObjectiveInner.java @@ -48,7 +48,7 @@ public class ServiceObjectiveInner extends ProxyResourceInner { private boolean enabled; /** - * Get the serviceObjectiveName value. + * Get the name for the service objective. * * @return the serviceObjectiveName value */ @@ -57,7 +57,7 @@ public String serviceObjectiveName() { } /** - * Get the isDefault value. + * Get gets whether the service level objective is the default service objective. * * @return the isDefault value */ @@ -66,7 +66,7 @@ public boolean isDefault() { } /** - * Get the isSystem value. + * Get gets whether the service level objective is a system service objective. * * @return the isSystem value */ @@ -75,7 +75,7 @@ public boolean isSystem() { } /** - * Get the description value. + * Get the description for the service level objective. * * @return the description value */ @@ -84,7 +84,7 @@ public String description() { } /** - * Get the enabled value. + * Get gets whether the service level objective is enabled. * * @return the enabled value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceTierAdvisorInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceTierAdvisorInner.java index 16f9fc3cd1f..66f5929a5b8 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceTierAdvisorInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/ServiceTierAdvisorInner.java @@ -144,7 +144,7 @@ public class ServiceTierAdvisorInner extends ProxyResourceInner { private double confidence; /** - * Get the observationPeriodStart value. + * Get the observation period start (ISO8601 format). * * @return the observationPeriodStart value */ @@ -153,7 +153,7 @@ public DateTime observationPeriodStart() { } /** - * Get the observationPeriodEnd value. + * Get the observation period start (ISO8601 format). * * @return the observationPeriodEnd value */ @@ -162,7 +162,7 @@ public DateTime observationPeriodEnd() { } /** - * Get the activeTimeRatio value. + * Get the activeTimeRatio for service tier advisor. * * @return the activeTimeRatio value */ @@ -171,7 +171,7 @@ public Double activeTimeRatio() { } /** - * Get the minDtu value. + * Get gets or sets minDtu for service tier advisor. * * @return the minDtu value */ @@ -180,7 +180,7 @@ public Double minDtu() { } /** - * Get the avgDtu value. + * Get gets or sets avgDtu for service tier advisor. * * @return the avgDtu value */ @@ -189,7 +189,7 @@ public Double avgDtu() { } /** - * Get the maxDtu value. + * Get gets or sets maxDtu for service tier advisor. * * @return the maxDtu value */ @@ -198,7 +198,7 @@ public Double maxDtu() { } /** - * Get the maxSizeInGB value. + * Get gets or sets maxSizeInGB for service tier advisor. * * @return the maxSizeInGB value */ @@ -207,7 +207,7 @@ public Double maxSizeInGB() { } /** - * Get the serviceLevelObjectiveUsageMetrics value. + * Get gets or sets serviceLevelObjectiveUsageMetrics for the service tier advisor. * * @return the serviceLevelObjectiveUsageMetrics value */ @@ -216,7 +216,7 @@ public List serviceLevelObjectiveUsageMetrics() { } /** - * Get the currentServiceLevelObjective value. + * Get gets or sets currentServiceLevelObjective for service tier advisor. * * @return the currentServiceLevelObjective value */ @@ -225,7 +225,7 @@ public String currentServiceLevelObjective() { } /** - * Get the currentServiceLevelObjectiveId value. + * Get gets or sets currentServiceLevelObjectiveId for service tier advisor. * * @return the currentServiceLevelObjectiveId value */ @@ -234,7 +234,7 @@ public UUID currentServiceLevelObjectiveId() { } /** - * Get the usageBasedRecommendationServiceLevelObjective value. + * Get gets or sets usageBasedRecommendationServiceLevelObjective for service tier advisor. * * @return the usageBasedRecommendationServiceLevelObjective value */ @@ -243,7 +243,7 @@ public String usageBasedRecommendationServiceLevelObjective() { } /** - * Get the usageBasedRecommendationServiceLevelObjectiveId value. + * Get gets or sets usageBasedRecommendationServiceLevelObjectiveId for service tier advisor. * * @return the usageBasedRecommendationServiceLevelObjectiveId value */ @@ -252,7 +252,7 @@ public UUID usageBasedRecommendationServiceLevelObjectiveId() { } /** - * Get the databaseSizeBasedRecommendationServiceLevelObjective value. + * Get gets or sets databaseSizeBasedRecommendationServiceLevelObjective for service tier advisor. * * @return the databaseSizeBasedRecommendationServiceLevelObjective value */ @@ -261,7 +261,7 @@ public String databaseSizeBasedRecommendationServiceLevelObjective() { } /** - * Get the databaseSizeBasedRecommendationServiceLevelObjectiveId value. + * Get gets or sets databaseSizeBasedRecommendationServiceLevelObjectiveId for service tier advisor. * * @return the databaseSizeBasedRecommendationServiceLevelObjectiveId value */ @@ -270,7 +270,7 @@ public UUID databaseSizeBasedRecommendationServiceLevelObjectiveId() { } /** - * Get the disasterPlanBasedRecommendationServiceLevelObjective value. + * Get gets or sets disasterPlanBasedRecommendationServiceLevelObjective for service tier advisor. * * @return the disasterPlanBasedRecommendationServiceLevelObjective value */ @@ -279,7 +279,7 @@ public String disasterPlanBasedRecommendationServiceLevelObjective() { } /** - * Get the disasterPlanBasedRecommendationServiceLevelObjectiveId value. + * Get gets or sets disasterPlanBasedRecommendationServiceLevelObjectiveId for service tier advisor. * * @return the disasterPlanBasedRecommendationServiceLevelObjectiveId value */ @@ -288,7 +288,7 @@ public UUID disasterPlanBasedRecommendationServiceLevelObjectiveId() { } /** - * Get the overallRecommendationServiceLevelObjective value. + * Get gets or sets overallRecommendationServiceLevelObjective for service tier advisor. * * @return the overallRecommendationServiceLevelObjective value */ @@ -297,7 +297,7 @@ public String overallRecommendationServiceLevelObjective() { } /** - * Get the overallRecommendationServiceLevelObjectiveId value. + * Get gets or sets overallRecommendationServiceLevelObjectiveId for service tier advisor. * * @return the overallRecommendationServiceLevelObjectiveId value */ @@ -306,7 +306,7 @@ public UUID overallRecommendationServiceLevelObjectiveId() { } /** - * Get the confidence value. + * Get gets or sets confidence for service tier advisor. * * @return the confidence value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SqlManagementClientImpl.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SqlManagementClientImpl.java index 87399b1ff35..9871e7789e4 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SqlManagementClientImpl.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SqlManagementClientImpl.java @@ -601,6 +601,123 @@ public DatabaseVulnerabilityAssessmentsInner databaseVulnerabilityAssessments() return this.databaseVulnerabilityAssessments; } + /** + * The JobAgentsInner object to access its operations. + */ + private JobAgentsInner jobAgents; + + /** + * Gets the JobAgentsInner object to access its operations. + * @return the JobAgentsInner object. + */ + public JobAgentsInner jobAgents() { + return this.jobAgents; + } + + /** + * The JobCredentialsInner object to access its operations. + */ + private JobCredentialsInner jobCredentials; + + /** + * Gets the JobCredentialsInner object to access its operations. + * @return the JobCredentialsInner object. + */ + public JobCredentialsInner jobCredentials() { + return this.jobCredentials; + } + + /** + * The JobExecutionsInner object to access its operations. + */ + private JobExecutionsInner jobExecutions; + + /** + * Gets the JobExecutionsInner object to access its operations. + * @return the JobExecutionsInner object. + */ + public JobExecutionsInner jobExecutions() { + return this.jobExecutions; + } + + /** + * The JobsInner object to access its operations. + */ + private JobsInner jobs; + + /** + * Gets the JobsInner object to access its operations. + * @return the JobsInner object. + */ + public JobsInner jobs() { + return this.jobs; + } + + /** + * The JobStepExecutionsInner object to access its operations. + */ + private JobStepExecutionsInner jobStepExecutions; + + /** + * Gets the JobStepExecutionsInner object to access its operations. + * @return the JobStepExecutionsInner object. + */ + public JobStepExecutionsInner jobStepExecutions() { + return this.jobStepExecutions; + } + + /** + * The JobStepsInner object to access its operations. + */ + private JobStepsInner jobSteps; + + /** + * Gets the JobStepsInner object to access its operations. + * @return the JobStepsInner object. + */ + public JobStepsInner jobSteps() { + return this.jobSteps; + } + + /** + * The JobTargetExecutionsInner object to access its operations. + */ + private JobTargetExecutionsInner jobTargetExecutions; + + /** + * Gets the JobTargetExecutionsInner object to access its operations. + * @return the JobTargetExecutionsInner object. + */ + public JobTargetExecutionsInner jobTargetExecutions() { + return this.jobTargetExecutions; + } + + /** + * The JobTargetGroupsInner object to access its operations. + */ + private JobTargetGroupsInner jobTargetGroups; + + /** + * Gets the JobTargetGroupsInner object to access its operations. + * @return the JobTargetGroupsInner object. + */ + public JobTargetGroupsInner jobTargetGroups() { + return this.jobTargetGroups; + } + + /** + * The JobVersionsInner object to access its operations. + */ + private JobVersionsInner jobVersions; + + /** + * Gets the JobVersionsInner object to access its operations. + * @return the JobVersionsInner object. + */ + public JobVersionsInner jobVersions() { + return this.jobVersions; + } + /** * The LongTermRetentionBackupsInner object to access its operations. */ @@ -828,6 +945,15 @@ protected void initialize() { this.virtualNetworkRules = new VirtualNetworkRulesInner(restClient().retrofit(), this); this.databaseVulnerabilityAssessmentRuleBaselines = new DatabaseVulnerabilityAssessmentRuleBaselinesInner(restClient().retrofit(), this); this.databaseVulnerabilityAssessments = new DatabaseVulnerabilityAssessmentsInner(restClient().retrofit(), this); + this.jobAgents = new JobAgentsInner(restClient().retrofit(), this); + this.jobCredentials = new JobCredentialsInner(restClient().retrofit(), this); + this.jobExecutions = new JobExecutionsInner(restClient().retrofit(), this); + this.jobs = new JobsInner(restClient().retrofit(), this); + this.jobStepExecutions = new JobStepExecutionsInner(restClient().retrofit(), this); + this.jobSteps = new JobStepsInner(restClient().retrofit(), this); + this.jobTargetExecutions = new JobTargetExecutionsInner(restClient().retrofit(), this); + this.jobTargetGroups = new JobTargetGroupsInner(restClient().retrofit(), this); + this.jobVersions = new JobVersionsInner(restClient().retrofit(), this); this.longTermRetentionBackups = new LongTermRetentionBackupsInner(restClient().retrofit(), this); this.backupLongTermRetentionPolicies = new BackupLongTermRetentionPoliciesInner(restClient().retrofit(), this); this.managedDatabases = new ManagedDatabasesInner(restClient().retrofit(), this); diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SubscriptionUsageInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SubscriptionUsageInner.java index b097a1a09f9..c86645fc8fc 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SubscriptionUsageInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SubscriptionUsageInner.java @@ -41,7 +41,7 @@ public class SubscriptionUsageInner extends ProxyResourceInner { private String unit; /** - * Get the displayName value. + * Get user-readable name of the metric. * * @return the displayName value */ @@ -50,7 +50,7 @@ public String displayName() { } /** - * Get the currentValue value. + * Get current value of the metric. * * @return the currentValue value */ @@ -59,7 +59,7 @@ public Double currentValue() { } /** - * Get the limit value. + * Get boundary value of the metric. * * @return the limit value */ @@ -68,7 +68,7 @@ public Double limit() { } /** - * Get the unit value. + * Get unit of the metric. * * @return the unit value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentInner.java index fea5ea18086..623f66c2e81 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentInner.java @@ -62,7 +62,7 @@ public class SyncAgentInner extends ProxyResourceInner { private String version; /** - * Get the syncAgentName value. + * Get name of the sync agent. * * @return the syncAgentName value */ @@ -71,7 +71,7 @@ public String syncAgentName() { } /** - * Get the syncDatabaseId value. + * Get aRM resource id of the sync database in the sync agent. * * @return the syncDatabaseId value */ @@ -80,7 +80,7 @@ public String syncDatabaseId() { } /** - * Set the syncDatabaseId value. + * Set aRM resource id of the sync database in the sync agent. * * @param syncDatabaseId the syncDatabaseId value to set * @return the SyncAgentInner object itself. @@ -91,7 +91,7 @@ public SyncAgentInner withSyncDatabaseId(String syncDatabaseId) { } /** - * Get the lastAliveTime value. + * Get last alive time of the sync agent. * * @return the lastAliveTime value */ @@ -100,7 +100,7 @@ public DateTime lastAliveTime() { } /** - * Get the state value. + * Get state of the sync agent. Possible values include: 'Online', 'Offline', 'NeverConnected'. * * @return the state value */ @@ -109,7 +109,7 @@ public SyncAgentState state() { } /** - * Get the isUpToDate value. + * Get if the sync agent version is up to date. * * @return the isUpToDate value */ @@ -118,7 +118,7 @@ public Boolean isUpToDate() { } /** - * Get the expiryTime value. + * Get expiration time of the sync agent version. * * @return the expiryTime value */ @@ -127,7 +127,7 @@ public DateTime expiryTime() { } /** - * Get the version value. + * Get version of the sync agent. * * @return the version value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentKeyPropertiesInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentKeyPropertiesInner.java index 9a29afa3d47..bca0dbd9eb9 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentKeyPropertiesInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentKeyPropertiesInner.java @@ -21,7 +21,7 @@ public class SyncAgentKeyPropertiesInner { private String syncAgentKey; /** - * Get the syncAgentKey value. + * Get key of sync agent. * * @return the syncAgentKey value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentLinkedDatabaseInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentLinkedDatabaseInner.java index 46400ee0814..5effb253557 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentLinkedDatabaseInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncAgentLinkedDatabaseInner.java @@ -55,7 +55,7 @@ public class SyncAgentLinkedDatabaseInner extends ProxyResourceInner { private String userName; /** - * Get the databaseType value. + * Get type of the sync agent linked database. Possible values include: 'AzureSqlDatabase', 'SqlServerDatabase'. * * @return the databaseType value */ @@ -64,7 +64,7 @@ public SyncMemberDbType databaseType() { } /** - * Get the databaseId value. + * Get id of the sync agent linked database. * * @return the databaseId value */ @@ -73,7 +73,7 @@ public String databaseId() { } /** - * Get the description value. + * Get description of the sync agent linked database. * * @return the description value */ @@ -82,7 +82,7 @@ public String description() { } /** - * Get the serverName value. + * Get server name of the sync agent linked database. * * @return the serverName value */ @@ -91,7 +91,7 @@ public String serverName() { } /** - * Get the databaseName value. + * Get database name of the sync agent linked database. * * @return the databaseName value */ @@ -100,7 +100,7 @@ public String databaseName() { } /** - * Get the userName value. + * Get user name of the sync agent linked database. * * @return the userName value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncDatabaseIdPropertiesInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncDatabaseIdPropertiesInner.java index 3feba3b3548..6efe34e8f57 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncDatabaseIdPropertiesInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncDatabaseIdPropertiesInner.java @@ -21,7 +21,7 @@ public class SyncDatabaseIdPropertiesInner { private String id; /** - * Get the id value. + * Get aRM resource id of sync database. * * @return the id value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncFullSchemaPropertiesInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncFullSchemaPropertiesInner.java index f4b4122fdb7..e21b783824a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncFullSchemaPropertiesInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncFullSchemaPropertiesInner.java @@ -30,7 +30,7 @@ public class SyncFullSchemaPropertiesInner { private DateTime lastUpdateTime; /** - * Get the tables value. + * Get list of tables in the database full schema. * * @return the tables value */ @@ -39,7 +39,7 @@ public List tables() { } /** - * Get the lastUpdateTime value. + * Get last update time of the database schema. * * @return the lastUpdateTime value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupInner.java index ab59383b3ad..c336fc8615a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupInner.java @@ -71,7 +71,7 @@ public class SyncGroupInner extends ProxyResourceInner { private SyncGroupSchema schema; /** - * Get the interval value. + * Get sync interval of the sync group. * * @return the interval value */ @@ -80,7 +80,7 @@ public Integer interval() { } /** - * Set the interval value. + * Set sync interval of the sync group. * * @param interval the interval value to set * @return the SyncGroupInner object itself. @@ -91,7 +91,7 @@ public SyncGroupInner withInterval(Integer interval) { } /** - * Get the lastSyncTime value. + * Get last sync time of the sync group. * * @return the lastSyncTime value */ @@ -100,7 +100,7 @@ public DateTime lastSyncTime() { } /** - * Get the conflictResolutionPolicy value. + * Get conflict resolution policy of the sync group. Possible values include: 'HubWin', 'MemberWin'. * * @return the conflictResolutionPolicy value */ @@ -109,7 +109,7 @@ public SyncConflictResolutionPolicy conflictResolutionPolicy() { } /** - * Set the conflictResolutionPolicy value. + * Set conflict resolution policy of the sync group. Possible values include: 'HubWin', 'MemberWin'. * * @param conflictResolutionPolicy the conflictResolutionPolicy value to set * @return the SyncGroupInner object itself. @@ -120,7 +120,7 @@ public SyncGroupInner withConflictResolutionPolicy(SyncConflictResolutionPolicy } /** - * Get the syncDatabaseId value. + * Get aRM resource id of the sync database in the sync group. * * @return the syncDatabaseId value */ @@ -129,7 +129,7 @@ public String syncDatabaseId() { } /** - * Set the syncDatabaseId value. + * Set aRM resource id of the sync database in the sync group. * * @param syncDatabaseId the syncDatabaseId value to set * @return the SyncGroupInner object itself. @@ -140,7 +140,7 @@ public SyncGroupInner withSyncDatabaseId(String syncDatabaseId) { } /** - * Get the hubDatabaseUserName value. + * Get user name for the sync group hub database credential. * * @return the hubDatabaseUserName value */ @@ -149,7 +149,7 @@ public String hubDatabaseUserName() { } /** - * Set the hubDatabaseUserName value. + * Set user name for the sync group hub database credential. * * @param hubDatabaseUserName the hubDatabaseUserName value to set * @return the SyncGroupInner object itself. @@ -160,7 +160,7 @@ public SyncGroupInner withHubDatabaseUserName(String hubDatabaseUserName) { } /** - * Get the hubDatabasePassword value. + * Get password for the sync group hub database credential. * * @return the hubDatabasePassword value */ @@ -169,7 +169,7 @@ public String hubDatabasePassword() { } /** - * Set the hubDatabasePassword value. + * Set password for the sync group hub database credential. * * @param hubDatabasePassword the hubDatabasePassword value to set * @return the SyncGroupInner object itself. @@ -180,7 +180,7 @@ public SyncGroupInner withHubDatabasePassword(String hubDatabasePassword) { } /** - * Get the syncState value. + * Get sync state of the sync group. Possible values include: 'NotReady', 'Error', 'Warning', 'Progressing', 'Good'. * * @return the syncState value */ @@ -189,7 +189,7 @@ public SyncGroupState syncState() { } /** - * Get the schema value. + * Get sync schema of the sync group. * * @return the schema value */ @@ -198,7 +198,7 @@ public SyncGroupSchema schema() { } /** - * Set the schema value. + * Set sync schema of the sync group. * * @param schema the schema value to set * @return the SyncGroupInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupLogPropertiesInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupLogPropertiesInner.java index 76f65c9a858..166e4772b3f 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupLogPropertiesInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncGroupLogPropertiesInner.java @@ -55,7 +55,7 @@ public class SyncGroupLogPropertiesInner { private String operationStatus; /** - * Get the timestamp value. + * Get timestamp of the sync group log. * * @return the timestamp value */ @@ -64,7 +64,7 @@ public DateTime timestamp() { } /** - * Get the type value. + * Get type of the sync group log. Possible values include: 'All', 'Error', 'Warning', 'Success'. * * @return the type value */ @@ -73,7 +73,7 @@ public SyncGroupLogType type() { } /** - * Get the source value. + * Get source of the sync group log. * * @return the source value */ @@ -82,7 +82,7 @@ public String source() { } /** - * Get the details value. + * Get details of the sync group log. * * @return the details value */ @@ -91,7 +91,7 @@ public String details() { } /** - * Get the tracingId value. + * Get tracingId of the sync group log. * * @return the tracingId value */ @@ -100,7 +100,7 @@ public UUID tracingId() { } /** - * Get the operationStatus value. + * Get operationStatus of the sync group log. * * @return the operationStatus value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncMemberInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncMemberInner.java index 4ce36730d25..aee27128205 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncMemberInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/SyncMemberInner.java @@ -83,7 +83,7 @@ public class SyncMemberInner extends ProxyResourceInner { private SyncMemberState syncState; /** - * Get the databaseType value. + * Get database type of the sync member. Possible values include: 'AzureSqlDatabase', 'SqlServerDatabase'. * * @return the databaseType value */ @@ -92,7 +92,7 @@ public SyncMemberDbType databaseType() { } /** - * Set the databaseType value. + * Set database type of the sync member. Possible values include: 'AzureSqlDatabase', 'SqlServerDatabase'. * * @param databaseType the databaseType value to set * @return the SyncMemberInner object itself. @@ -103,7 +103,7 @@ public SyncMemberInner withDatabaseType(SyncMemberDbType databaseType) { } /** - * Get the syncAgentId value. + * Get aRM resource id of the sync agent in the sync member. * * @return the syncAgentId value */ @@ -112,7 +112,7 @@ public String syncAgentId() { } /** - * Set the syncAgentId value. + * Set aRM resource id of the sync agent in the sync member. * * @param syncAgentId the syncAgentId value to set * @return the SyncMemberInner object itself. @@ -123,7 +123,7 @@ public SyncMemberInner withSyncAgentId(String syncAgentId) { } /** - * Get the sqlServerDatabaseId value. + * Get sQL Server database id of the sync member. * * @return the sqlServerDatabaseId value */ @@ -132,7 +132,7 @@ public UUID sqlServerDatabaseId() { } /** - * Set the sqlServerDatabaseId value. + * Set sQL Server database id of the sync member. * * @param sqlServerDatabaseId the sqlServerDatabaseId value to set * @return the SyncMemberInner object itself. @@ -143,7 +143,7 @@ public SyncMemberInner withSqlServerDatabaseId(UUID sqlServerDatabaseId) { } /** - * Get the serverName value. + * Get server name of the member database in the sync member. * * @return the serverName value */ @@ -152,7 +152,7 @@ public String serverName() { } /** - * Set the serverName value. + * Set server name of the member database in the sync member. * * @param serverName the serverName value to set * @return the SyncMemberInner object itself. @@ -163,7 +163,7 @@ public SyncMemberInner withServerName(String serverName) { } /** - * Get the databaseName value. + * Get database name of the member database in the sync member. * * @return the databaseName value */ @@ -172,7 +172,7 @@ public String databaseName() { } /** - * Set the databaseName value. + * Set database name of the member database in the sync member. * * @param databaseName the databaseName value to set * @return the SyncMemberInner object itself. @@ -183,7 +183,7 @@ public SyncMemberInner withDatabaseName(String databaseName) { } /** - * Get the userName value. + * Get user name of the member database in the sync member. * * @return the userName value */ @@ -192,7 +192,7 @@ public String userName() { } /** - * Set the userName value. + * Set user name of the member database in the sync member. * * @param userName the userName value to set * @return the SyncMemberInner object itself. @@ -203,7 +203,7 @@ public SyncMemberInner withUserName(String userName) { } /** - * Get the password value. + * Get password of the member database in the sync member. * * @return the password value */ @@ -212,7 +212,7 @@ public String password() { } /** - * Set the password value. + * Set password of the member database in the sync member. * * @param password the password value to set * @return the SyncMemberInner object itself. @@ -223,7 +223,7 @@ public SyncMemberInner withPassword(String password) { } /** - * Get the syncDirection value. + * Get sync direction of the sync member. Possible values include: 'Bidirectional', 'OneWayMemberToHub', 'OneWayHubToMember'. * * @return the syncDirection value */ @@ -232,7 +232,7 @@ public SyncDirection syncDirection() { } /** - * Set the syncDirection value. + * Set sync direction of the sync member. Possible values include: 'Bidirectional', 'OneWayMemberToHub', 'OneWayHubToMember'. * * @param syncDirection the syncDirection value to set * @return the SyncMemberInner object itself. @@ -243,7 +243,7 @@ public SyncMemberInner withSyncDirection(SyncDirection syncDirection) { } /** - * Get the syncState value. + * Get sync state of the sync member. Possible values include: 'SyncInProgress', 'SyncSucceeded', 'SyncFailed', 'DisabledTombstoneCleanup', 'DisabledBackupRestore', 'SyncSucceededWithWarnings', 'SyncCancelling', 'SyncCancelled', 'UnProvisioned', 'Provisioning', 'Provisioned', 'ProvisionFailed', 'DeProvisioning', 'DeProvisioned', 'DeProvisionFailed', 'Reprovisioning', 'ReprovisionFailed', 'UnReprovisioned'. * * @return the syncState value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TrackedResourceInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TrackedResourceInner.java index fd00fead8d3..020517c900b 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TrackedResourceInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TrackedResourceInner.java @@ -16,12 +16,6 @@ * ARM tracked top level resource. */ public class TrackedResourceInner extends ProxyResource { - /** - * Resource tags. - */ - @JsonProperty(value = "tags") - private Map tags; - /** * Resource location. */ @@ -29,42 +23,48 @@ public class TrackedResourceInner extends ProxyResource { private String location; /** - * Get the tags value. + * Resource tags. + */ + @JsonProperty(value = "tags") + private Map tags; + + /** + * Get resource location. * - * @return the tags value + * @return the location value */ - public Map tags() { - return this.tags; + public String location() { + return this.location; } /** - * Set the tags value. + * Set resource location. * - * @param tags the tags value to set + * @param location the location value to set * @return the TrackedResourceInner object itself. */ - public TrackedResourceInner withTags(Map tags) { - this.tags = tags; + public TrackedResourceInner withLocation(String location) { + this.location = location; return this; } /** - * Get the location value. + * Get resource tags. * - * @return the location value + * @return the tags value */ - public String location() { - return this.location; + public Map tags() { + return this.tags; } /** - * Set the location value. + * Set resource tags. * - * @param location the location value to set + * @param tags the tags value to set * @return the TrackedResourceInner object itself. */ - public TrackedResourceInner withLocation(String location) { - this.location = location; + public TrackedResourceInner withTags(Map tags) { + this.tags = tags; return this; } diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionActivityInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionActivityInner.java index e8e4a3e95e4..48d62ee515a 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionActivityInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionActivityInner.java @@ -38,7 +38,7 @@ public class TransparentDataEncryptionActivityInner extends ProxyResourceInner { private Double percentComplete; /** - * Get the location value. + * Get resource location. * * @return the location value */ @@ -47,7 +47,7 @@ public String location() { } /** - * Get the status value. + * Get the status of the database. Possible values include: 'Encrypting', 'Decrypting'. * * @return the status value */ @@ -56,7 +56,7 @@ public TransparentDataEncryptionActivityStatus status() { } /** - * Get the percentComplete value. + * Get the percent complete of the transparent data encryption scan for a database. * * @return the percentComplete value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionInner.java index bb94013f11c..f9a7591f115 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/TransparentDataEncryptionInner.java @@ -31,7 +31,7 @@ public class TransparentDataEncryptionInner extends ProxyResourceInner { private TransparentDataEncryptionStatus status; /** - * Get the location value. + * Get resource location. * * @return the location value */ @@ -40,7 +40,7 @@ public String location() { } /** - * Get the status value. + * Get the status of the database transparent data encryption. Possible values include: 'Enabled', 'Disabled'. * * @return the status value */ @@ -49,7 +49,7 @@ public TransparentDataEncryptionStatus status() { } /** - * Set the status value. + * Set the status of the database transparent data encryption. Possible values include: 'Enabled', 'Disabled'. * * @param status the status value to set * @return the TransparentDataEncryptionInner object itself. diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VirtualNetworkRuleInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VirtualNetworkRuleInner.java index cf75ad756f7..6f1525c33c5 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VirtualNetworkRuleInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VirtualNetworkRuleInner.java @@ -38,7 +38,7 @@ public class VirtualNetworkRuleInner extends ProxyResourceInner { private VirtualNetworkRuleState state; /** - * Get the virtualNetworkSubnetId value. + * Get the ARM resource id of the virtual network subnet. * * @return the virtualNetworkSubnetId value */ @@ -47,7 +47,7 @@ public String virtualNetworkSubnetId() { } /** - * Set the virtualNetworkSubnetId value. + * Set the ARM resource id of the virtual network subnet. * * @param virtualNetworkSubnetId the virtualNetworkSubnetId value to set * @return the VirtualNetworkRuleInner object itself. @@ -58,7 +58,7 @@ public VirtualNetworkRuleInner withVirtualNetworkSubnetId(String virtualNetworkS } /** - * Get the ignoreMissingVnetServiceEndpoint value. + * Get create firewall rule before the virtual network has vnet service endpoint enabled. * * @return the ignoreMissingVnetServiceEndpoint value */ @@ -67,7 +67,7 @@ public Boolean ignoreMissingVnetServiceEndpoint() { } /** - * Set the ignoreMissingVnetServiceEndpoint value. + * Set create firewall rule before the virtual network has vnet service endpoint enabled. * * @param ignoreMissingVnetServiceEndpoint the ignoreMissingVnetServiceEndpoint value to set * @return the VirtualNetworkRuleInner object itself. @@ -78,7 +78,7 @@ public VirtualNetworkRuleInner withIgnoreMissingVnetServiceEndpoint(Boolean igno } /** - * Get the state value. + * Get virtual Network Rule State. Possible values include: 'Initializing', 'InProgress', 'Ready', 'Deleting', 'Unknown'. * * @return the state value */ diff --git a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VulnerabilityAssessmentScanRecordInner.java b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VulnerabilityAssessmentScanRecordInner.java index 655549b516e..4ba37e0dc59 100644 --- a/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VulnerabilityAssessmentScanRecordInner.java +++ b/azure-mgmt-sql/src/main/java/com/microsoft/azure/management/sql/implementation/VulnerabilityAssessmentScanRecordInner.java @@ -71,7 +71,7 @@ public class VulnerabilityAssessmentScanRecordInner extends ProxyResourceInner { private Integer numberOfFailedSecurityChecks; /** - * Get the scanId value. + * Get the scan ID. * * @return the scanId value */ @@ -80,7 +80,7 @@ public String scanId() { } /** - * Get the triggerType value. + * Get the scan trigger type. Possible values include: 'OnDemand', 'Recurring'. * * @return the triggerType value */ @@ -89,7 +89,7 @@ public VulnerabilityAssessmentScanTriggerType triggerType() { } /** - * Get the state value. + * Get the scan status. Possible values include: 'Passed', 'Failed', 'FailedToRun', 'InProgress'. * * @return the state value */ @@ -98,7 +98,7 @@ public VulnerabilityAssessmentScanState state() { } /** - * Get the startTime value. + * Get the scan start time (UTC). * * @return the startTime value */ @@ -107,7 +107,7 @@ public DateTime startTime() { } /** - * Get the endTime value. + * Get the scan end time (UTC). * * @return the endTime value */ @@ -116,7 +116,7 @@ public DateTime endTime() { } /** - * Get the errors value. + * Get the scan errors. * * @return the errors value */ @@ -125,7 +125,7 @@ public List errors() { } /** - * Get the storageContainerPath value. + * Get the scan results storage container path. * * @return the storageContainerPath value */ @@ -134,7 +134,7 @@ public String storageContainerPath() { } /** - * Get the numberOfFailedSecurityChecks value. + * Get the number of failed security checks. * * @return the numberOfFailedSecurityChecks value */