Skip to content

Commit

Permalink
Added mediaservices sdk (#2475)
Browse files Browse the repository at this point in the history
* added mediaservices sdk 2018-07-01

* updated poms for mediaservices 2018-07-01 and removed erroneous file
  • Loading branch information
iscai-msft authored and jianghaolu committed Oct 8, 2018
1 parent 152d2bc commit c9cf6a2
Show file tree
Hide file tree
Showing 534 changed files with 37,698 additions and 798 deletions.
6 changes: 3 additions & 3 deletions mediaservices/resource-manager/v2015_10_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<packaging>jar</packaging>
<name>Microsoft Azure SDK for Media Management</name>
<description>This package contains Microsoft Media Management SDK.</description>
<url>https://github.com/Azure/azure-libraries-for-java</url>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -28,8 +28,8 @@
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,13 @@ interface WithGroup extends GroupableResourceCore.DefinitionStages.WithGroup<Wit
}

/**
* The stage of the mediaservice update allowing to specify StorageAccounts.
* The stage of the mediaservice definition allowing to specify StorageAccounts.
*/
interface WithStorageAccounts {
/**
* Specifies storageAccounts.
* @param storageAccounts The storage accounts for this resource
* @return the next definition stage
*/
WithCreate withStorageAccounts(List<StorageAccount> storageAccounts);
}
Expand All @@ -86,11 +88,13 @@ interface Update extends Appliable<MediaService>, Resource.UpdateWithTags<Update
*/
interface UpdateStages {
/**
* The stage of the mediaservice {0} allowing to specify StorageAccounts.
* The stage of the mediaservice update allowing to specify StorageAccounts.
*/
interface WithStorageAccounts {
/**
* Specifies storageAccounts.
* @param storageAccounts The storage accounts for this resource
* @return the next update stage
*/
Update withStorageAccounts(List<StorageAccount> storageAccounts);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,11 @@ public String apiVersion() {
return this.apiVersion;
}

/** Gets or sets the preferred language for the response. */
/** The preferred language for the response. */
private String acceptLanguage;

/**
* Gets Gets or sets the preferred language for the response.
* Gets The preferred language for the response.
*
* @return the acceptLanguage value.
*/
Expand All @@ -76,7 +76,7 @@ public String acceptLanguage() {
}

/**
* Sets Gets or sets the preferred language for the response.
* Sets The preferred language for the response.
*
* @param acceptLanguage the acceptLanguage value.
* @return the service client itself
Expand All @@ -86,11 +86,11 @@ public MediaServicesManagementClientImpl withAcceptLanguage(String acceptLanguag
return this;
}

/** Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30. */
/** The retry timeout in seconds for Long Running Operations. Default value is 30. */
private int longRunningOperationRetryTimeout;

/**
* Gets Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
* Gets The retry timeout in seconds for Long Running Operations. Default value is 30.
*
* @return the longRunningOperationRetryTimeout value.
*/
Expand All @@ -99,7 +99,7 @@ public int longRunningOperationRetryTimeout() {
}

/**
* Sets Gets or sets the retry timeout in seconds for Long Running Operations. Default value is 30.
* Sets The retry timeout in seconds for Long Running Operations. Default value is 30.
*
* @param longRunningOperationRetryTimeout the longRunningOperationRetryTimeout value.
* @return the service client itself
Expand All @@ -109,11 +109,11 @@ public MediaServicesManagementClientImpl withLongRunningOperationRetryTimeout(in
return this;
}

/** When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true. */
/** Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true. */
private boolean generateClientRequestId;

/**
* Gets When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
* Gets Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
*
* @return the generateClientRequestId value.
*/
Expand All @@ -122,7 +122,7 @@ public boolean generateClientRequestId() {
}

/**
* Sets When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
* Sets Whether a unique x-ms-client-request-id should be generated. When set to true a unique x-ms-client-request-id value is generated and included in each request. Default is true.
*
* @param generateClientRequestId the generateClientRequestId value.
* @return the service client itself
Expand Down Expand Up @@ -205,6 +205,6 @@ protected void initialize() {
*/
@Override
public String userAgent() {
return String.format("%s (%s, %s)", super.userAgent(), "MediaServicesManagementClient", "2015-10-01");
return String.format("%s (%s, %s, auto-generated)", super.userAgent(), "MediaServicesManagementClient", "2015-10-01");
}
}

This file was deleted.

Loading

0 comments on commit c9cf6a2

Please sign in to comment.