Integration Account Assemblies - List

List the assemblies for an integration account.

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/assemblies?api-version=2016-06-01

URI Parameters

Name In Required Type Description
integrationAccountName
path True

string

The integration account name.

resourceGroupName
path True

string

The resource group name.

subscriptionId
path True

string

The subscription id.

api-version
query True

string

The API version.

Responses

Name Type Description
200 OK

AssemblyCollection

OK

Security

azure_auth

Azure Active Directory OAuth2 Flow.

Type: oauth2
Flow: implicit
Authorization URL: https://login.microsoftonline.com/common/oauth2/authorize

Scopes

Name Description
user_impersonation impersonate your user account

Examples

List integration account assemblies

Sample Request

GET https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/assemblies?api-version=2016-06-01

Sample Response

{
  "value": [
    {
      "properties": {
        "assemblyName": "System.IdentityModel.Tokens.Jwt",
        "assemblyVersion": "0.0.0.0",
        "contentLink": {
          "uri": "<Uri>",
          "contentVersion": "\"0x8D45CE54B058881\"",
          "contentSize": 3056,
          "contentHash": {
            "algorithm": "md5",
            "value": "A2avz/M0ov2FPI3+Je8vDw=="
          }
        },
        "createdTime": "2017-02-24T18:45:23.4129778Z",
        "changedTime": "2017-02-24T18:45:23.4137139Z",
        "metadata": {}
      },
      "id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/assemblies/testAssembly",
      "name": "testAssembly",
      "type": "Microsoft.Logic/integrationAccounts/assemblies"
    }
  ]
}

Definitions

Name Description
AssemblyCollection

A collection of assembly definitions.

AssemblyDefinition

The assembly definition.

AssemblyProperties

The assembly properties definition.

ContentHash

The content hash.

ContentLink

The content link.

Object

AssemblyCollection

A collection of assembly definitions.

Name Type Description
value

AssemblyDefinition[]

The assembly definition.

AssemblyDefinition

The assembly definition.

Name Type Description
id

string

The resource id.

location

string

The resource location.

name

string

Gets the resource name.

properties

AssemblyProperties

The assembly properties.

tags

object

The resource tags.

type

string

Gets the resource type.

AssemblyProperties

The assembly properties definition.

Name Type Description
assemblyCulture

string

The assembly culture.

assemblyName

string

The assembly name.

assemblyPublicKeyToken

string

The assembly public key token.

assemblyVersion

string

The assembly version.

changedTime

string

The artifact changed time.

content

contentLink

ContentLink

The content link.

contentType

string

The content type.

createdTime

string

The artifact creation time.

metadata

ContentHash

The content hash.

Name Type Description
algorithm

string

The algorithm of the content hash.

value

string

The value of the content hash.

The content link.

Name Type Description
contentHash

ContentHash

The content hash.

contentSize

integer

The content size.

contentVersion

string

The content version.

metadata

Object

The metadata.

uri

string

The content link URI.

Object