共用方式為


Application class

代表應用程式的類別。

建構函式

Application(ServiceFabricMeshManagementClientContext)

建立應用程式。

方法

create(string, string, ApplicationResourceDescription, RequestOptionsBase)

建立具有指定名稱、描述和屬性的應用程式資源。 如果具有相同名稱的應用程式資源存在,則會使用指定的描述和屬性來更新它。

create(string, string, ApplicationResourceDescription, RequestOptionsBase, ServiceCallback<ApplicationResourceDescription>)
create(string, string, ApplicationResourceDescription, ServiceCallback<ApplicationResourceDescription>)
deleteMethod(string, string, RequestOptionsBase)

刪除名稱所識別的應用程式資源。

deleteMethod(string, string, RequestOptionsBase, ServiceCallback<void>)
deleteMethod(string, string, ServiceCallback<void>)
get(string, string, RequestOptionsBase)

取得具有指定名稱之應用程式資源的相關資訊。 此資訊包括應用程式的描述和其他屬性。

get(string, string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescription>)
get(string, string, ServiceCallback<ApplicationResourceDescription>)
listByResourceGroup(string, RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 資訊包括應用程式的描述與其他屬性。

listByResourceGroup(string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)
listByResourceGroup(string, ServiceCallback<ApplicationResourceDescriptionList>)
listByResourceGroupNext(string, RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 資訊包括應用程式的描述與其他屬性。

listByResourceGroupNext(string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)
listByResourceGroupNext(string, ServiceCallback<ApplicationResourceDescriptionList>)
listBySubscription(RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 此資訊包括應用程式的描述和其他屬性。

listBySubscription(RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)
listBySubscription(ServiceCallback<ApplicationResourceDescriptionList>)
listBySubscriptionNext(string, RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 此資訊包括應用程式的描述和其他屬性。

listBySubscriptionNext(string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)
listBySubscriptionNext(string, ServiceCallback<ApplicationResourceDescriptionList>)

建構函式詳細資料

Application(ServiceFabricMeshManagementClientContext)

建立應用程式。

new Application(client: ServiceFabricMeshManagementClientContext)

參數

client
ServiceFabricMeshManagementClientContext

服務用戶端的參考。

方法詳細資料

create(string, string, ApplicationResourceDescription, RequestOptionsBase)

建立具有指定名稱、描述和屬性的應用程式資源。 如果具有相同名稱的應用程式資源存在,則會使用指定的描述和屬性來更新它。

function create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, options?: RequestOptionsBase): Promise<ApplicationCreateResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

applicationResourceDescription
ApplicationResourceDescription

建立應用程式資源的描述。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.ApplicationCreateResponse>

create(string, string, ApplicationResourceDescription, RequestOptionsBase, ServiceCallback<ApplicationResourceDescription>)

function create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, options: RequestOptionsBase, callback: ServiceCallback<ApplicationResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

applicationResourceDescription
ApplicationResourceDescription

建立應用程式資源的描述。

options
RequestOptionsBase

選擇性參數

create(string, string, ApplicationResourceDescription, ServiceCallback<ApplicationResourceDescription>)

function create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, callback: ServiceCallback<ApplicationResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

applicationResourceDescription
ApplicationResourceDescription

建立應用程式資源的描述。

deleteMethod(string, string, RequestOptionsBase)

刪除名稱所識別的應用程式資源。

function deleteMethod(resourceGroupName: string, applicationResourceName: string, options?: RequestOptionsBase): Promise<RestResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

options
RequestOptionsBase

選擇性參數

傳回

Promise<RestResponse>

Promise < msRest.RestResponse>

deleteMethod(string, string, RequestOptionsBase, ServiceCallback<void>)

function deleteMethod(resourceGroupName: string, applicationResourceName: string, options: RequestOptionsBase, callback: ServiceCallback<void>)

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

options
RequestOptionsBase

選擇性參數

callback

ServiceCallback<void>

回呼

deleteMethod(string, string, ServiceCallback<void>)

function deleteMethod(resourceGroupName: string, applicationResourceName: string, callback: ServiceCallback<void>)

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

callback

ServiceCallback<void>

回呼

get(string, string, RequestOptionsBase)

取得具有指定名稱之應用程式資源的相關資訊。 此資訊包括應用程式的描述和其他屬性。

function get(resourceGroupName: string, applicationResourceName: string, options?: RequestOptionsBase): Promise<ApplicationGetResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.ApplicationGetResponse>

get(string, string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescription>)

function get(resourceGroupName: string, applicationResourceName: string, options: RequestOptionsBase, callback: ServiceCallback<ApplicationResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

options
RequestOptionsBase

選擇性參數

get(string, string, ServiceCallback<ApplicationResourceDescription>)

function get(resourceGroupName: string, applicationResourceName: string, callback: ServiceCallback<ApplicationResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

applicationResourceName

string

應用程式的身分識別。

listByResourceGroup(string, RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 資訊包括應用程式的描述與其他屬性。

function listByResourceGroup(resourceGroupName: string, options?: RequestOptionsBase): Promise<ApplicationListByResourceGroupResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.ApplicationListByResourceGroupResponse>

listByResourceGroup(string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)

function listByResourceGroup(resourceGroupName: string, options: RequestOptionsBase, callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

resourceGroupName

string

Azure 資源群組名稱

options
RequestOptionsBase

選擇性參數

listByResourceGroup(string, ServiceCallback<ApplicationResourceDescriptionList>)

function listByResourceGroup(resourceGroupName: string, callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

resourceGroupName

string

Azure 資源群組名稱

listByResourceGroupNext(string, RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 資訊包括應用程式的描述與其他屬性。

function listByResourceGroupNext(nextPageLink: string, options?: RequestOptionsBase): Promise<ApplicationListByResourceGroupNextResponse>

參數

nextPageLink

string

上一次成功呼叫 List 作業的 NextLink。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.ApplicationListByResourceGroupNextResponse>

listByResourceGroupNext(string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)

function listByResourceGroupNext(nextPageLink: string, options: RequestOptionsBase, callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

nextPageLink

string

上一次成功呼叫 List 作業的 NextLink。

options
RequestOptionsBase

選擇性參數

listByResourceGroupNext(string, ServiceCallback<ApplicationResourceDescriptionList>)

function listByResourceGroupNext(nextPageLink: string, callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

nextPageLink

string

上一次成功呼叫 List 作業的 NextLink。

listBySubscription(RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 此資訊包括應用程式的描述和其他屬性。

function listBySubscription(options?: RequestOptionsBase): Promise<ApplicationListBySubscriptionResponse>

參數

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.ApplicationListBySubscriptionResponse>

listBySubscription(RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)

function listBySubscription(options: RequestOptionsBase, callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

options
RequestOptionsBase

選擇性參數

listBySubscription(ServiceCallback<ApplicationResourceDescriptionList>)

function listBySubscription(callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

listBySubscriptionNext(string, RequestOptionsBase)

可取得指定資源群組中所有應用程式資源的相關資訊。 此資訊包括應用程式的描述和其他屬性。

function listBySubscriptionNext(nextPageLink: string, options?: RequestOptionsBase): Promise<ApplicationListBySubscriptionNextResponse>

參數

nextPageLink

string

上一次成功呼叫 List 作業的 NextLink。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.ApplicationListBySubscriptionNextResponse>

listBySubscriptionNext(string, RequestOptionsBase, ServiceCallback<ApplicationResourceDescriptionList>)

function listBySubscriptionNext(nextPageLink: string, options: RequestOptionsBase, callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

nextPageLink

string

上一次成功呼叫 List 作業的 NextLink。

options
RequestOptionsBase

選擇性參數

listBySubscriptionNext(string, ServiceCallback<ApplicationResourceDescriptionList>)

function listBySubscriptionNext(nextPageLink: string, callback: ServiceCallback<ApplicationResourceDescriptionList>)

參數

nextPageLink

string

上一次成功呼叫 List 作業的 NextLink。