# Get-PendingImportAdds

## Synopsis

Gets connector space objects that are pending import add operations

## Syntax

```
Get-PendingImportAdds [-MA] <string> [-Delta] [-Hologram] [<CommonParameters>]
```

## Description

The [Get-PendingImportAdds](https://docs.lithnet.io/mim-sync-service/usage/cmdlet-reference/get-pendingimportadds) cmdlet gets all objects in the connector space that are pending import add operations. These are objects were newly seen in the last import, but have not yet been synchronized.

## Parameters

#### -MA \<string>

The management agent to get the connectors from

|                             |       |
| --------------------------- | ----- |
| Required?                   | true  |
| Position?                   | 1     |
| Default value               |       |
| Accept pipeline input?      | false |
| Accept wildcard characters? | false |

#### -Delta \<SwitchParameter>

Specifies to get only the changes being made to the object

|                             |       |
| --------------------------- | ----- |
| Required?                   | false |
| Position?                   | 2     |
| Default value               |       |
| Accept pipeline input?      | false |
| Accept wildcard characters? | false |

#### -Hologram \<SwitchParameter>

Specifies to get only the representation of the object with the changes applied

|                             |       |
| --------------------------- | ----- |
| Required?                   | false |
| Position?                   | 2     |
| Default value               |       |
| Accept pipeline input?      | false |
| Accept wildcard characters? | false |

#### \<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see [about CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## Examples

### Get all pending import adds from the connector space

```
PS C:\> Get-PendingImportAdds -MA ADMA
```

### Get only the changed attributes for the objects from the connector space

```
PS C:\> Get-PendingImportAdds -MA ADMA -Delta
```

### Get the representation of the objects with the changes applied from the connector space

```
PS C:\> Get-PendingImportAdds -MA ADMA -Hologram
```
