C# 클래스 Microsoft.Azure.Commands.LogicApp.Utilities.IntegrationAccountClient

Integration Account client class
파일 보기 프로젝트 열기: Azure/azure-powershell 1 사용 예제들

공개 메소드들

메소드 설명
CreateIntegrationAccount ( string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount ) : IntegrationAccount

Creates the integration account.

CreateIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName, IntegrationAccountAgreement integrationAccountAgreement ) : IntegrationAccountAgreement

Creates integration account agreement.

CreateIntegrationAccountCertificate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName, IntegrationAccountCertificate integrationAccountCertificate ) : IntegrationAccountCertificate

Creates integration account certificate.

CreateIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap ) : IntegrationAccountMap

Creates integration account map.

CreateIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName, IntegrationAccountPartner integrationAccountPartner ) : IntegrationAccountPartner

Creates integration account partner.

CreateIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema ) : IntegrationAccountSchema

Creates integration account schema.

GetIntegrationAccount ( string resourceGroupName, string integrationAccountName ) : IntegrationAccount

Gets the integration account.

GetIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName ) : IntegrationAccountAgreement

Gets the integration account agreement by name.

GetIntegrationAccountCallbackUrl ( string resourceGroupName, string integrationAccountName, ListCallbackUrlParameters callbackUrl ) : CallbackUrl

Gets the integration account callback URL.

GetIntegrationAccountCertifcate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName ) : IntegrationAccountCertificate

Gets the integration account certificate by name.

GetIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName ) : IntegrationAccountMap

Gets the integration account map by name.

GetIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName ) : IntegrationAccountPartner

Gets the integration account partner by name.

GetIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName ) : IntegrationAccountSchema

Gets the integration account by name.

IntegrationAccountClient ( ) : System

Creates new LogicManagement client instance.

IntegrationAccountClient ( AzureContext context ) : System

Creates new LogicManagement client instance.

IntegrationAccountClient ( ILogicManagementClient client ) : System

Creates new LogicManagement client instance.

ListIntegrationAccount ( string resourceGroupName ) : IPage

Gets the integration accounts by resource group name.

ListIntegrationAccountAgreements ( string resourceGroupName, string integrationAccountName ) : IPage

Gets the integration account agreements by resource group name.

ListIntegrationAccountCertificates ( string resourceGroupName, string integrationAccountName ) : IPage

Gets the integration account certificates by resource group name.

ListIntegrationAccountMaps ( string resourceGroupName, string integrationAccountName ) : IPage

Gets the integration account maps by resource group name.

ListIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName ) : IPage

Gets the integration account partners by resource group name.

ListIntegrationAccountSchemas ( string resourceGroupName, string integrationAccountName ) : IPage

Gets the integration accounts schema by resource group name.

RemoveIntegrationAccount ( string resourceGroupName, string integrationAccountName ) : void

Removes the specified integration account.

RemoveIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName ) : void

Removes the specified integration account agreement.

RemoveIntegrationAccountCertificate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName ) : void

Removes the specified integration account certificate.

RemoveIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName ) : void

Removes the specified integration account map.

RemoveIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName ) : void

Removes the specified integration account partner.

RemoveIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName ) : void

Removes the specified integration account schema.

UpdateIntegrationAccount ( string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount ) : IntegrationAccount

Updates the integration account.

UpdateIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName, IntegrationAccountAgreement integrationAccountAgreement ) : IntegrationAccountAgreement

Updates the integration account agreement.

UpdateIntegrationAccountCertificate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName, IntegrationAccountCertificate integrationAccountCertificate ) : IntegrationAccountCertificate

Updates the integration account certificate.

UpdateIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap ) : IntegrationAccountMap

Updates the integration account.

UpdateIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName, IntegrationAccountPartner integrationAccountPartner ) : IntegrationAccountPartner

Updates the integration account partner.

UpdateIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema ) : IntegrationAccountSchema

Updates the integration account.

비공개 메소드들

메소드 설명
DoesIntegrationAccountAgreementExist ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName ) : bool

Checks whether the integration account agreement exists or not.

DoesIntegrationAccountCertificateExist ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName ) : bool

Checks whether the integration account certifcate exists or not.

DoesIntegrationAccountExist ( string resourceGroupName, string integrationAccountName ) : bool

Checks whether the integration account schema exists or not.

DoesIntegrationAccountMapExist ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName ) : bool

Checks whether the integration account map exists or not.

DoesIntegrationAccountPartnerExist ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName ) : bool

Checks whether the integration account partner exists or not.

DoesIntegrationAccountSchemaExist ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName ) : bool

Checks whether the integration account schema exists or not.

메소드 상세

CreateIntegrationAccount() 공개 메소드

Creates the integration account.
public CreateIntegrationAccount ( string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount ) : IntegrationAccount
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccount IntegrationAccount The integration account object.
리턴 IntegrationAccount

CreateIntegrationAccountAgreement() 공개 메소드

Creates integration account agreement.
public CreateIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName, IntegrationAccountAgreement integrationAccountAgreement ) : IntegrationAccountAgreement
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountAgreementName string The integration account agreement name.
integrationAccountAgreement IntegrationAccountAgreement The integration account agreement object.
리턴 IntegrationAccountAgreement

CreateIntegrationAccountCertificate() 공개 메소드

Creates integration account certificate.
public CreateIntegrationAccountCertificate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName, IntegrationAccountCertificate integrationAccountCertificate ) : IntegrationAccountCertificate
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountCertificateName string The integration account certificate name.
integrationAccountCertificate IntegrationAccountCertificate The integration account certificate object.
리턴 IntegrationAccountCertificate

CreateIntegrationAccountMap() 공개 메소드

Creates integration account map.
public CreateIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap ) : IntegrationAccountMap
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountMapName string The integration account map name.
integrationAccountMap IntegrationAccountMap The integration account map object.
리턴 IntegrationAccountMap

CreateIntegrationAccountPartner() 공개 메소드

Creates integration account partner.
public CreateIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName, IntegrationAccountPartner integrationAccountPartner ) : IntegrationAccountPartner
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountPartnerName string The integration account partner name.
integrationAccountPartner IntegrationAccountPartner The integration account partner object.
리턴 IntegrationAccountPartner

CreateIntegrationAccountSchema() 공개 메소드

Creates integration account schema.
public CreateIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema ) : IntegrationAccountSchema
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountSchemaName string The integration account name.
integrationAccountSchema IntegrationAccountSchema The integration account schema object.
리턴 IntegrationAccountSchema

GetIntegrationAccount() 공개 메소드

Gets the integration account.
public GetIntegrationAccount ( string resourceGroupName, string integrationAccountName ) : IntegrationAccount
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
리턴 IntegrationAccount

GetIntegrationAccountAgreement() 공개 메소드

Gets the integration account agreement by name.
public GetIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName ) : IntegrationAccountAgreement
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountAgreementName string The integration account agreement name.
리턴 IntegrationAccountAgreement

GetIntegrationAccountCallbackUrl() 공개 메소드

Gets the integration account callback URL.
public GetIntegrationAccountCallbackUrl ( string resourceGroupName, string integrationAccountName, ListCallbackUrlParameters callbackUrl ) : CallbackUrl
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
callbackUrl ListCallbackUrlParameters The integration account callback URL.
리턴 CallbackUrl

GetIntegrationAccountCertifcate() 공개 메소드

Gets the integration account certificate by name.
public GetIntegrationAccountCertifcate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName ) : IntegrationAccountCertificate
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountCertificateName string The integration account certificate name.
리턴 IntegrationAccountCertificate

GetIntegrationAccountMap() 공개 메소드

Gets the integration account map by name.
public GetIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName ) : IntegrationAccountMap
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountMapName string The integration account map name.
리턴 IntegrationAccountMap

GetIntegrationAccountPartner() 공개 메소드

Gets the integration account partner by name.
public GetIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName ) : IntegrationAccountPartner
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountPartnerName string The integration account partner name.
리턴 IntegrationAccountPartner

GetIntegrationAccountSchema() 공개 메소드

Gets the integration account by name.
public GetIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName ) : IntegrationAccountSchema
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountSchemaName string The integration account schema name.
리턴 IntegrationAccountSchema

IntegrationAccountClient() 공개 메소드

Creates new LogicManagement client instance.
public IntegrationAccountClient ( ) : System
리턴 System

IntegrationAccountClient() 공개 메소드

Creates new LogicManagement client instance.
public IntegrationAccountClient ( AzureContext context ) : System
context Microsoft.Azure.Commands.Common.Authentication.Models.AzureContext The Azure context instance
리턴 System

IntegrationAccountClient() 공개 메소드

Creates new LogicManagement client instance.
public IntegrationAccountClient ( ILogicManagementClient client ) : System
client ILogicManagementClient client reference
리턴 System

ListIntegrationAccount() 공개 메소드

Gets the integration accounts by resource group name.
public ListIntegrationAccount ( string resourceGroupName ) : IPage
resourceGroupName string The integration account resource group name.
리턴 IPage

ListIntegrationAccountAgreements() 공개 메소드

Gets the integration account agreements by resource group name.
public ListIntegrationAccountAgreements ( string resourceGroupName, string integrationAccountName ) : IPage
resourceGroupName string The integration account agreement resource group name.
integrationAccountName string The integration account name.
리턴 IPage

ListIntegrationAccountCertificates() 공개 메소드

Gets the integration account certificates by resource group name.
public ListIntegrationAccountCertificates ( string resourceGroupName, string integrationAccountName ) : IPage
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
리턴 IPage

ListIntegrationAccountMaps() 공개 메소드

Gets the integration account maps by resource group name.
public ListIntegrationAccountMaps ( string resourceGroupName, string integrationAccountName ) : IPage
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
리턴 IPage

ListIntegrationAccountPartner() 공개 메소드

Gets the integration account partners by resource group name.
public ListIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName ) : IPage
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
리턴 IPage

ListIntegrationAccountSchemas() 공개 메소드

Gets the integration accounts schema by resource group name.
public ListIntegrationAccountSchemas ( string resourceGroupName, string integrationAccountName ) : IPage
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
리턴 IPage

RemoveIntegrationAccount() 공개 메소드

Removes the specified integration account.
public RemoveIntegrationAccount ( string resourceGroupName, string integrationAccountName ) : void
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
리턴 void

RemoveIntegrationAccountAgreement() 공개 메소드

Removes the specified integration account agreement.
public RemoveIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName ) : void
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountAgreementName string The integration account agreement name.
리턴 void

RemoveIntegrationAccountCertificate() 공개 메소드

Removes the specified integration account certificate.
public RemoveIntegrationAccountCertificate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName ) : void
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountCertificateName string The integration account certificate name.
리턴 void

RemoveIntegrationAccountMap() 공개 메소드

Removes the specified integration account map.
public RemoveIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName ) : void
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountMapName string The integration account map name.
리턴 void

RemoveIntegrationAccountPartner() 공개 메소드

Removes the specified integration account partner.
public RemoveIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName ) : void
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountPartnerName string The integration account partner name.
리턴 void

RemoveIntegrationAccountSchema() 공개 메소드

Removes the specified integration account schema.
public RemoveIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName ) : void
resourceGroupName string The integration account resource group name.
integrationAccountName string The integration account name.
integrationAccountSchemaName string The integration account schema name.
리턴 void

UpdateIntegrationAccount() 공개 메소드

Updates the integration account.
public UpdateIntegrationAccount ( string resourceGroupName, string integrationAccountName, IntegrationAccount integrationAccount ) : IntegrationAccount
resourceGroupName string The integration account resource group name.
integrationAccountName string Integration account name.
integrationAccount IntegrationAccount Integration account object.
리턴 IntegrationAccount

UpdateIntegrationAccountAgreement() 공개 메소드

Updates the integration account agreement.
public UpdateIntegrationAccountAgreement ( string resourceGroupName, string integrationAccountName, string integrationAccountAgreementName, IntegrationAccountAgreement integrationAccountAgreement ) : IntegrationAccountAgreement
resourceGroupName string The integration account agreement resource group.
integrationAccountName string The integration account name.
integrationAccountAgreementName string The integration account agreement name.
integrationAccountAgreement IntegrationAccountAgreement The integration account agreement object.
리턴 IntegrationAccountAgreement

UpdateIntegrationAccountCertificate() 공개 메소드

Updates the integration account certificate.
public UpdateIntegrationAccountCertificate ( string resourceGroupName, string integrationAccountName, string integrationAccountCertificateName, IntegrationAccountCertificate integrationAccountCertificate ) : IntegrationAccountCertificate
resourceGroupName string The integration account certificate resource group.
integrationAccountName string The integration account name.
integrationAccountCertificateName string The integration account certificate name.
integrationAccountCertificate IntegrationAccountCertificate The integration account certificate object.
리턴 IntegrationAccountCertificate

UpdateIntegrationAccountMap() 공개 메소드

Updates the integration account.
public UpdateIntegrationAccountMap ( string resourceGroupName, string integrationAccountName, string integrationAccountMapName, IntegrationAccountMap integrationAccountMap ) : IntegrationAccountMap
resourceGroupName string The integration account map resource group.
integrationAccountName string The integration account name.
integrationAccountMapName string The integration account map name.
integrationAccountMap IntegrationAccountMap The integration account map object.
리턴 IntegrationAccountMap

UpdateIntegrationAccountPartner() 공개 메소드

Updates the integration account partner.
public UpdateIntegrationAccountPartner ( string resourceGroupName, string integrationAccountName, string integrationAccountPartnerName, IntegrationAccountPartner integrationAccountPartner ) : IntegrationAccountPartner
resourceGroupName string The integration account partner resource group.
integrationAccountName string The integration account name.
integrationAccountPartnerName string The integration account partner name.
integrationAccountPartner IntegrationAccountPartner The integration account partner object.
리턴 IntegrationAccountPartner

UpdateIntegrationAccountSchema() 공개 메소드

Updates the integration account.
public UpdateIntegrationAccountSchema ( string resourceGroupName, string integrationAccountName, string integrationAccountSchemaName, IntegrationAccountSchema integrationAccountSchema ) : IntegrationAccountSchema
resourceGroupName string The integration account schema resource group.
integrationAccountName string The integration account name.
integrationAccountSchemaName string The integration account schema name.
integrationAccountSchema IntegrationAccountSchema The integration account schema object.
리턴 IntegrationAccountSchema