1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudMigrations
  5. getMigrationAssets
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.CloudMigrations.getMigrationAssets

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Migration Assets in Oracle Cloud Infrastructure Cloud Migrations service.

    Returns a list of migration assets.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testMigrationAssets = oci.CloudMigrations.getMigrationAssets({
        displayName: _var.migration_asset_display_name,
        migrationAssetId: oci_cloud_migrations_migration_asset.test_migration_asset.id,
        migrationId: oci_cloud_migrations_migration.test_migration.id,
        state: _var.migration_asset_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_migration_assets = oci.CloudMigrations.get_migration_assets(display_name=var["migration_asset_display_name"],
        migration_asset_id=oci_cloud_migrations_migration_asset["test_migration_asset"]["id"],
        migration_id=oci_cloud_migrations_migration["test_migration"]["id"],
        state=var["migration_asset_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/CloudMigrations"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := CloudMigrations.GetMigrationAssets(ctx, &cloudmigrations.GetMigrationAssetsArgs{
    			DisplayName:      pulumi.StringRef(_var.Migration_asset_display_name),
    			MigrationAssetId: pulumi.StringRef(oci_cloud_migrations_migration_asset.Test_migration_asset.Id),
    			MigrationId:      pulumi.StringRef(oci_cloud_migrations_migration.Test_migration.Id),
    			State:            pulumi.StringRef(_var.Migration_asset_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testMigrationAssets = Oci.CloudMigrations.GetMigrationAssets.Invoke(new()
        {
            DisplayName = @var.Migration_asset_display_name,
            MigrationAssetId = oci_cloud_migrations_migration_asset.Test_migration_asset.Id,
            MigrationId = oci_cloud_migrations_migration.Test_migration.Id,
            State = @var.Migration_asset_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CloudMigrations.CloudMigrationsFunctions;
    import com.pulumi.oci.CloudMigrations.inputs.GetMigrationAssetsArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testMigrationAssets = CloudMigrationsFunctions.getMigrationAssets(GetMigrationAssetsArgs.builder()
                .displayName(var_.migration_asset_display_name())
                .migrationAssetId(oci_cloud_migrations_migration_asset.test_migration_asset().id())
                .migrationId(oci_cloud_migrations_migration.test_migration().id())
                .state(var_.migration_asset_state())
                .build());
    
        }
    }
    
    variables:
      testMigrationAssets:
        fn::invoke:
          Function: oci:CloudMigrations:getMigrationAssets
          Arguments:
            displayName: ${var.migration_asset_display_name}
            migrationAssetId: ${oci_cloud_migrations_migration_asset.test_migration_asset.id}
            migrationId: ${oci_cloud_migrations_migration.test_migration.id}
            state: ${var.migration_asset_state}
    

    Using getMigrationAssets

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getMigrationAssets(args: GetMigrationAssetsArgs, opts?: InvokeOptions): Promise<GetMigrationAssetsResult>
    function getMigrationAssetsOutput(args: GetMigrationAssetsOutputArgs, opts?: InvokeOptions): Output<GetMigrationAssetsResult>
    def get_migration_assets(display_name: Optional[str] = None,
                             filters: Optional[Sequence[_cloudmigrations.GetMigrationAssetsFilter]] = None,
                             migration_asset_id: Optional[str] = None,
                             migration_id: Optional[str] = None,
                             state: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetMigrationAssetsResult
    def get_migration_assets_output(display_name: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[_cloudmigrations.GetMigrationAssetsFilterArgs]]]] = None,
                             migration_asset_id: Optional[pulumi.Input[str]] = None,
                             migration_id: Optional[pulumi.Input[str]] = None,
                             state: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetMigrationAssetsResult]
    func GetMigrationAssets(ctx *Context, args *GetMigrationAssetsArgs, opts ...InvokeOption) (*GetMigrationAssetsResult, error)
    func GetMigrationAssetsOutput(ctx *Context, args *GetMigrationAssetsOutputArgs, opts ...InvokeOption) GetMigrationAssetsResultOutput

    > Note: This function is named GetMigrationAssets in the Go SDK.

    public static class GetMigrationAssets 
    {
        public static Task<GetMigrationAssetsResult> InvokeAsync(GetMigrationAssetsArgs args, InvokeOptions? opts = null)
        public static Output<GetMigrationAssetsResult> Invoke(GetMigrationAssetsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetMigrationAssetsResult> getMigrationAssets(GetMigrationAssetsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:CloudMigrations/getMigrationAssets:getMigrationAssets
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DisplayName string
    A filter to return only resources that match the entire given display name.
    Filters List<GetMigrationAssetsFilter>
    MigrationAssetId string
    Unique migration asset identifier
    MigrationId string
    Unique migration identifier
    State string
    The current state of the migration asset.
    DisplayName string
    A filter to return only resources that match the entire given display name.
    Filters []GetMigrationAssetsFilter
    MigrationAssetId string
    Unique migration asset identifier
    MigrationId string
    Unique migration identifier
    State string
    The current state of the migration asset.
    displayName String
    A filter to return only resources that match the entire given display name.
    filters List<GetMigrationAssetsFilter>
    migrationAssetId String
    Unique migration asset identifier
    migrationId String
    Unique migration identifier
    state String
    The current state of the migration asset.
    displayName string
    A filter to return only resources that match the entire given display name.
    filters GetMigrationAssetsFilter[]
    migrationAssetId string
    Unique migration asset identifier
    migrationId string
    Unique migration identifier
    state string
    The current state of the migration asset.
    display_name str
    A filter to return only resources that match the entire given display name.
    filters Sequence[cloudmigrations.GetMigrationAssetsFilter]
    migration_asset_id str
    Unique migration asset identifier
    migration_id str
    Unique migration identifier
    state str
    The current state of the migration asset.
    displayName String
    A filter to return only resources that match the entire given display name.
    filters List<Property Map>
    migrationAssetId String
    Unique migration asset identifier
    migrationId String
    Unique migration identifier
    state String
    The current state of the migration asset.

    getMigrationAssets Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    MigrationAssetCollections List<GetMigrationAssetsMigrationAssetCollection>
    The list of migration_asset_collection.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetMigrationAssetsFilter>
    MigrationAssetId string
    MigrationId string
    OCID of the associated migration.
    State string
    The current state of the migration asset.
    Id string
    The provider-assigned unique ID for this managed resource.
    MigrationAssetCollections []GetMigrationAssetsMigrationAssetCollection
    The list of migration_asset_collection.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetMigrationAssetsFilter
    MigrationAssetId string
    MigrationId string
    OCID of the associated migration.
    State string
    The current state of the migration asset.
    id String
    The provider-assigned unique ID for this managed resource.
    migrationAssetCollections List<GetMigrationAssetsMigrationAssetCollection>
    The list of migration_asset_collection.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetMigrationAssetsFilter>
    migrationAssetId String
    migrationId String
    OCID of the associated migration.
    state String
    The current state of the migration asset.
    id string
    The provider-assigned unique ID for this managed resource.
    migrationAssetCollections GetMigrationAssetsMigrationAssetCollection[]
    The list of migration_asset_collection.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetMigrationAssetsFilter[]
    migrationAssetId string
    migrationId string
    OCID of the associated migration.
    state string
    The current state of the migration asset.
    id str
    The provider-assigned unique ID for this managed resource.
    migration_asset_collections Sequence[cloudmigrations.GetMigrationAssetsMigrationAssetCollection]
    The list of migration_asset_collection.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[cloudmigrations.GetMigrationAssetsFilter]
    migration_asset_id str
    migration_id str
    OCID of the associated migration.
    state str
    The current state of the migration asset.
    id String
    The provider-assigned unique ID for this managed resource.
    migrationAssetCollections List<Property Map>
    The list of migration_asset_collection.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    migrationAssetId String
    migrationId String
    OCID of the associated migration.
    state String
    The current state of the migration asset.

    Supporting Types

    GetMigrationAssetsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetMigrationAssetsMigrationAssetCollection

    GetMigrationAssetsMigrationAssetCollectionItem

    AvailabilityDomain string
    Availability domain
    CompartmentId string
    Compartment Identifier
    DependedOnBies List<string>
    List of migration assets that depend on the asset.
    DisplayName string
    A filter to return only resources that match the entire given display name.
    Id string
    Asset ID generated by mirgration service. It is used in the mirgration service pipeline.
    InventoryAssetId string
    LifecycleDetails string
    A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
    MigrationAssetDependsOns List<string>
    MigrationId string
    Unique migration identifier
    Notifications List<string>
    List of notifications
    ParentSnapshot string
    The parent snapshot of the migration asset to be used by the replication task.
    ReplicationCompartmentId string
    Replication compartment identifier
    ReplicationScheduleId string
    Replication schedule identifier
    SnapShotBucketName string
    Name of snapshot bucket
    Snapshots Dictionary<string, object>
    Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example: {"bar-key": "value"}
    SourceAssetId string
    OCID that is referenced to an asset for an inventory.
    State string
    The current state of the migration asset.
    TenancyId string
    Tenancy identifier
    TimeCreated string
    The time when the migration asset was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time when the migration asset was updated. An RFC3339 formatted datetime string.
    Type string
    The type of asset referenced for inventory.
    AvailabilityDomain string
    Availability domain
    CompartmentId string
    Compartment Identifier
    DependedOnBies []string
    List of migration assets that depend on the asset.
    DisplayName string
    A filter to return only resources that match the entire given display name.
    Id string
    Asset ID generated by mirgration service. It is used in the mirgration service pipeline.
    InventoryAssetId string
    LifecycleDetails string
    A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
    MigrationAssetDependsOns []string
    MigrationId string
    Unique migration identifier
    Notifications []string
    List of notifications
    ParentSnapshot string
    The parent snapshot of the migration asset to be used by the replication task.
    ReplicationCompartmentId string
    Replication compartment identifier
    ReplicationScheduleId string
    Replication schedule identifier
    SnapShotBucketName string
    Name of snapshot bucket
    Snapshots map[string]interface{}
    Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example: {"bar-key": "value"}
    SourceAssetId string
    OCID that is referenced to an asset for an inventory.
    State string
    The current state of the migration asset.
    TenancyId string
    Tenancy identifier
    TimeCreated string
    The time when the migration asset was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time when the migration asset was updated. An RFC3339 formatted datetime string.
    Type string
    The type of asset referenced for inventory.
    availabilityDomain String
    Availability domain
    compartmentId String
    Compartment Identifier
    dependedOnBies List<String>
    List of migration assets that depend on the asset.
    displayName String
    A filter to return only resources that match the entire given display name.
    id String
    Asset ID generated by mirgration service. It is used in the mirgration service pipeline.
    inventoryAssetId String
    lifecycleDetails String
    A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
    migrationAssetDependsOns List<String>
    migrationId String
    Unique migration identifier
    notifications List<String>
    List of notifications
    parentSnapshot String
    The parent snapshot of the migration asset to be used by the replication task.
    replicationCompartmentId String
    Replication compartment identifier
    replicationScheduleId String
    Replication schedule identifier
    snapShotBucketName String
    Name of snapshot bucket
    snapshots Map<String,Object>
    Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example: {"bar-key": "value"}
    sourceAssetId String
    OCID that is referenced to an asset for an inventory.
    state String
    The current state of the migration asset.
    tenancyId String
    Tenancy identifier
    timeCreated String
    The time when the migration asset was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time when the migration asset was updated. An RFC3339 formatted datetime string.
    type String
    The type of asset referenced for inventory.
    availabilityDomain string
    Availability domain
    compartmentId string
    Compartment Identifier
    dependedOnBies string[]
    List of migration assets that depend on the asset.
    displayName string
    A filter to return only resources that match the entire given display name.
    id string
    Asset ID generated by mirgration service. It is used in the mirgration service pipeline.
    inventoryAssetId string
    lifecycleDetails string
    A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
    migrationAssetDependsOns string[]
    migrationId string
    Unique migration identifier
    notifications string[]
    List of notifications
    parentSnapshot string
    The parent snapshot of the migration asset to be used by the replication task.
    replicationCompartmentId string
    Replication compartment identifier
    replicationScheduleId string
    Replication schedule identifier
    snapShotBucketName string
    Name of snapshot bucket
    snapshots {[key: string]: any}
    Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example: {"bar-key": "value"}
    sourceAssetId string
    OCID that is referenced to an asset for an inventory.
    state string
    The current state of the migration asset.
    tenancyId string
    Tenancy identifier
    timeCreated string
    The time when the migration asset was created. An RFC3339 formatted datetime string.
    timeUpdated string
    The time when the migration asset was updated. An RFC3339 formatted datetime string.
    type string
    The type of asset referenced for inventory.
    availability_domain str
    Availability domain
    compartment_id str
    Compartment Identifier
    depended_on_bies Sequence[str]
    List of migration assets that depend on the asset.
    display_name str
    A filter to return only resources that match the entire given display name.
    id str
    Asset ID generated by mirgration service. It is used in the mirgration service pipeline.
    inventory_asset_id str
    lifecycle_details str
    A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
    migration_asset_depends_ons Sequence[str]
    migration_id str
    Unique migration identifier
    notifications Sequence[str]
    List of notifications
    parent_snapshot str
    The parent snapshot of the migration asset to be used by the replication task.
    replication_compartment_id str
    Replication compartment identifier
    replication_schedule_id str
    Replication schedule identifier
    snap_shot_bucket_name str
    Name of snapshot bucket
    snapshots Mapping[str, Any]
    Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example: {"bar-key": "value"}
    source_asset_id str
    OCID that is referenced to an asset for an inventory.
    state str
    The current state of the migration asset.
    tenancy_id str
    Tenancy identifier
    time_created str
    The time when the migration asset was created. An RFC3339 formatted datetime string.
    time_updated str
    The time when the migration asset was updated. An RFC3339 formatted datetime string.
    type str
    The type of asset referenced for inventory.
    availabilityDomain String
    Availability domain
    compartmentId String
    Compartment Identifier
    dependedOnBies List<String>
    List of migration assets that depend on the asset.
    displayName String
    A filter to return only resources that match the entire given display name.
    id String
    Asset ID generated by mirgration service. It is used in the mirgration service pipeline.
    inventoryAssetId String
    lifecycleDetails String
    A message describing the current state in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
    migrationAssetDependsOns List<String>
    migrationId String
    Unique migration identifier
    notifications List<String>
    List of notifications
    parentSnapshot String
    The parent snapshot of the migration asset to be used by the replication task.
    replicationCompartmentId String
    Replication compartment identifier
    replicationScheduleId String
    Replication schedule identifier
    snapShotBucketName String
    Name of snapshot bucket
    snapshots Map<Any>
    Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example: {"bar-key": "value"}
    sourceAssetId String
    OCID that is referenced to an asset for an inventory.
    state String
    The current state of the migration asset.
    tenancyId String
    Tenancy identifier
    timeCreated String
    The time when the migration asset was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time when the migration asset was updated. An RFC3339 formatted datetime string.
    type String
    The type of asset referenced for inventory.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi