Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sql/resource-manager/v2015_05_01_preview/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
<version>0.0.3-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-sql</artifactId>
<version>1.0.0-beta</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ interface WithIsAzureMonitorTargetEnabled {
/**
* Specifies isAzureMonitorTargetEnabled.
* @param isAzureMonitorTargetEnabled Specifies whether audit events are sent to Azure Monitor.
In order to send the events to Azure Monitor, specify 'State' as 'Enabled' and 'IsAzureMonitorTargetEnabled' as true.
In order to send the events to Azure Monitor, specify 'state' as 'Enabled' and 'isAzureMonitorTargetEnabled' as true.
When using REST API to configure auditing, Diagnostic Settings with 'SQLSecurityAuditEvents' diagnostic logs category on the database should be also created.
Note that for server level audit you should use the 'master' database as {databaseName}.
Diagnostic Settings URI format:
Expand Down Expand Up @@ -342,7 +342,7 @@ interface WithIsAzureMonitorTargetEnabled {
/**
* Specifies isAzureMonitorTargetEnabled.
* @param isAzureMonitorTargetEnabled Specifies whether audit events are sent to Azure Monitor.
In order to send the events to Azure Monitor, specify 'State' as 'Enabled' and 'IsAzureMonitorTargetEnabled' as true.
In order to send the events to Azure Monitor, specify 'state' as 'Enabled' and 'isAzureMonitorTargetEnabled' as true.
When using REST API to configure auditing, Diagnostic Settings with 'SQLSecurityAuditEvents' diagnostic logs category on the database should be also created.
Note that for server level audit you should use the 'master' database as {databaseName}.
Diagnostic Settings URI format:
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.sql.v2015_05_01_preview;

import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;

/**
* Defines values for ManagedInstanceLicenseType.
*/
public final class ManagedInstanceLicenseType extends ExpandableStringEnum<ManagedInstanceLicenseType> {
/** Static value LicenseIncluded for ManagedInstanceLicenseType. */
public static final ManagedInstanceLicenseType LICENSE_INCLUDED = fromString("LicenseIncluded");

/** Static value BasePrice for ManagedInstanceLicenseType. */
public static final ManagedInstanceLicenseType BASE_PRICE = fromString("BasePrice");

/**
* Creates or finds a ManagedInstanceLicenseType from its string representation.
* @param name a name to look for
* @return the corresponding ManagedInstanceLicenseType
*/
@JsonCreator
public static ManagedInstanceLicenseType fromString(String name) {
return fromString(name, ManagedInstanceLicenseType.class);
}

/**
* @return known ManagedInstanceLicenseType values
*/
public static Collection<ManagedInstanceLicenseType> values() {
return values(ManagedInstanceLicenseType.class);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/

package com.microsoft.azure.management.sql.v2015_05_01_preview;

import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;

/**
* Defines values for ManagedInstanceProxyOverride.
*/
public final class ManagedInstanceProxyOverride extends ExpandableStringEnum<ManagedInstanceProxyOverride> {
/** Static value Proxy for ManagedInstanceProxyOverride. */
public static final ManagedInstanceProxyOverride PROXY = fromString("Proxy");

/** Static value Redirect for ManagedInstanceProxyOverride. */
public static final ManagedInstanceProxyOverride REDIRECT = fromString("Redirect");

/** Static value Default for ManagedInstanceProxyOverride. */
public static final ManagedInstanceProxyOverride DEFAULT = fromString("Default");

/**
* Creates or finds a ManagedInstanceProxyOverride from its string representation.
* @param name a name to look for
* @return the corresponding ManagedInstanceProxyOverride
*/
@JsonCreator
public static ManagedInstanceProxyOverride fromString(String name) {
return fromString(name, ManagedInstanceProxyOverride.class);
}

/**
* @return known ManagedInstanceProxyOverride values
*/
public static Collection<ManagedInstanceProxyOverride> values() {
return values(ManagedInstanceProxyOverride.class);
}
}
Loading