|
| 1 | +--- |
| 2 | +external help file: Microsoft.Azure.PowerShell.Cmdlets.LogicApp.dll-Help.xml |
| 3 | +Module Name: Az.LogicApp |
| 4 | +online version: https://docs.microsoft.com/en-us/powershell/module/az.logicapp/get-azintegrationaccountbatchconfiguration |
| 5 | +schema: 2.0.0 |
| 6 | +--- |
| 7 | + |
| 8 | +# Get-AzIntegrationAccountBatchConfiguration |
| 9 | + |
| 10 | +## SYNOPSIS |
| 11 | +Gets an integration account batch configuration. |
| 12 | + |
| 13 | +## SYNTAX |
| 14 | + |
| 15 | +### ByIntegrationAccount (Default) |
| 16 | +``` |
| 17 | +Get-AzIntegrationAccountBatchConfiguration -ResourceGroupName <String> -ParentName <String> [-Name <String>] |
| 18 | + [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>] |
| 19 | +``` |
| 20 | + |
| 21 | +### ByInputObject |
| 22 | +``` |
| 23 | +Get-AzIntegrationAccountBatchConfiguration [-Name <String>] -ParentObject <IntegrationAccount> |
| 24 | + [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>] |
| 25 | +``` |
| 26 | + |
| 27 | +### ByResourceId |
| 28 | +``` |
| 29 | +Get-AzIntegrationAccountBatchConfiguration [-Name <String>] -ParentResourceId <String> |
| 30 | + [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>] |
| 31 | +``` |
| 32 | + |
| 33 | +## DESCRIPTION |
| 34 | +The **Get-AzIntegrationAccountBatchConfiguration** cmdlet gets an batch configuration from an integration account. |
| 35 | + |
| 36 | +## EXAMPLES |
| 37 | + |
| 38 | +### Example 1: Get a batch configuration by parameters |
| 39 | +```powershell |
| 40 | +PS C:\> Get-AzIntegrationAccountBatchConfiguration -ResourceGroupName "sampleResourceGroup" -IntegrationAccountName "sampleIntegrationAccount" -BatchConfigurationName "sampleBatchConfiguration" |
| 41 | +``` |
| 42 | + |
| 43 | +Get a batch configuration named "sampleBatchConfiguration" located in the integration account "sampleIntegrationAccount" which is contained in the resource group "sampleResourceGroup". |
| 44 | + |
| 45 | +### Example 2: List all batch configurations in an integration account by parameters |
| 46 | +```powershell |
| 47 | +PS C:\> Get-AzIntegrationAccountBatchConfiguration -ResourceGroupName "sampleResourceGroup" -IntegrationAccountName "sampleIntegrationAccount" |
| 48 | +``` |
| 49 | + |
| 50 | +Get all batch configurations located in the integration account "sampleIntegrationAccount" which is contained in the resource group "sampleResourceGroup". |
| 51 | + |
| 52 | +## PARAMETERS |
| 53 | + |
| 54 | +### -DefaultProfile |
| 55 | +The credentials, account, tenant, and subscription used for communication with Azure. |
| 56 | + |
| 57 | +```yaml |
| 58 | +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer |
| 59 | +Parameter Sets: (All) |
| 60 | +Aliases: AzContext, AzureRmContext, AzureCredential |
| 61 | + |
| 62 | +Required: False |
| 63 | +Position: Named |
| 64 | +Default value: None |
| 65 | +Accept pipeline input: False |
| 66 | +Accept wildcard characters: False |
| 67 | +``` |
| 68 | +
|
| 69 | +### -Name |
| 70 | +The integration account batch configuration name. |
| 71 | +
|
| 72 | +```yaml |
| 73 | +Type: System.String |
| 74 | +Parameter Sets: (All) |
| 75 | +Aliases: BatchConfigurationName, ResourceName |
| 76 | + |
| 77 | +Required: False |
| 78 | +Position: Named |
| 79 | +Default value: None |
| 80 | +Accept pipeline input: False |
| 81 | +Accept wildcard characters: False |
| 82 | +``` |
| 83 | +
|
| 84 | +### -ParentName |
| 85 | +The integration account name. |
| 86 | +
|
| 87 | +```yaml |
| 88 | +Type: System.String |
| 89 | +Parameter Sets: ByIntegrationAccount |
| 90 | +Aliases: IntegrationAccountName |
| 91 | + |
| 92 | +Required: True |
| 93 | +Position: Named |
| 94 | +Default value: None |
| 95 | +Accept pipeline input: False |
| 96 | +Accept wildcard characters: False |
| 97 | +``` |
| 98 | +
|
| 99 | +### -ParentObject |
| 100 | +An integration account object. |
| 101 | +
|
| 102 | +```yaml |
| 103 | +Type: Microsoft.Azure.Management.Logic.Models.IntegrationAccount |
| 104 | +Parameter Sets: ByInputObject |
| 105 | +Aliases: |
| 106 | + |
| 107 | +Required: True |
| 108 | +Position: Named |
| 109 | +Default value: None |
| 110 | +Accept pipeline input: True (ByValue) |
| 111 | +Accept wildcard characters: False |
| 112 | +``` |
| 113 | +
|
| 114 | +### -ParentResourceId |
| 115 | +The integration account resource id. |
| 116 | +
|
| 117 | +```yaml |
| 118 | +Type: System.String |
| 119 | +Parameter Sets: ByResourceId |
| 120 | +Aliases: |
| 121 | + |
| 122 | +Required: True |
| 123 | +Position: Named |
| 124 | +Default value: None |
| 125 | +Accept pipeline input: True (ByPropertyName) |
| 126 | +Accept wildcard characters: False |
| 127 | +``` |
| 128 | +
|
| 129 | +### -ResourceGroupName |
| 130 | +The resource group name. |
| 131 | +
|
| 132 | +```yaml |
| 133 | +Type: System.String |
| 134 | +Parameter Sets: ByIntegrationAccount |
| 135 | +Aliases: |
| 136 | + |
| 137 | +Required: True |
| 138 | +Position: Named |
| 139 | +Default value: None |
| 140 | +Accept pipeline input: False |
| 141 | +Accept wildcard characters: False |
| 142 | +``` |
| 143 | +
|
| 144 | +### CommonParameters |
| 145 | +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). |
| 146 | +
|
| 147 | +## INPUTS |
| 148 | +
|
| 149 | +### Microsoft.Azure.Management.Logic.Models.IntegrationAccount |
| 150 | +
|
| 151 | +### System.String |
| 152 | +
|
| 153 | +## OUTPUTS |
| 154 | +
|
| 155 | +### Microsoft.Azure.Management.Logic.Models.BatchConfiguration |
| 156 | +
|
| 157 | +## NOTES |
| 158 | +
|
| 159 | +## RELATED LINKS |
0 commit comments