共用方式為


SecretValueOperations class

代表 SecretValueOperations 的類別。

建構函式

SecretValueOperations(ServiceFabricMeshManagementClientContext)

建立 SecretValueOperations。

方法

create(string, string, string, SecretValueResourceDescription, RequestOptionsBase)

建立指定秘密資源的新值。 值的名稱通常是版本識別碼。 建立之後,就無法變更值。

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

刪除以名稱識別的祕密值資源。 資源的名稱一般是與該值相關聯的版本。 如果指定值正在使用中,則會刪除失敗。

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

取得指定之具名秘密值資源的相關資訊。 此資訊不包含秘密的實際值。

get(string, string, string, RequestOptionsBase, ServiceCallback<SecretValueResourceDescription>)
get(string, string, string, ServiceCallback<SecretValueResourceDescription>)
list(string, string, RequestOptionsBase)

取得指定祕密資源所有祕密值資源的相關資訊。 資訊包含祕密值資源的名稱,但並不包含實際值。

list(string, string, RequestOptionsBase, ServiceCallback<SecretValueResourceDescriptionList>)
list(string, string, ServiceCallback<SecretValueResourceDescriptionList>)
listNext(string, RequestOptionsBase)

取得指定祕密資源所有祕密值資源的相關資訊。 資訊包含祕密值資源的名稱,但並不包含實際值。

listNext(string, RequestOptionsBase, ServiceCallback<SecretValueResourceDescriptionList>)
listNext(string, ServiceCallback<SecretValueResourceDescriptionList>)
listValue(string, string, string, RequestOptionsBase)

列出秘密資源所指定具名值的解密值。 這是特殊許可權的作業。

listValue(string, string, string, RequestOptionsBase, ServiceCallback<SecretValue>)
listValue(string, string, string, ServiceCallback<SecretValue>)

建構函式詳細資料

SecretValueOperations(ServiceFabricMeshManagementClientContext)

建立 SecretValueOperations。

new SecretValueOperations(client: ServiceFabricMeshManagementClientContext)

參數

client
ServiceFabricMeshManagementClientContext

服務用戶端的參考。

方法詳細資料

create(string, string, string, SecretValueResourceDescription, RequestOptionsBase)

建立指定秘密資源的新值。 值的名稱通常是版本識別碼。 建立之後,就無法變更值。

function create(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, secretValueResourceDescription: SecretValueResourceDescription, options?: RequestOptionsBase): Promise<SecretValueCreateResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

secretValueResourceDescription
SecretValueResourceDescription

建立秘密資源值的描述。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.SecretValueCreateResponse>

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

function create(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, secretValueResourceDescription: SecretValueResourceDescription, options: RequestOptionsBase, callback: ServiceCallback<SecretValueResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

secretValueResourceDescription
SecretValueResourceDescription

建立秘密資源值的描述。

options
RequestOptionsBase

選擇性參數

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

function create(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, secretValueResourceDescription: SecretValueResourceDescription, callback: ServiceCallback<SecretValueResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

secretValueResourceDescription
SecretValueResourceDescription

建立秘密資源值的描述。

deleteMethod(string, string, string, RequestOptionsBase)

刪除以名稱識別的祕密值資源。 資源的名稱一般是與該值相關聯的版本。 如果指定值正在使用中,則會刪除失敗。

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

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

options
RequestOptionsBase

選擇性參數

傳回

Promise<RestResponse>

Promise < msRest.RestResponse>

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

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

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

options
RequestOptionsBase

選擇性參數

callback

ServiceCallback<void>

回呼

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

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

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

callback

ServiceCallback<void>

回呼

get(string, string, string, RequestOptionsBase)

取得指定之具名秘密值資源的相關資訊。 此資訊不包含秘密的實際值。

function get(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: RequestOptionsBase): Promise<SecretValueGetResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.SecretValueGetResponse>

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

function get(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options: RequestOptionsBase, callback: ServiceCallback<SecretValueResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

options
RequestOptionsBase

選擇性參數

get(string, string, string, ServiceCallback<SecretValueResourceDescription>)

function get(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, callback: ServiceCallback<SecretValueResourceDescription>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

list(string, string, RequestOptionsBase)

取得指定祕密資源所有祕密值資源的相關資訊。 資訊包含祕密值資源的名稱,但並不包含實際值。

function list(resourceGroupName: string, secretResourceName: string, options?: RequestOptionsBase): Promise<SecretValueListResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.SecretValueListResponse>

list(string, string, RequestOptionsBase, ServiceCallback<SecretValueResourceDescriptionList>)

function list(resourceGroupName: string, secretResourceName: string, options: RequestOptionsBase, callback: ServiceCallback<SecretValueResourceDescriptionList>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

options
RequestOptionsBase

選擇性參數

list(string, string, ServiceCallback<SecretValueResourceDescriptionList>)

function list(resourceGroupName: string, secretResourceName: string, callback: ServiceCallback<SecretValueResourceDescriptionList>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

listNext(string, RequestOptionsBase)

取得指定祕密資源所有祕密值資源的相關資訊。 資訊包含祕密值資源的名稱,但並不包含實際值。

function listNext(nextPageLink: string, options?: RequestOptionsBase): Promise<SecretValueListNextResponse>

參數

nextPageLink

string

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

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.SecretValueListNextResponse>

listNext(string, RequestOptionsBase, ServiceCallback<SecretValueResourceDescriptionList>)

function listNext(nextPageLink: string, options: RequestOptionsBase, callback: ServiceCallback<SecretValueResourceDescriptionList>)

參數

nextPageLink

string

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

options
RequestOptionsBase

選擇性參數

listNext(string, ServiceCallback<SecretValueResourceDescriptionList>)

function listNext(nextPageLink: string, callback: ServiceCallback<SecretValueResourceDescriptionList>)

參數

nextPageLink

string

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

listValue(string, string, string, RequestOptionsBase)

列出秘密資源所指定具名值的解密值。 這是特殊許可權的作業。

function listValue(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: RequestOptionsBase): Promise<SecretValueListValueResponse>

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

options
RequestOptionsBase

選擇性參數

傳回

Promise < Models.SecretValueListValueResponse>

listValue(string, string, string, RequestOptionsBase, ServiceCallback<SecretValue>)

function listValue(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options: RequestOptionsBase, callback: ServiceCallback<SecretValue>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

options
RequestOptionsBase

選擇性參數

callback

ServiceCallback<SecretValue>

回呼

listValue(string, string, string, ServiceCallback<SecretValue>)

function listValue(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, callback: ServiceCallback<SecretValue>)

參數

resourceGroupName

string

Azure 資源群組名稱

secretResourceName

string

祕密資源的名稱。

secretValueResourceName

string

秘密資源值的名稱,通常是值的版本識別碼。

callback

ServiceCallback<SecretValue>

回呼