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.
/** * 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.trafficmanager.implementation; import com.microsoft.azure.management.resources.fluentcore.collection.InnerSupportsGet; import com.microsoft.azure.management.resources.fluentcore.collection.InnerSupportsDelete; import com.microsoft.azure.management.resources.fluentcore.collection.InnerSupportsListing; import retrofit2.Retrofit; import com.google.common.reflect.TypeToken; import com.microsoft.azure.CloudException; import com.microsoft.azure.management.trafficmanager.CheckTrafficManagerRelativeDnsNameAvailabilityParameters; import com.microsoft.azure.Page; import com.microsoft.azure.PagedList; import com.microsoft.rest.ServiceCallback; import com.microsoft.rest.ServiceFuture; import com.microsoft.rest.ServiceResponse; import com.microsoft.rest.Validator; import java.io.IOException; import java.util.List; import okhttp3.ResponseBody; import retrofit2.http.Body; import retrofit2.http.GET; import retrofit2.http.Header; import retrofit2.http.Headers; import retrofit2.http.HTTP; import retrofit2.http.PATCH; import retrofit2.http.Path; import retrofit2.http.POST; import retrofit2.http.PUT; import retrofit2.http.Query; import retrofit2.Response; import rx.functions.Func1; import rx.Observable;
An instance of this class provides access to all the operations defined in Profiles.
/** * An instance of this class provides access to all the operations defined * in Profiles. */
public class ProfilesInner implements InnerSupportsGet<ProfileInner>, InnerSupportsDelete<DeleteOperationResultInner>, InnerSupportsListing<ProfileInner> {
The Retrofit service to perform REST calls.
/** The Retrofit service to perform REST calls. */
private ProfilesService service;
The service client containing this operation class.
/** The service client containing this operation class. */
private TrafficManagerManagementClientImpl client;
Initializes an instance of ProfilesInner.
Params:
  • retrofit – the Retrofit instance built from a Retrofit Builder.
  • client – the instance of the service client containing this operation class.
/** * Initializes an instance of ProfilesInner. * * @param retrofit the Retrofit instance built from a Retrofit Builder. * @param client the instance of the service client containing this operation class. */
public ProfilesInner(Retrofit retrofit, TrafficManagerManagementClientImpl client) { this.service = retrofit.create(ProfilesService.class); this.client = client; }
The interface defining all the services for Profiles to be used by Retrofit to perform actually REST calls.
/** * The interface defining all the services for Profiles to be * used by Retrofit to perform actually REST calls. */
interface ProfilesService { @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.trafficmanager.Profiles checkTrafficManagerRelativeDnsNameAvailability" }) @POST("providers/Microsoft.Network/checkTrafficManagerNameAvailability") Observable<Response<ResponseBody>> checkTrafficManagerRelativeDnsNameAvailability(@Body CheckTrafficManagerRelativeDnsNameAvailabilityParameters parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.trafficmanager.Profiles listByResourceGroup" }) @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles") Observable<Response<ResponseBody>> listByResourceGroup(@Path("resourceGroupName") String resourceGroupName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.trafficmanager.Profiles list" }) @GET("subscriptions/{subscriptionId}/providers/Microsoft.Network/trafficmanagerprofiles") Observable<Response<ResponseBody>> list(@Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.trafficmanager.Profiles getByResourceGroup" }) @GET("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}") Observable<Response<ResponseBody>> getByResourceGroup(@Path("resourceGroupName") String resourceGroupName, @Path("profileName") String profileName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.trafficmanager.Profiles createOrUpdate" }) @PUT("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}") Observable<Response<ResponseBody>> createOrUpdate(@Path("resourceGroupName") String resourceGroupName, @Path("profileName") String profileName, @Path("subscriptionId") String subscriptionId, @Body ProfileInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.trafficmanager.Profiles delete" }) @HTTP(path = "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}", method = "DELETE", hasBody = true) Observable<Response<ResponseBody>> delete(@Path("resourceGroupName") String resourceGroupName, @Path("profileName") String profileName, @Path("subscriptionId") String subscriptionId, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); @Headers({ "Content-Type: application/json; charset=utf-8", "x-ms-logging-context: com.microsoft.azure.management.trafficmanager.Profiles update" }) @PATCH("subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/trafficmanagerprofiles/{profileName}") Observable<Response<ResponseBody>> update(@Path("resourceGroupName") String resourceGroupName, @Path("profileName") String profileName, @Path("subscriptionId") String subscriptionId, @Body ProfileInner parameters, @Query("api-version") String apiVersion, @Header("accept-language") String acceptLanguage, @Header("User-Agent") String userAgent); }
Checks the availability of a Traffic Manager Relative DNS name.
Params:
  • parameters – The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation.
Throws:
Returns:the TrafficManagerNameAvailabilityInner object if successful.
/** * Checks the availability of a Traffic Manager Relative DNS name. * * @param parameters The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the TrafficManagerNameAvailabilityInner object if successful. */
public TrafficManagerNameAvailabilityInner checkTrafficManagerRelativeDnsNameAvailability(CheckTrafficManagerRelativeDnsNameAvailabilityParameters parameters) { return checkTrafficManagerRelativeDnsNameAvailabilityWithServiceResponseAsync(parameters).toBlocking().single().body(); }
Checks the availability of a Traffic Manager Relative DNS name.
Params:
  • parameters – The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Checks the availability of a Traffic Manager Relative DNS name. * * @param parameters The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<TrafficManagerNameAvailabilityInner> checkTrafficManagerRelativeDnsNameAvailabilityAsync(CheckTrafficManagerRelativeDnsNameAvailabilityParameters parameters, final ServiceCallback<TrafficManagerNameAvailabilityInner> serviceCallback) { return ServiceFuture.fromResponse(checkTrafficManagerRelativeDnsNameAvailabilityWithServiceResponseAsync(parameters), serviceCallback); }
Checks the availability of a Traffic Manager Relative DNS name.
Params:
  • parameters – The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation.
Throws:
Returns:the observable to the TrafficManagerNameAvailabilityInner object
/** * Checks the availability of a Traffic Manager Relative DNS name. * * @param parameters The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the TrafficManagerNameAvailabilityInner object */
public Observable<TrafficManagerNameAvailabilityInner> checkTrafficManagerRelativeDnsNameAvailabilityAsync(CheckTrafficManagerRelativeDnsNameAvailabilityParameters parameters) { return checkTrafficManagerRelativeDnsNameAvailabilityWithServiceResponseAsync(parameters).map(new Func1<ServiceResponse<TrafficManagerNameAvailabilityInner>, TrafficManagerNameAvailabilityInner>() { @Override public TrafficManagerNameAvailabilityInner call(ServiceResponse<TrafficManagerNameAvailabilityInner> response) { return response.body(); } }); }
Checks the availability of a Traffic Manager Relative DNS name.
Params:
  • parameters – The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation.
Throws:
Returns:the observable to the TrafficManagerNameAvailabilityInner object
/** * Checks the availability of a Traffic Manager Relative DNS name. * * @param parameters The Traffic Manager name parameters supplied to the CheckTrafficManagerNameAvailability operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the TrafficManagerNameAvailabilityInner object */
public Observable<ServiceResponse<TrafficManagerNameAvailabilityInner>> checkTrafficManagerRelativeDnsNameAvailabilityWithServiceResponseAsync(CheckTrafficManagerRelativeDnsNameAvailabilityParameters parameters) { if (parameters == null) { throw new IllegalArgumentException("Parameter parameters is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } Validator.validate(parameters); return service.checkTrafficManagerRelativeDnsNameAvailability(parameters, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<TrafficManagerNameAvailabilityInner>>>() { @Override public Observable<ServiceResponse<TrafficManagerNameAvailabilityInner>> call(Response<ResponseBody> response) { try { ServiceResponse<TrafficManagerNameAvailabilityInner> clientResponse = checkTrafficManagerRelativeDnsNameAvailabilityDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<TrafficManagerNameAvailabilityInner> checkTrafficManagerRelativeDnsNameAvailabilityDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<TrafficManagerNameAvailabilityInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<TrafficManagerNameAvailabilityInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Lists all Traffic Manager profiles within a resource group.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profiles to be listed.
Returns:the PagedList object if successful.
/** * Lists all Traffic Manager profiles within a resource group. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profiles to be listed. * @return the PagedList<ProfileInner> object if successful. */
public PagedList<ProfileInner> listByResourceGroup(String resourceGroupName) { PageImpl<ProfileInner> page = new PageImpl<>(); page.setItems(listByResourceGroupWithServiceResponseAsync(resourceGroupName).toBlocking().single().body()); page.setNextPageLink(null); return new PagedList<ProfileInner>(page) { @Override public Page<ProfileInner> nextPage(String nextPageLink) { return null; } }; }
Lists all Traffic Manager profiles within a resource group.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profiles to be listed.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Returns:the ServiceFuture object
/** * Lists all Traffic Manager profiles within a resource group. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profiles to be listed. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @return the {@link ServiceFuture} object */
public ServiceFuture<List<ProfileInner>> listByResourceGroupAsync(String resourceGroupName, final ServiceCallback<List<ProfileInner>> serviceCallback) { return ServiceFuture.fromResponse(listByResourceGroupWithServiceResponseAsync(resourceGroupName), serviceCallback); }
Lists all Traffic Manager profiles within a resource group.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profiles to be listed.
Returns:the observable to the List<ProfileInner> object
/** * Lists all Traffic Manager profiles within a resource group. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profiles to be listed. * @return the observable to the List&lt;ProfileInner&gt; object */
public Observable<Page<ProfileInner>> listByResourceGroupAsync(String resourceGroupName) { return listByResourceGroupWithServiceResponseAsync(resourceGroupName).map(new Func1<ServiceResponse<List<ProfileInner>>, Page<ProfileInner>>() { @Override public Page<ProfileInner> call(ServiceResponse<List<ProfileInner>> response) { PageImpl<ProfileInner> page = new PageImpl<>(); page.setItems(response.body()); return page; } }); }
Lists all Traffic Manager profiles within a resource group.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profiles to be listed.
Returns:the observable to the List<ProfileInner> object
/** * Lists all Traffic Manager profiles within a resource group. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profiles to be listed. * @return the observable to the List&lt;ProfileInner&gt; object */
public Observable<ServiceResponse<List<ProfileInner>>> listByResourceGroupWithServiceResponseAsync(String resourceGroupName) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } return service.listByResourceGroup(resourceGroupName, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<List<ProfileInner>>>>() { @Override public Observable<ServiceResponse<List<ProfileInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<ProfileInner>> result = listByResourceGroupDelegate(response); List<ProfileInner> items = null; if (result.body() != null) { items = result.body().items(); } ServiceResponse<List<ProfileInner>> clientResponse = new ServiceResponse<List<ProfileInner>>(items, result.response()); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<ProfileInner>> listByResourceGroupDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<ProfileInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<ProfileInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Lists all Traffic Manager profiles within a subscription.
Returns:the PagedList object if successful.
/** * Lists all Traffic Manager profiles within a subscription. * * @return the PagedList<ProfileInner> object if successful. */
public PagedList<ProfileInner> list() { PageImpl<ProfileInner> page = new PageImpl<>(); page.setItems(listWithServiceResponseAsync().toBlocking().single().body()); page.setNextPageLink(null); return new PagedList<ProfileInner>(page) { @Override public Page<ProfileInner> nextPage(String nextPageLink) { return null; } }; }
Lists all Traffic Manager profiles within a subscription.
Params:
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Returns:the ServiceFuture object
/** * Lists all Traffic Manager profiles within a subscription. * * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @return the {@link ServiceFuture} object */
public ServiceFuture<List<ProfileInner>> listAsync(final ServiceCallback<List<ProfileInner>> serviceCallback) { return ServiceFuture.fromResponse(listWithServiceResponseAsync(), serviceCallback); }
Lists all Traffic Manager profiles within a subscription.
Returns:the observable to the List<ProfileInner> object
/** * Lists all Traffic Manager profiles within a subscription. * * @return the observable to the List&lt;ProfileInner&gt; object */
public Observable<Page<ProfileInner>> listAsync() { return listWithServiceResponseAsync().map(new Func1<ServiceResponse<List<ProfileInner>>, Page<ProfileInner>>() { @Override public Page<ProfileInner> call(ServiceResponse<List<ProfileInner>> response) { PageImpl<ProfileInner> page = new PageImpl<>(); page.setItems(response.body()); return page; } }); }
Lists all Traffic Manager profiles within a subscription.
Returns:the observable to the List<ProfileInner> object
/** * Lists all Traffic Manager profiles within a subscription. * * @return the observable to the List&lt;ProfileInner&gt; object */
public Observable<ServiceResponse<List<ProfileInner>>> listWithServiceResponseAsync() { if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } return service.list(this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<List<ProfileInner>>>>() { @Override public Observable<ServiceResponse<List<ProfileInner>>> call(Response<ResponseBody> response) { try { ServiceResponse<PageImpl<ProfileInner>> result = listDelegate(response); List<ProfileInner> items = null; if (result.body() != null) { items = result.body().items(); } ServiceResponse<List<ProfileInner>> clientResponse = new ServiceResponse<List<ProfileInner>>(items, result.response()); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<PageImpl<ProfileInner>> listDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<PageImpl<ProfileInner>, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<PageImpl<ProfileInner>>() { }.getType()) .registerError(CloudException.class) .build(response); }
Gets a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
Throws:
Returns:the ProfileInner object if successful.
/** * Gets a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the ProfileInner object if successful. */
public ProfileInner getByResourceGroup(String resourceGroupName, String profileName) { return getByResourceGroupWithServiceResponseAsync(resourceGroupName, profileName).toBlocking().single().body(); }
Gets a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Gets a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<ProfileInner> getByResourceGroupAsync(String resourceGroupName, String profileName, final ServiceCallback<ProfileInner> serviceCallback) { return ServiceFuture.fromResponse(getByResourceGroupWithServiceResponseAsync(resourceGroupName, profileName), serviceCallback); }
Gets a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
Throws:
Returns:the observable to the ProfileInner object
/** * Gets a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ProfileInner object */
public Observable<ProfileInner> getByResourceGroupAsync(String resourceGroupName, String profileName) { return getByResourceGroupWithServiceResponseAsync(resourceGroupName, profileName).map(new Func1<ServiceResponse<ProfileInner>, ProfileInner>() { @Override public ProfileInner call(ServiceResponse<ProfileInner> response) { return response.body(); } }); }
Gets a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
Throws:
Returns:the observable to the ProfileInner object
/** * Gets a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ProfileInner object */
public Observable<ServiceResponse<ProfileInner>> getByResourceGroupWithServiceResponseAsync(String resourceGroupName, String profileName) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (profileName == null) { throw new IllegalArgumentException("Parameter profileName is required and cannot be null."); } if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } return service.getByResourceGroup(resourceGroupName, profileName, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ProfileInner>>>() { @Override public Observable<ServiceResponse<ProfileInner>> call(Response<ResponseBody> response) { try { ServiceResponse<ProfileInner> clientResponse = getByResourceGroupDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<ProfileInner> getByResourceGroupDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<ProfileInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<ProfileInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Create or update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the CreateOrUpdate operation.
Throws:
Returns:the ProfileInner object if successful.
/** * Create or update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the CreateOrUpdate operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the ProfileInner object if successful. */
public ProfileInner createOrUpdate(String resourceGroupName, String profileName, ProfileInner parameters) { return createOrUpdateWithServiceResponseAsync(resourceGroupName, profileName, parameters).toBlocking().single().body(); }
Create or update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the CreateOrUpdate operation.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Create or update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the CreateOrUpdate operation. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<ProfileInner> createOrUpdateAsync(String resourceGroupName, String profileName, ProfileInner parameters, final ServiceCallback<ProfileInner> serviceCallback) { return ServiceFuture.fromResponse(createOrUpdateWithServiceResponseAsync(resourceGroupName, profileName, parameters), serviceCallback); }
Create or update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the CreateOrUpdate operation.
Throws:
Returns:the observable to the ProfileInner object
/** * Create or update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the CreateOrUpdate operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ProfileInner object */
public Observable<ProfileInner> createOrUpdateAsync(String resourceGroupName, String profileName, ProfileInner parameters) { return createOrUpdateWithServiceResponseAsync(resourceGroupName, profileName, parameters).map(new Func1<ServiceResponse<ProfileInner>, ProfileInner>() { @Override public ProfileInner call(ServiceResponse<ProfileInner> response) { return response.body(); } }); }
Create or update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the CreateOrUpdate operation.
Throws:
Returns:the observable to the ProfileInner object
/** * Create or update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the CreateOrUpdate operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ProfileInner object */
public Observable<ServiceResponse<ProfileInner>> createOrUpdateWithServiceResponseAsync(String resourceGroupName, String profileName, ProfileInner parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (profileName == null) { throw new IllegalArgumentException("Parameter profileName is required and cannot be null."); } if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (parameters == null) { throw new IllegalArgumentException("Parameter parameters is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } Validator.validate(parameters); return service.createOrUpdate(resourceGroupName, profileName, this.client.subscriptionId(), parameters, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ProfileInner>>>() { @Override public Observable<ServiceResponse<ProfileInner>> call(Response<ResponseBody> response) { try { ServiceResponse<ProfileInner> clientResponse = createOrUpdateDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<ProfileInner> createOrUpdateDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<ProfileInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<ProfileInner>() { }.getType()) .register(201, new TypeToken<ProfileInner>() { }.getType()) .registerError(CloudException.class) .build(response); }
Deletes a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile to be deleted.
  • profileName – The name of the Traffic Manager profile to be deleted.
Throws:
Returns:the DeleteOperationResultInner object if successful.
/** * Deletes a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile to be deleted. * @param profileName The name of the Traffic Manager profile to be deleted. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the DeleteOperationResultInner object if successful. */
public DeleteOperationResultInner delete(String resourceGroupName, String profileName) { return deleteWithServiceResponseAsync(resourceGroupName, profileName).toBlocking().single().body(); }
Deletes a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile to be deleted.
  • profileName – The name of the Traffic Manager profile to be deleted.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Deletes a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile to be deleted. * @param profileName The name of the Traffic Manager profile to be deleted. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<DeleteOperationResultInner> deleteAsync(String resourceGroupName, String profileName, final ServiceCallback<DeleteOperationResultInner> serviceCallback) { return ServiceFuture.fromResponse(deleteWithServiceResponseAsync(resourceGroupName, profileName), serviceCallback); }
Deletes a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile to be deleted.
  • profileName – The name of the Traffic Manager profile to be deleted.
Throws:
Returns:the observable to the DeleteOperationResultInner object
/** * Deletes a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile to be deleted. * @param profileName The name of the Traffic Manager profile to be deleted. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeleteOperationResultInner object */
public Observable<DeleteOperationResultInner> deleteAsync(String resourceGroupName, String profileName) { return deleteWithServiceResponseAsync(resourceGroupName, profileName).map(new Func1<ServiceResponse<DeleteOperationResultInner>, DeleteOperationResultInner>() { @Override public DeleteOperationResultInner call(ServiceResponse<DeleteOperationResultInner> response) { return response.body(); } }); }
Deletes a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile to be deleted.
  • profileName – The name of the Traffic Manager profile to be deleted.
Throws:
Returns:the observable to the DeleteOperationResultInner object
/** * Deletes a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile to be deleted. * @param profileName The name of the Traffic Manager profile to be deleted. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the DeleteOperationResultInner object */
public Observable<ServiceResponse<DeleteOperationResultInner>> deleteWithServiceResponseAsync(String resourceGroupName, String profileName) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (profileName == null) { throw new IllegalArgumentException("Parameter profileName is required and cannot be null."); } if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } return service.delete(resourceGroupName, profileName, this.client.subscriptionId(), this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<DeleteOperationResultInner>>>() { @Override public Observable<ServiceResponse<DeleteOperationResultInner>> call(Response<ResponseBody> response) { try { ServiceResponse<DeleteOperationResultInner> clientResponse = deleteDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<DeleteOperationResultInner> deleteDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<DeleteOperationResultInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<DeleteOperationResultInner>() { }.getType()) .register(204, new TypeToken<Void>() { }.getType()) .registerError(CloudException.class) .build(response); }
Update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the Update operation.
Throws:
Returns:the ProfileInner object if successful.
/** * Update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the Update operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @throws CloudException thrown if the request is rejected by server * @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent * @return the ProfileInner object if successful. */
public ProfileInner update(String resourceGroupName, String profileName, ProfileInner parameters) { return updateWithServiceResponseAsync(resourceGroupName, profileName, parameters).toBlocking().single().body(); }
Update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the Update operation.
  • serviceCallback – the async ServiceCallback to handle successful and failed responses.
Throws:
Returns:the ServiceFuture object
/** * Update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the Update operation. * @param serviceCallback the async ServiceCallback to handle successful and failed responses. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the {@link ServiceFuture} object */
public ServiceFuture<ProfileInner> updateAsync(String resourceGroupName, String profileName, ProfileInner parameters, final ServiceCallback<ProfileInner> serviceCallback) { return ServiceFuture.fromResponse(updateWithServiceResponseAsync(resourceGroupName, profileName, parameters), serviceCallback); }
Update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the Update operation.
Throws:
Returns:the observable to the ProfileInner object
/** * Update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the Update operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ProfileInner object */
public Observable<ProfileInner> updateAsync(String resourceGroupName, String profileName, ProfileInner parameters) { return updateWithServiceResponseAsync(resourceGroupName, profileName, parameters).map(new Func1<ServiceResponse<ProfileInner>, ProfileInner>() { @Override public ProfileInner call(ServiceResponse<ProfileInner> response) { return response.body(); } }); }
Update a Traffic Manager profile.
Params:
  • resourceGroupName – The name of the resource group containing the Traffic Manager profile.
  • profileName – The name of the Traffic Manager profile.
  • parameters – The Traffic Manager profile parameters supplied to the Update operation.
Throws:
Returns:the observable to the ProfileInner object
/** * Update a Traffic Manager profile. * * @param resourceGroupName The name of the resource group containing the Traffic Manager profile. * @param profileName The name of the Traffic Manager profile. * @param parameters The Traffic Manager profile parameters supplied to the Update operation. * @throws IllegalArgumentException thrown if parameters fail the validation * @return the observable to the ProfileInner object */
public Observable<ServiceResponse<ProfileInner>> updateWithServiceResponseAsync(String resourceGroupName, String profileName, ProfileInner parameters) { if (resourceGroupName == null) { throw new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."); } if (profileName == null) { throw new IllegalArgumentException("Parameter profileName is required and cannot be null."); } if (this.client.subscriptionId() == null) { throw new IllegalArgumentException("Parameter this.client.subscriptionId() is required and cannot be null."); } if (parameters == null) { throw new IllegalArgumentException("Parameter parameters is required and cannot be null."); } if (this.client.apiVersion() == null) { throw new IllegalArgumentException("Parameter this.client.apiVersion() is required and cannot be null."); } Validator.validate(parameters); return service.update(resourceGroupName, profileName, this.client.subscriptionId(), parameters, this.client.apiVersion(), this.client.acceptLanguage(), this.client.userAgent()) .flatMap(new Func1<Response<ResponseBody>, Observable<ServiceResponse<ProfileInner>>>() { @Override public Observable<ServiceResponse<ProfileInner>> call(Response<ResponseBody> response) { try { ServiceResponse<ProfileInner> clientResponse = updateDelegate(response); return Observable.just(clientResponse); } catch (Throwable t) { return Observable.error(t); } } }); } private ServiceResponse<ProfileInner> updateDelegate(Response<ResponseBody> response) throws CloudException, IOException, IllegalArgumentException { return this.client.restClient().responseBuilderFactory().<ProfileInner, CloudException>newInstance(this.client.serializerAdapter()) .register(200, new TypeToken<ProfileInner>() { }.getType()) .registerError(CloudException.class) .build(response); } }