Esempio n. 1
0
        public async Task <IPrivateLinkService> GetByIdAsync(string id, CancellationToken cancellationToken = default(CancellationToken))
        {
            PrivateLinkServiceInner inner = await Inner.GetAsync(
                ResourceUtils.GroupFromResourceId(id),
                ResourceUtils.NameFromResourceId(id),
                null,
                cancellationToken);

            return(inner == null ? null : WrapModel(inner));
        }
Esempio n. 2
0
 protected PrivateLinkServiceImpl WrapModel(PrivateLinkServiceInner inner)
 {
     return(new PrivateLinkServiceImpl(inner.Name, inner, manager));
 }
Esempio n. 3
0
        public async Task <IPrivateLinkService> GetByResourceGroupAsync(string resourceGroupName, string name, CancellationToken cancellationToken = default(CancellationToken))
        {
            PrivateLinkServiceInner inner = await Inner.GetAsync(resourceGroupName, name, null, cancellationToken);

            return(inner == null ? null : WrapModel(inner));
        }
Esempio n. 4
0
 /// <summary>
 /// Creates or updates an private link service in the specified resource group.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the private link service.
 /// </param>
 /// <param name='parameters'>
 /// Parameters supplied to the create or update private link service operation.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <PrivateLinkServiceInner> CreateOrUpdateAsync(this IPrivateLinkServicesOperations operations, string resourceGroupName, string serviceName, PrivateLinkServiceInner parameters, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, serviceName, parameters, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }