本文整理了Java中com.microsoft.azure.management.apigeneration.Method.<init>()
方法的一些代码示例,展示了Method.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Method.<init>()
方法的具体详情如下:
包路径:com.microsoft.azure.management.apigeneration.Method
类名称:Method
方法名:<init>
暂无
代码示例来源: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
/**
* Enables cookie based affinity.
* @return the next stage of the update
*/
@Method
WithAttach<ReturnT> withCookieBasedAffinity();
代码示例来源: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-storage
/**
* Enables encryption for blob service.
* @deprecated use {@link WithEncryption#withBlobEncryption()} instead.
*
* @return the next stage of storage account update
*/
@Deprecated
@Method
Update withEncryption();
代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage
/**
* Disables encryption for file service.
*
* @return he next stage of storage account definition
*/
@Beta(Beta.SinceVersion.V1_5_0)
@Method
WithCreate withoutFileEncryption();
代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage
/**
* Specifies that only https traffic should be allowed to storage account.
*
* @return the next stage of storage account definition
*/
@Beta(Beta.SinceVersion.V1_5_0)
@Method
WithCreate withOnlyHttpsTraffic();
}
代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage
/**
* Specifies that by default access to storage account should be allowed from all networks.
*
* @return the next stage of storage account definition
*/
@Beta(Beta.SinceVersion.V1_5_0)
@Method
WithCreate withAccessFromAllNetworks();
代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage
/**
* Specifies that read access to the storage metrics should be allowed from any network.
*
* @return the next stage of storage account definition
*/
@Beta(Beta.SinceVersion.V1_5_0)
@Method
WithCreate withReadAccessToMetricsFromAnyNetwork();
代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage
/**
* Specifies that by default access to storage account should be allowed from
* all networks.
*
* @return the next stage of storage account update
*/
@Beta(Beta.SinceVersion.V1_5_0)
@Method
Update withAccessFromAllNetworks();
代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage
/**
* Specifies that by default access to storage account should be denied from
* all networks except from those networks specified via
* {@link WithNetworkAccess#withAccessFromNetworkSubnet(String)},
* {@link WithNetworkAccess#withAccessFromIpAddress(String)} and
* {@link WithNetworkAccess#withAccessFromIpAddressRange(String)}.
*
* @return the next stage of storage account update
*/
@Beta(Beta.SinceVersion.V1_5_0)
@Method
Update withAccessFromSelectedNetworks();
代码示例来源:origin: com.microsoft.azure/azure-mgmt-storage
/**
* Specifies that access to the storage account should be allowed from applications running on
* Microsoft Azure services.
*
* @return the next stage of storage account definition
*/
@Beta(Beta.SinceVersion.V1_5_0)
@Method
Update withAccessFromAzureServices();
代码示例来源:origin: com.microsoft.azure/azure-mgmt-network
/**
* Checks the backend health asynchronously.
* @return a representation of the future computation of this call
*/
@Method
@Beta(SinceVersion.V1_4_0)
Observable<Map<String, ApplicationGatewayBackendHealth>> checkBackendHealthAsync();
内容来源于网络,如有侵权,请联系作者删除!