Integration Account Assemblies - Get
Get an assembly for an integration account.
GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Logic/integrationAccounts/{integrationAccountName}/assemblies/{assemblyArtifactName}?api-version=2016-06-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
assembly
|
path | True |
string |
The assembly artifact name. |
integration
|
path | True |
string |
The integration account name. |
resource
|
path | True |
string |
The resource group name. |
subscription
|
path | True |
string |
The subscription id. |
api-version
|
query | True |
string |
The API version. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
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
Get an integration account assembly
Sample request
GET https://management.azure.com/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/testResourceGroup/providers/Microsoft.Logic/integrationAccounts/testIntegrationAccount/assemblies/testAssembly?api-version=2016-06-01
Sample response
{
"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 |
---|---|
Assembly |
The assembly definition. |
Assembly |
The assembly properties definition. |
Content |
The content hash. |
Content |
The content link. |
Object |
AssemblyDefinition
The assembly definition.
Name | Type | Description |
---|---|---|
id |
string |
The resource id. |
location |
string |
The resource location. |
name |
string |
Gets the resource name. |
properties |
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 |
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. |
ContentLink
The content link.
Name | Type | Description |
---|---|---|
contentHash |
The content hash. |
|
contentSize |
integer |
The content size. |
contentVersion |
string |
The content version. |
metadata |
The metadata. |
|
uri |
string |
The content link URI. |