Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@ public class CognitiveServicesAccountProperties {
@JsonProperty(value = "internalId", access = JsonProperty.Access.WRITE_ONLY)
private String internalId;

/**
* Gets the capabilities of the cognitive services account. Each item
* indicates a specific feature is supported by this account. The value is
* read only and for reference only.
*/
@JsonProperty(value = "capabilities", access = JsonProperty.Access.WRITE_ONLY)
private List<String> capabilities;

/**
* Optional subdomain name used for token-based authentication.
*/
Expand Down Expand Up @@ -117,15 +109,6 @@ public String internalId() {
return this.internalId;
}

/**
* Get gets the capabilities of the cognitive services account. Each item indicates a specific feature is supported by this account. The value is read only and for reference only.
*
* @return the capabilities value
*/
public List<String> capabilities() {
return this.capabilities;
}

/**
* Get optional subdomain name used for token-based authentication.
*
Expand Down