Skip to content

Commit

Permalink
Generated from ac83b067af2ef46d565edf7bee00b202952d6d46
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Oct 27, 2020
1 parent 4579d73 commit 25cfcb9
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 7 deletions.
6 changes: 3 additions & 3 deletions sdk/cognitiveservices/mgmt-v2017_04_18/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.3.2</version>
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-cognitiveservices</artifactId>
<version>1.0.1</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for CognitiveServices Management</name>
<description>This package contains Microsoft CognitiveServices Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
import com.microsoft.azure.ProxyResource;

/**
* The resource model definition for a Azure Resource Manager resource with an
* Entity Resource.
* The resource model definition for an Azure Resource Manager resource with an
* etag.
*/
public class AzureEntityResource extends ProxyResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ public class CognitiveServicesAccountProperties {
@JsonProperty(value = "capabilities", access = JsonProperty.Access.WRITE_ONLY)
private List<SkuCapability> capabilities;

/**
* Gets the date of cognitive services account creation.
*/
@JsonProperty(value = "dateCreated", access = JsonProperty.Access.WRITE_ONLY)
private String dateCreated;

/**
* Optional subdomain name used for token-based authentication.
*/
Expand Down Expand Up @@ -126,6 +132,15 @@ public List<SkuCapability> capabilities() {
return this.capabilities;
}

/**
* Get gets the date of cognitive services account creation.
*
* @return the dateCreated value
*/
public String dateCreated() {
return this.dateCreated;
}

/**
* Get optional subdomain name used for token-based authentication.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Sku {

/**
* Gets the sku tier. This is based on the SKU name. Possible values
* include: 'Free', 'Standard', 'Premium'.
* include: 'Free', 'Standard', 'Premium', 'Enterprise'.
*/
@JsonProperty(value = "tier", access = JsonProperty.Access.WRITE_ONLY)
private SkuTier tier;
Expand All @@ -49,7 +49,7 @@ public Sku withName(String name) {
}

/**
* Get gets the sku tier. This is based on the SKU name. Possible values include: 'Free', 'Standard', 'Premium'.
* Get gets the sku tier. This is based on the SKU name. Possible values include: 'Free', 'Standard', 'Premium', 'Enterprise'.
*
* @return the tier value
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public enum SkuTier {
STANDARD("Standard"),

/** Enum value Premium. */
PREMIUM("Premium");
PREMIUM("Premium"),

/** Enum value Enterprise. */
ENTERPRISE("Enterprise");

/** The actual serialized value for a SkuTier instance. */
private String value;
Expand Down

0 comments on commit 25cfcb9

Please sign in to comment.