Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
/**
* 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.mediaservices;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;

/**
* Describes Advanced Audio Codec (AAC) audio encoding settings.
*/
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "@odata.type")
@JsonTypeName("#Microsoft.Media.AacAudio")
public class AacAudio extends Audio {
/**
* The encoding profile to be used when encoding audio with AAC. Possible
* values include: 'AacLc', 'HeAacV1', 'HeAacV2'.
*/
@JsonProperty(value = "profile")
private AacAudioProfile profile;

/**
* Get the encoding profile to be used when encoding audio with AAC. Possible values include: 'AacLc', 'HeAacV1', 'HeAacV2'.
*
* @return the profile value
*/
public AacAudioProfile profile() {
return this.profile;
}

/**
* Set the encoding profile to be used when encoding audio with AAC. Possible values include: 'AacLc', 'HeAacV1', 'HeAacV2'.
*
* @param profile the profile value to set
* @return the AacAudio object itself.
*/
public AacAudio withProfile(AacAudioProfile profile) {
this.profile = profile;
return this;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/**
* 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.mediaservices;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/**
* Defines values for AacAudioProfile.
*/
public enum AacAudioProfile {
/** Specifies that the output audio is to be encoded into AAC Low Complexity profile (AAC-LC). */
AAC_LC("AacLc"),

/** Specifies that the output audio is to be encoded into HE-AAC v1 profile. */
HE_AAC_V1("HeAacV1"),

/** Specifies that the output audio is to be encoded into HE-AAC v2 profile. */
HE_AAC_V2("HeAacV2");

/** The actual serialized value for a AacAudioProfile instance. */
private String value;

AacAudioProfile(String value) {
this.value = value;
}

/**
* Parses a serialized value to a AacAudioProfile instance.
*
* @param value the serialized value to parse.
* @return the parsed AacAudioProfile object, or null if unable to parse.
*/
@JsonCreator
public static AacAudioProfile fromString(String value) {
AacAudioProfile[] items = AacAudioProfile.values();
for (AacAudioProfile item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}

@JsonValue
@Override
public String toString() {
return this.value;
}
}
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.mediaservices;

import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Akamai access control.
*/
public class AkamaiAccessControl {
/**
* authentication key list.
*/
@JsonProperty(value = "akamaiSignatureHeaderAuthenticationKeyList")
private List<AkamaiSignatureHeaderAuthenticationKey> akamaiSignatureHeaderAuthenticationKeyList;

/**
* Get authentication key list.
*
* @return the akamaiSignatureHeaderAuthenticationKeyList value
*/
public List<AkamaiSignatureHeaderAuthenticationKey> akamaiSignatureHeaderAuthenticationKeyList() {
return this.akamaiSignatureHeaderAuthenticationKeyList;
}

/**
* Set authentication key list.
*
* @param akamaiSignatureHeaderAuthenticationKeyList the akamaiSignatureHeaderAuthenticationKeyList value to set
* @return the AkamaiAccessControl object itself.
*/
public AkamaiAccessControl withAkamaiSignatureHeaderAuthenticationKeyList(List<AkamaiSignatureHeaderAuthenticationKey> akamaiSignatureHeaderAuthenticationKeyList) {
this.akamaiSignatureHeaderAuthenticationKeyList = akamaiSignatureHeaderAuthenticationKeyList;
return this;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
/**
* 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.mediaservices;

import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Akamai Signature Header authentication key.
*/
public class AkamaiSignatureHeaderAuthenticationKey {
/**
* identifier of the key.
*/
@JsonProperty(value = "identifier")
private String identifier;

/**
* authentication key.
*/
@JsonProperty(value = "base64Key")
private String base64Key;

/**
* The exact time the authentication key.
*/
@JsonProperty(value = "expiration")
private DateTime expiration;

/**
* Get identifier of the key.
*
* @return the identifier value
*/
public String identifier() {
return this.identifier;
}

/**
* Set identifier of the key.
*
* @param identifier the identifier value to set
* @return the AkamaiSignatureHeaderAuthenticationKey object itself.
*/
public AkamaiSignatureHeaderAuthenticationKey withIdentifier(String identifier) {
this.identifier = identifier;
return this;
}

/**
* Get authentication key.
*
* @return the base64Key value
*/
public String base64Key() {
return this.base64Key;
}

/**
* Set authentication key.
*
* @param base64Key the base64Key value to set
* @return the AkamaiSignatureHeaderAuthenticationKey object itself.
*/
public AkamaiSignatureHeaderAuthenticationKey withBase64Key(String base64Key) {
this.base64Key = base64Key;
return this;
}

/**
* Get the exact time the authentication key.
*
* @return the expiration value
*/
public DateTime expiration() {
return this.expiration;
}

/**
* Set the exact time the authentication key.
*
* @param expiration the expiration value to set
* @return the AkamaiSignatureHeaderAuthenticationKey object itself.
*/
public AkamaiSignatureHeaderAuthenticationKey withExpiration(DateTime expiration) {
this.expiration = expiration;
return this;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/**
* 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.mediaservices;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* The API error.
*/
public class ApiError {
/**
* The error properties.
*/
@JsonProperty(value = "error")
private ODataError error;

/**
* Get the error properties.
*
* @return the error value
*/
public ODataError error() {
return this.error;
}

/**
* Set the error properties.
*
* @param error the error value to set
* @return the ApiError object itself.
*/
public ApiError withError(ODataError error) {
this.error = error;
return this;
}

}
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.mediaservices;

import com.microsoft.rest.RestException;
import okhttp3.ResponseBody;
import retrofit2.Response;

/**
* Exception thrown for an invalid response with ApiError information.
*/
public class ApiErrorException extends RestException {
/**
* Initializes a new instance of the ApiErrorException class.
*
* @param message the exception message or the response content if a message is not available
* @param response the HTTP response
*/
public ApiErrorException(final String message, final Response<ResponseBody> response) {
super(message, response);
}

/**
* Initializes a new instance of the ApiErrorException class.
*
* @param message the exception message or the response content if a message is not available
* @param response the HTTP response
* @param body the deserialized response body
*/
public ApiErrorException(final String message, final Response<ResponseBody> response, final ApiError body) {
super(message, response, body);
}

@Override
public ApiError body() {
return (ApiError) super.body();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/**
* 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.mediaservices;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;

/**
* Defines values for AssetContainerPermission.
*/
public enum AssetContainerPermission {
/** The SAS URL will allow read access to the container. */
READ("Read"),

/** The SAS URL will allow read and write access to the container. */
READ_WRITE("ReadWrite"),

/** The SAS URL will allow read, write and delete access to the container. */
READ_WRITE_DELETE("ReadWriteDelete");

/** The actual serialized value for a AssetContainerPermission instance. */
private String value;

AssetContainerPermission(String value) {
this.value = value;
}

/**
* Parses a serialized value to a AssetContainerPermission instance.
*
* @param value the serialized value to parse.
* @return the parsed AssetContainerPermission object, or null if unable to parse.
*/
@JsonCreator
public static AssetContainerPermission fromString(String value) {
AssetContainerPermission[] items = AssetContainerPermission.values();
for (AssetContainerPermission item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}

@JsonValue
@Override
public String toString() {
return this.value;
}
}
Loading