-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from tony-li-avepoint/main
Add Get-FlyMigrationProject
- Loading branch information
Showing
5 changed files
with
95 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# PlatformType | ||
```powershell | ||
enum PlatformType { | ||
# enum value: "0" | ||
Exchange | ||
# enum value: "1" | ||
Teams | ||
# enum value: "2" | ||
SharePoint | ||
# enum value: "3" | ||
OneDrive | ||
# enum value: "4" | ||
M365Group | ||
# enum value: "5" | ||
TeamChat | ||
} | ||
``` | ||
|
||
|
||
[[Back to API list]](FlyApi.md#documentation-for-cmdlets) [[Back to README]](../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# ProjectModel | ||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Name** | **String** | Specify the name of project | | ||
**SourcePlatform** | [**PlatformType**](PlatformType.md) | Specify the platform type of source connection | | ||
**SourceConnectionId** | **String** | Specify the GUID of source connection | | ||
**DestinationPlatform** | [**PlatformType**](PlatformType.md) | Specify the platform type of destination connection | | ||
**DestinationConnectionId** | **String** | Specify the GUID of destination connection | | ||
**PolicyId** | **String** | Specify the GUID of policy which applied to the project | | ||
**TagIds** | **String[]** | Specify a list of tag ids to the project | | ||
**CreateTime** | **DateTime** | The creation time of the project | | ||
**CreateBy** | **String** | The user who create this project | | ||
**LastModifyTime** | **DateTime** | The last modified time of the project | | ||
**LastModifyBy** | **String** | The user who last modified the project | | ||
**Id** | **String** | The GUID of the project | | ||
|
||
[[Back to API list]](FlyApi.md#documentation-for-cmdlets) [[Back to README]](../README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# ProjectSummaryModel | ||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**SourcePlatform** | [**PlatformType**](PlatformType.md) | The platform type of source connection of the project | | ||
**DestinationPlatform** | [**PlatformType**](PlatformType.md) | The platform type of destination connection of the project | | ||
**PolicyName** | **String** | The display name of policy which applied to the project | | ||
**TagNames** | **String** | The tag names of the project, concatenate multiple values using semicolons | | ||
**MappingTotalCount** | **Int32** | The total count of all mappings in the project | | ||
**MappingNotMigratedCount** | **Int32** | The count of new mappings in the project | | ||
**MappingInProgressCount** | **Int32** | The count of mappings which migration job is inprogress in the project | | ||
**MappingStoppedCount** | **Int32** | The count of mappings which migration job is stopped in the project | | ||
**MappingCompletedCount** | **Int32** | The count of mappings which migration job is finished in the project | | ||
**MappingCompletedWithExceptionCount** | **Int32** | The count of mappings which migration job is exception in the project | | ||
**MappingFailedCount** | **Int32** | The count of mappings which migration job is failed in the project | | ||
**Name** | **String** | The name of the project | | ||
**Description** | **String** | The description of the project | | ||
**CreateTime** | **DateTime** | The creation time of the project | | ||
**CreateBy** | **String** | The user who create this project | | ||
**LastModifyTime** | **DateTime** | The last modified time of the project | | ||
**LastModifyBy** | **String** | The user who last modified the project | | ||
**Id** | **String** | The GUID of the project | | ||
|
||
[[Back to API list]](FlyApi.md#documentation-for-cmdlets) [[Back to README]](../README.md) |