com.microsoft.azure.management.apigeneration.Method类的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(4.4k)|赞(0)|评价(0)|浏览(86)

本文整理了Java中com.microsoft.azure.management.apigeneration.Method类的一些代码示例,展示了Method类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Method类的具体详情如下:
包路径:com.microsoft.azure.management.apigeneration.Method
类名称:Method

Method介绍

暂无

代码示例

代码示例来源:origin: com.microsoft.azure/azure-mgmt-resources

/**
   * Begins an update for a new resource.
   * <p>
   * This is the beginning of the builder pattern used to update top level resources
   * in Azure. The final method completing the definition and starting the actual resource creation
   * process in Azure is {@link Appliable#apply()}.
   *
   * @return the stage of new resource update
   */
  @Method
  T update();
}

代码示例来源:origin: com.microsoft.azure/azure-mgmt-resources

/**
 * Cancel a currently running template deployment asynchronously.
 *
 * @param callback the callback to call on success or failure
 * @return a handle to cancel the request
 */
@Method
ServiceFuture<Void> cancelAsync(ServiceCallback<Void> callback);

代码示例来源:origin: com.microsoft.azure/azure-mgmt-resources

/**
 * Exports a deployment template asynchronously.
 *
 * @param callback the callback to call on success or failure with export result as parameter
 * @return a handle to cancel the request
 */
@Method
ServiceFuture<DeploymentExportResult> exportTemplateAsync(ServiceCallback<DeploymentExportResult> callback);

代码示例来源:origin: com.microsoft.azure/azure-mgmt-resources

/**
 * Execute the update request asynchronously.
 *
 * @return the handle to the REST call
 */
@Method
Observable<T> applyAsync();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-resources

/**
 * Refreshes the resource to sync with Azure.
 *
 * @return the refreshed resource
 */
@Method
T refresh();

代码示例来源:origin: com.microsoft.azure/azure-arm-client-runtime

/**
   * Attaches the child definition to the parent resource definition.
   * @return the next stage of the parent definition
   */
  @Method
  ParentT attach();
}

代码示例来源:origin: com.microsoft.azure/azure-arm-client-runtime

/**
 * Execute the request asynchronously.
 *
 * @return the handle to the REST call
 */
@Method
Observable<T> executeAsync();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage

/**
 * Specifies the storage account kind to be "Storage", the kind for
 * general purposes.
 *
 * @return the next stage of storage account definition
 */
@Method
WithCreate withGeneralPurposeAccountKind();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * Resets the primary of the virtual network gateway.
 */
@Method
void reset();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * Resets the primary of the virtual network gateway asynchronously.
 * @return a representation of the deferred computation of this call
 */
@Method
Completable resetAsync();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
   * Remove route filter from IPv6 configuration.
   * @return the next stage of the definition
   */
  @Method
  WithAttach<ParentT> withoutRouteFilter();
}

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
   * Disables cookie based affinity.
   * @return the next stage of the update.
   */
  @Method
  Update withoutCookieBasedAffinity();
}

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * Enables cookie based affinity.
 * @return the next stage of the update
 */
@Method
WithAttach<ReturnT> withCookieBasedAffinity();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * First step specifying parameters to get topology of a resource group.
 * @return current network topology by resource group
 */
@Method
Topology.DefinitionStages.WithTargetResourceGroup topology();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * @return true if the peering enables IP addresses within the peered networks to be accessible from both networks, otherwise false
 * <p>
 * (Note this method makes a separate call to Azure.)
 */
@Method
boolean checkAccessBetweenNetworks();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * Stops a specified connection monitor asynchronously.
 * @return the handle to the REST call
 */
@Method
Completable stopAsync();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * Starts a specified connection monitor asynchronously.
 * @return the handle to the REST call
 */
@Method
Completable startAsync();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
   * Specifies that no private (internal) frontend should be enabled.
   * @return the next stage of the definition
   */
  @Method
  WithCreate withoutPrivateFrontend();
}

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
 * Begins the definition of the default public front end IP configuration, creating one if it does not already exist.
 * @return the first stage of a front end definition
 */
@Method
ApplicationGatewayFrontend.UpdateDefinitionStages.Blank<Update> definePublicFrontend();

代码示例来源:origin: com.microsoft.azure/azure-mgmt-network

/**
   * Specifies that the listener is for the HTTPS protocol.
   * @return the next stage of the update
   */
  @Method
  WithSslCertificate withHttps();
}

相关文章

微信公众号

最新文章

更多

Method类方法