az logic integration-account

Note

This reference is part of the logic extension for the Azure CLI (version 2.15.0 or higher). The extension will automatically install the first time you run an az logic integration-account command. Learn more about extensions.

Logic integration-account.

Commands

az logic integration-account create

Creates or updates an integration account.

az logic integration-account delete

Deletes an integration account.

az logic integration-account import

Import an integration account from a JSON file.

az logic integration-account list

Gets a list of integration accounts by subscription.

az logic integration-account show

Gets an integration account.

az logic integration-account update

Updates an integration account.

az logic integration-account create

Creates or updates an integration account.

az logic integration-account create --name
                                    --resource-group
                                    [--integration-service-environment]
                                    [--location]
                                    [--sku]
                                    [--state {Completed, Deleted, Disabled, Enabled, NotSpecified, Suspended}]
                                    [--tags]

Examples

Create or update an integration account

az logic integration-account create --location "centralus" --sku name=Standard --name "test_integration_account" --resource-group "test_resource_group"

Required Parameters

--name -n

The integration account name.

--resource-group -g

The resource group name.

Optional Parameters

--integration-service-environment

The integration service environment. See https://github.com/Azure/azure-cli-extensions/blob/main/src/logic/README.md For more information.

--location -l

Location. Values from: az account list-locations. You can configure the default location using az configure --defaults location=<location>.

--sku

The integration account sku.

--state

The workflow state.

accepted values: Completed, Deleted, Disabled, Enabled, NotSpecified, Suspended
--tags

The resource tags.

az logic integration-account delete

Deletes an integration account.

az logic integration-account delete --name
                                    --resource-group
                                    [--yes]

Examples

Delete an integration account

az logic integration-account delete --name "test_integration_account" --resource-group "test_resource_group"

Required Parameters

--name -n

The integration account name.

--resource-group -g

The resource group name.

Optional Parameters

--yes -y

Do not prompt for confirmation.

default value: False

az logic integration-account import

Import an integration account from a JSON file.

az logic integration-account import --input-path
                                    --name
                                    --resource-group
                                    [--location]
                                    [--sku]
                                    [--tags]

Examples

Import an integration account.

az logic integration-account import --name "test_integration_account" --resource-group "test_resource_group" --input-path "integration.json"

Required Parameters

--input-path

Path to a intergration-account JSON file.

--name -n

The integration account name.

--resource-group -g

The resource group name.

Optional Parameters

--location -l

Location. Values from: az account list-locations. You can configure the default location using az configure --defaults location=<location>.

--sku

The integration account sku.

--tags

The resource tags.

az logic integration-account list

Gets a list of integration accounts by subscription.

az logic integration-account list [--resource-group]
                                  [--top]

Examples

List integration accounts by resource group name

az logic integration-account list --resource-group "test_resource_group"

Optional Parameters

--resource-group -g

The resource group name.

--top

The number of items to be included in the result.

az logic integration-account show

Gets an integration account.

az logic integration-account show --name
                                  --resource-group

Examples

Get integration account by name

az logic integration-account show --name "test_integration_account" --resource-group "test_resource_group"

Required Parameters

--name -n

The integration account name.

--resource-group -g

The resource group name.

az logic integration-account update

Updates an integration account.

az logic integration-account update --name
                                    --resource-group
                                    [--integration-service-environment]
                                    [--sku]
                                    [--state {Completed, Deleted, Disabled, Enabled, NotSpecified, Suspended}]
                                    [--tags]

Examples

Patch an integration account

az logic integration-account update --sku name=Basic --tag atag=123 --name "test_integration_account" --resource-group "test_resource_group"

Required Parameters

--name -n

The integration account name.

--resource-group -g

The resource group name.

Optional Parameters

--integration-service-environment

The integration service environment. See https://github.com/Azure/azure-cli-extensions/blob/main/src/logic/README.md For more information.

--sku

The integration account sku.

--state

The workflow state.

accepted values: Completed, Deleted, Disabled, Enabled, NotSpecified, Suspended
--tags

The resource tags.