5.0.0 • Published 5 years ago

@datafire/azure_logic v5.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

@datafire/azure_logic

Client library for LogicManagementClient

Installation and Usage

npm install --save @datafire/azure_logic
let azure_logic = require('@datafire/azure_logic').create({
  access_token: "",
  refresh_token: "",
  client_id: "",
  client_secret: "",
  redirect_uri: ""
});

.then(data => {
  console.log(data);
});

Description

REST API for Azure Logic Apps.

Actions

Operations_List

Lists all of the available Logic REST API operations.

azure_logic.Operations_List({
  "api-version": ""
}, context)

Input

  • input object
    • api-version required string: The API version.

Output

IntegrationAccounts_ListBySubscription

Gets a list of integration accounts by subscription.

azure_logic.IntegrationAccounts_ListBySubscription({
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.

Output

IntegrationServiceEnvironments_ListBySubscription

Gets a list of integration service environments by subscription.

azure_logic.IntegrationServiceEnvironments_ListBySubscription({
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.

Output

Workflows_ListBySubscription

Gets a list of workflows by subscription.

azure_logic.Workflows_ListBySubscription({
  "subscriptionId": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: State, Trigger, and ReferencedResourceId.

Output

IntegrationAccounts_ListByResourceGroup

Gets a list of integration accounts by resource group.

azure_logic.IntegrationAccounts_ListByResourceGroup({
  "subscriptionId": "",
  "resourceGroupName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.

Output

IntegrationAccounts_Delete

Deletes an integration account.

azure_logic.IntegrationAccounts_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccounts_Get

Gets an integration account.

azure_logic.IntegrationAccounts_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.

Output

IntegrationAccounts_Update

Updates an integration account.

azure_logic.IntegrationAccounts_Update({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": "",
  "integrationAccount": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • integrationAccount required IntegrationAccount

Output

IntegrationAccounts_CreateOrUpdate

Creates or updates an integration account.

azure_logic.IntegrationAccounts_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": "",
  "integrationAccount": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • integrationAccount required IntegrationAccount

Output

IntegrationAccountAgreements_List

Gets a list of integration account agreements.

azure_logic.IntegrationAccountAgreements_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: AgreementType.

Output

IntegrationAccountAgreements_Delete

Deletes an integration account agreement.

azure_logic.IntegrationAccountAgreements_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "agreementName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • agreementName required string: The integration account agreement name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountAgreements_Get

Gets an integration account agreement.

azure_logic.IntegrationAccountAgreements_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "agreementName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • agreementName required string: The integration account agreement name.
    • api-version required string: The API version.

Output

IntegrationAccountAgreements_CreateOrUpdate

Creates or updates an integration account agreement.

azure_logic.IntegrationAccountAgreements_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "agreementName": "",
  "api-version": "",
  "agreement": {
    "properties": {
      "hostPartner": "",
      "guestPartner": "",
      "hostIdentity": {
        "qualifier": "",
        "value": ""
      },
      "guestIdentity": {
        "qualifier": "",
        "value": ""
      },
      "agreementType": "",
      "content": {}
    }
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • agreementName required string: The integration account agreement name.
    • api-version required string: The API version.
    • agreement required IntegrationAccountAgreement

Output

IntegrationAccountAgreements_ListContentCallbackUrl

Get the content callback url.

azure_logic.IntegrationAccountAgreements_ListContentCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "agreementName": "",
  "api-version": "",
  "listContentCallbackUrl": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • agreementName required string: The integration account agreement name.
    • api-version required string: The API version.
    • listContentCallbackUrl required GetCallbackUrlParameters

Output

IntegrationAccountAssemblies_List

List the assemblies for an integration account.

azure_logic.IntegrationAccountAssemblies_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.

Output

IntegrationAccountAssemblies_Delete

Delete an assembly for an integration account.

azure_logic.IntegrationAccountAssemblies_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "assemblyArtifactName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • assemblyArtifactName required string: The assembly artifact name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountAssemblies_Get

Get an assembly for an integration account.

azure_logic.IntegrationAccountAssemblies_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "assemblyArtifactName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • assemblyArtifactName required string: The assembly artifact name.
    • api-version required string: The API version.

Output

IntegrationAccountAssemblies_CreateOrUpdate

Create or update an assembly for an integration account.

azure_logic.IntegrationAccountAssemblies_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "assemblyArtifactName": "",
  "assemblyArtifact": {
    "properties": {
      "assemblyName": ""
    }
  },
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • assemblyArtifactName required string: The assembly artifact name.
    • assemblyArtifact required AssemblyDefinition
    • api-version required string: The API version.

Output

IntegrationAccountAssemblies_ListContentCallbackUrl

Get the content callback url for an integration account assembly.

azure_logic.IntegrationAccountAssemblies_ListContentCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "assemblyArtifactName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • assemblyArtifactName required string: The assembly artifact name.
    • api-version required string: The API version.

Output

IntegrationAccountBatchConfigurations_List

List the batch configurations for an integration account.

azure_logic.IntegrationAccountBatchConfigurations_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.

Output

IntegrationAccountBatchConfigurations_Delete

Delete a batch configuration for an integration account.

azure_logic.IntegrationAccountBatchConfigurations_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "batchConfigurationName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • batchConfigurationName required string: The batch configuration name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountBatchConfigurations_Get

Get a batch configuration for an integration account.

azure_logic.IntegrationAccountBatchConfigurations_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "batchConfigurationName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • batchConfigurationName required string: The batch configuration name.
    • api-version required string: The API version.

Output

IntegrationAccountBatchConfigurations_CreateOrUpdate

Create or update a batch configuration for an integration account.

azure_logic.IntegrationAccountBatchConfigurations_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "batchConfigurationName": "",
  "batchConfiguration": {
    "properties": {
      "batchGroupName": "",
      "releaseCriteria": {}
    }
  },
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • batchConfigurationName required string: The batch configuration name.
    • batchConfiguration required BatchConfiguration
    • api-version required string: The API version.

Output

IntegrationAccountCertificates_List

Gets a list of integration account certificates.

azure_logic.IntegrationAccountCertificates_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.

Output

IntegrationAccountCertificates_Delete

Deletes an integration account certificate.

azure_logic.IntegrationAccountCertificates_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "certificateName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • certificateName required string: The integration account certificate name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountCertificates_Get

Gets an integration account certificate.

azure_logic.IntegrationAccountCertificates_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "certificateName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • certificateName required string: The integration account certificate name.
    • api-version required string: The API version.

Output

IntegrationAccountCertificates_CreateOrUpdate

Creates or updates an integration account certificate.

azure_logic.IntegrationAccountCertificates_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "certificateName": "",
  "api-version": "",
  "certificate": {
    "properties": {}
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • certificateName required string: The integration account certificate name.
    • api-version required string: The API version.
    • certificate required IntegrationAccountCertificate

Output

IntegrationAccounts_ListCallbackUrl

Gets the integration account callback URL.

azure_logic.IntegrationAccounts_ListCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": "",
  "parameters": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • parameters required GetCallbackUrlParameters

Output

IntegrationAccounts_ListKeyVaultKeys

Gets the integration account's Key Vault keys.

azure_logic.IntegrationAccounts_ListKeyVaultKeys({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": "",
  "listKeyVaultKeys": {
    "keyVault": {}
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • listKeyVaultKeys required ListKeyVaultKeysDefinition

Output

IntegrationAccounts_LogTrackingEvents

Logs the integration account's tracking events.

azure_logic.IntegrationAccounts_LogTrackingEvents({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": "",
  "logTrackingEvents": {
    "sourceType": "",
    "events": []
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • logTrackingEvents required TrackingEventsDefinition

Output

Output schema unknown

IntegrationAccountMaps_List

Gets a list of integration account maps.

azure_logic.IntegrationAccountMaps_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: MapType.

Output

IntegrationAccountMaps_Delete

Deletes an integration account map.

azure_logic.IntegrationAccountMaps_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "mapName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • mapName required string: The integration account map name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountMaps_Get

Gets an integration account map.

azure_logic.IntegrationAccountMaps_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "mapName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • mapName required string: The integration account map name.
    • api-version required string: The API version.

Output

IntegrationAccountMaps_CreateOrUpdate

Creates or updates an integration account map.

azure_logic.IntegrationAccountMaps_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "mapName": "",
  "api-version": "",
  "map": {
    "properties": {
      "mapType": ""
    }
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • mapName required string: The integration account map name.
    • api-version required string: The API version.
    • map required IntegrationAccountMap

Output

IntegrationAccountMaps_ListContentCallbackUrl

Get the content callback url.

azure_logic.IntegrationAccountMaps_ListContentCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "mapName": "",
  "api-version": "",
  "listContentCallbackUrl": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • mapName required string: The integration account map name.
    • api-version required string: The API version.
    • listContentCallbackUrl required GetCallbackUrlParameters

Output

IntegrationAccountPartners_List

Gets a list of integration account partners.

azure_logic.IntegrationAccountPartners_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: PartnerType.

Output

IntegrationAccountPartners_Delete

Deletes an integration account partner.

azure_logic.IntegrationAccountPartners_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "partnerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • partnerName required string: The integration account partner name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountPartners_Get

Gets an integration account partner.

azure_logic.IntegrationAccountPartners_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "partnerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • partnerName required string: The integration account partner name.
    • api-version required string: The API version.

Output

IntegrationAccountPartners_CreateOrUpdate

Creates or updates an integration account partner.

azure_logic.IntegrationAccountPartners_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "partnerName": "",
  "api-version": "",
  "partner": {
    "properties": {
      "partnerType": "",
      "content": {}
    }
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • partnerName required string: The integration account partner name.
    • api-version required string: The API version.
    • partner required IntegrationAccountPartner

Output

IntegrationAccountPartners_ListContentCallbackUrl

Get the content callback url.

azure_logic.IntegrationAccountPartners_ListContentCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "partnerName": "",
  "api-version": "",
  "listContentCallbackUrl": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • partnerName required string: The integration account partner name.
    • api-version required string: The API version.
    • listContentCallbackUrl required GetCallbackUrlParameters

Output

IntegrationAccounts_RegenerateAccessKey

Regenerates the integration account access key.

azure_logic.IntegrationAccounts_RegenerateAccessKey({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": "",
  "regenerateAccessKey": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • regenerateAccessKey required RegenerateActionParameter

Output

IntegrationAccountSchemas_List

Gets a list of integration account schemas.

azure_logic.IntegrationAccountSchemas_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: SchemaType.

Output

IntegrationAccountSchemas_Delete

Deletes an integration account schema.

azure_logic.IntegrationAccountSchemas_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "schemaName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • schemaName required string: The integration account schema name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountSchemas_Get

Gets an integration account schema.

azure_logic.IntegrationAccountSchemas_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "schemaName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • schemaName required string: The integration account schema name.
    • api-version required string: The API version.

Output

IntegrationAccountSchemas_CreateOrUpdate

Creates or updates an integration account schema.

azure_logic.IntegrationAccountSchemas_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "schemaName": "",
  "api-version": "",
  "schema": {
    "properties": {
      "schemaType": ""
    }
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • schemaName required string: The integration account schema name.
    • api-version required string: The API version.
    • schema required IntegrationAccountSchema

Output

IntegrationAccountSchemas_ListContentCallbackUrl

Get the content callback url.

azure_logic.IntegrationAccountSchemas_ListContentCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "schemaName": "",
  "api-version": "",
  "listContentCallbackUrl": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • schemaName required string: The integration account schema name.
    • api-version required string: The API version.
    • listContentCallbackUrl required GetCallbackUrlParameters

Output

IntegrationAccountSessions_List

Gets a list of integration account sessions.

azure_logic.IntegrationAccountSessions_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: ChangedTime.

Output

IntegrationAccountSessions_Delete

Deletes an integration account session.

azure_logic.IntegrationAccountSessions_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "sessionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • sessionName required string: The integration account session name.
    • api-version required string: The API version.

Output

Output schema unknown

IntegrationAccountSessions_Get

Gets an integration account session.

azure_logic.IntegrationAccountSessions_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "sessionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • sessionName required string: The integration account session name.
    • api-version required string: The API version.

Output

IntegrationAccountSessions_CreateOrUpdate

Creates or updates an integration account session.

azure_logic.IntegrationAccountSessions_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "integrationAccountName": "",
  "sessionName": "",
  "api-version": "",
  "session": {
    "properties": {}
  }
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • integrationAccountName required string: The integration account name.
    • sessionName required string: The integration account session name.
    • api-version required string: The API version.
    • session required IntegrationAccountSession

Output

Workflows_ValidateByLocation

Validates the workflow definition.

azure_logic.Workflows_ValidateByLocation({
  "subscriptionId": "",
  "resourceGroupName": "",
  "location": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • location required string: The workflow location.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.

Output

Output schema unknown

Workflows_ListByResourceGroup

Gets a list of workflows by resource group.

azure_logic.Workflows_ListByResourceGroup({
  "subscriptionId": "",
  "resourceGroupName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: State, Trigger, and ReferencedResourceId.

Output

Workflows_Delete

Deletes a workflow.

azure_logic.Workflows_Delete({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.

Output

Output schema unknown

Workflows_Get

Gets a workflow.

azure_logic.Workflows_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.

Output

Workflows_Update

Updates a workflow.

azure_logic.Workflows_Update({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": "",
  "workflow": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.
    • workflow required Workflow

Output

Workflows_CreateOrUpdate

Creates or updates a workflow.

azure_logic.Workflows_CreateOrUpdate({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": "",
  "workflow": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.
    • workflow required Workflow

Output

Workflows_Disable

Disables a workflow.

azure_logic.Workflows_Disable({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.

Output

Output schema unknown

Workflows_Enable

Enables a workflow.

azure_logic.Workflows_Enable({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.

Output

Output schema unknown

Workflows_GenerateUpgradedDefinition

Generates the upgraded definition for a workflow.

azure_logic.Workflows_GenerateUpgradedDefinition({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": "",
  "parameters": {}
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.
    • parameters required GenerateUpgradedDefinitionParameters

Output

Workflows_ListCallbackUrl

Get the workflow callback Url.

azure_logic.Workflows_ListCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "listCallbackUrl": {},
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • listCallbackUrl required GetCallbackUrlParameters
    • api-version required string: The API version.

Output

Workflows_ListSwagger

Gets an OpenAPI definition for the workflow.

azure_logic.Workflows_ListSwagger({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.

Output

Workflows_Move

Moves an existing workflow.

azure_logic.Workflows_Move({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "move": {},
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • move required Workflow
    • api-version required string: The API version.

Output

Output schema unknown

Workflows_RegenerateAccessKey

Regenerates the callback URL access key for request triggers.

azure_logic.Workflows_RegenerateAccessKey({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "keyType": {},
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • keyType required RegenerateActionParameter
    • api-version required string: The API version.

Output

Output schema unknown

WorkflowRuns_List

Gets a list of workflow runs.

azure_logic.WorkflowRuns_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: Status, StartTime, and ClientTrackingId.

Output

WorkflowRuns_Get

Gets a workflow run.

azure_logic.WorkflowRuns_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • api-version required string: The API version.

Output

WorkflowRunActions_List

Gets a list of workflow run actions.

azure_logic.WorkflowRunActions_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: Status.

Output

WorkflowRunActions_Get

Gets a workflow run action.

azure_logic.WorkflowRunActions_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • api-version required string: The API version.

Output

WorkflowRunActions_ListExpressionTraces

Lists a workflow run expression trace.

azure_logic.WorkflowRunActions_ListExpressionTraces({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • api-version required string: The API version.

Output

WorkflowRunActionRepetitions_List

Get all of a workflow run action repetitions.

azure_logic.WorkflowRunActionRepetitions_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • api-version required string: The API version.

Output

WorkflowRunActionRepetitions_Get

Get a workflow run action repetition.

azure_logic.WorkflowRunActionRepetitions_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "repetitionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • repetitionName required string: The workflow repetition.
    • api-version required string: The API version.

Output

WorkflowRunActionRepetitions_ListExpressionTraces

Lists a workflow run expression trace.

azure_logic.WorkflowRunActionRepetitions_ListExpressionTraces({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "repetitionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • repetitionName required string: The workflow repetition.
    • api-version required string: The API version.

Output

WorkflowRunActionRepetitionsRequestHistories_List

List a workflow run repetition request history.

azure_logic.WorkflowRunActionRepetitionsRequestHistories_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "repetitionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • repetitionName required string: The workflow repetition.
    • api-version required string: The API version.

Output

WorkflowRunActionRepetitionsRequestHistories_Get

Gets a workflow run repetition request history.

azure_logic.WorkflowRunActionRepetitionsRequestHistories_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "repetitionName": "",
  "requestHistoryName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • repetitionName required string: The workflow repetition.
    • requestHistoryName required string: The request history name.
    • api-version required string: The API version.

Output

WorkflowRunActionRequestHistories_List

List a workflow run request history.

azure_logic.WorkflowRunActionRequestHistories_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • api-version required string: The API version.

Output

WorkflowRunActionRequestHistories_Get

Gets a workflow run request history.

azure_logic.WorkflowRunActionRequestHistories_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "requestHistoryName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • requestHistoryName required string: The request history name.
    • api-version required string: The API version.

Output

WorkflowRunActionScopeRepetitions_List

List the workflow run action scoped repetitions.

azure_logic.WorkflowRunActionScopeRepetitions_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • api-version required string: The API version.

Output

WorkflowRunActionScopeRepetitions_Get

Get a workflow run action scoped repetition.

azure_logic.WorkflowRunActionScopeRepetitions_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "actionName": "",
  "repetitionName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • actionName required string: The workflow action name.
    • repetitionName required string: The workflow repetition.
    • api-version required string: The API version.

Output

WorkflowRuns_Cancel

Cancels a workflow run.

azure_logic.WorkflowRuns_Cancel({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • api-version required string: The API version.

Output

Output schema unknown

WorkflowRunOperations_Get

Gets an operation for a run.

azure_logic.WorkflowRunOperations_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "runName": "",
  "operationId": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • runName required string: The workflow run name.
    • operationId required string: The workflow operation id.
    • api-version required string: The API version.

Output

WorkflowTriggers_List

Gets a list of workflow triggers.

azure_logic.WorkflowTriggers_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation.

Output

WorkflowTriggers_Get

Gets a workflow trigger.

azure_logic.WorkflowTriggers_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • api-version required string: The API version.

Output

WorkflowTriggerHistories_List

Gets a list of workflow trigger histories.

azure_logic.WorkflowTriggerHistories_List({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • api-version required string: The API version.
    • $top integer: The number of items to be included in the result.
    • $filter string: The filter to apply on the operation. Options for filters include: Status, StartTime, and ClientTrackingId.

Output

WorkflowTriggerHistories_Get

Gets a workflow trigger history.

azure_logic.WorkflowTriggerHistories_Get({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "historyName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • historyName required string: The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.
    • api-version required string: The API version.

Output

WorkflowTriggerHistories_Resubmit

Resubmits a workflow run based on the trigger history.

azure_logic.WorkflowTriggerHistories_Resubmit({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "historyName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • historyName required string: The workflow trigger history name. Corresponds to the run name for triggers that resulted in a run.
    • api-version required string: The API version.

Output

Output schema unknown

WorkflowTriggers_ListCallbackUrl

Get the callback URL for a workflow trigger.

azure_logic.WorkflowTriggers_ListCallbackUrl({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • api-version required string: The API version.

Output

WorkflowTriggers_Reset

Resets a workflow trigger.

azure_logic.WorkflowTriggers_Reset({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • api-version required string: The API version.

Output

Output schema unknown

WorkflowTriggers_Run

Runs a workflow trigger.

azure_logic.WorkflowTriggers_Run({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • api-version required string: The API version.

Output

WorkflowTriggers_GetSchemaJson

Get the trigger schema as JSON.

azure_logic.WorkflowTriggers_GetSchemaJson({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • api-version required string: The API version.

Output

WorkflowTriggers_SetState

Sets the state of a workflow trigger.

azure_logic.WorkflowTriggers_SetState({
  "subscriptionId": "",
  "resourceGroupName": "",
  "workflowName": "",
  "triggerName": "",
  "setState": {
    "source": {}
  },
  "api-version": ""
}, context)

Input

  • input object
    • subscriptionId required string: The subscription id.
    • resourceGroupName required string: The resource group name.
    • workflowName required string: The workflow name.
    • triggerName required string: The workflow trigger name.
    • setState required SetTriggerStateActionDefinition
    • api-version required string: The API version.

Output

Output schema unknown

Workflows_ValidateByResourceGroup

Validates the workflow.

azure_logic.Workfl
5.0.0

5 years ago

4.0.0

7 years ago

3.0.0

7 years ago