Oracle Cloud Infrastructure v3.9.0 published on Wednesday, Sep 24, 2025 by Pulumi
oci.CloudMigrations.getMigrationAssets
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: migrationAssetDisplayName,
migrationAssetId: testMigrationAsset.id,
migrationId: testMigration.id,
state: migrationAssetState,
});
import pulumi
import pulumi_oci as oci
test_migration_assets = oci.CloudMigrations.get_migration_assets(display_name=migration_asset_display_name,
migration_asset_id=test_migration_asset["id"],
migration_id=test_migration["id"],
state=migration_asset_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/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(migrationAssetDisplayName),
MigrationAssetId: pulumi.StringRef(testMigrationAsset.Id),
MigrationId: pulumi.StringRef(testMigration.Id),
State: pulumi.StringRef(migrationAssetState),
}, 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 = migrationAssetDisplayName,
MigrationAssetId = testMigrationAsset.Id,
MigrationId = testMigration.Id,
State = migrationAssetState,
});
});
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(migrationAssetDisplayName)
.migrationAssetId(testMigrationAsset.id())
.migrationId(testMigration.id())
.state(migrationAssetState)
.build());
}
}
variables:
testMigrationAssets:
fn::invoke:
function: oci:CloudMigrations:getMigrationAssets
arguments:
displayName: ${migrationAssetDisplayName}
migrationAssetId: ${testMigrationAsset.id}
migrationId: ${testMigration.id}
state: ${migrationAssetState}
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[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[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)
public static Output<GetMigrationAssetsResult> getMigrationAssets(GetMigrationAssetsArgs args, InvokeOptions options)
fn::invoke:
function: oci:CloudMigrations/getMigrationAssets:getMigrationAssets
arguments:
# arguments dictionary
The following arguments are supported:
- Display
Name string - A filter to return only resources that match the entire given display name.
- Filters
List<Get
Migration Assets Filter> - Migration
Asset stringId - Unique migration asset identifier
- Migration
Id string - Unique migration identifier
- State string
- The current state of the migration asset.
- Display
Name string - A filter to return only resources that match the entire given display name.
- Filters
[]Get
Migration Assets Filter - Migration
Asset stringId - Unique migration asset identifier
- Migration
Id string - Unique migration identifier
- State string
- The current state of the migration asset.
- display
Name String - A filter to return only resources that match the entire given display name.
- filters
List<Get
Migration Assets Filter> - migration
Asset StringId - Unique migration asset identifier
- migration
Id String - Unique migration identifier
- state String
- The current state of the migration asset.
- display
Name string - A filter to return only resources that match the entire given display name.
- filters
Get
Migration Assets Filter[] - migration
Asset stringId - Unique migration asset identifier
- migration
Id 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[Get
Migration Assets Filter] - migration_
asset_ strid - Unique migration asset identifier
- migration_
id str - Unique migration identifier
- state str
- The current state of the migration asset.
- display
Name String - A filter to return only resources that match the entire given display name.
- filters List<Property Map>
- migration
Asset StringId - Unique migration asset identifier
- migration
Id 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.
- Migration
Asset List<GetCollections Migration Assets Migration Asset Collection> - The list of migration_asset_collection.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
List<Get
Migration Assets Filter> - Migration
Asset stringId - Migration
Id 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.
- Migration
Asset []GetCollections Migration Assets Migration Asset Collection - The list of migration_asset_collection.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Filters
[]Get
Migration Assets Filter - Migration
Asset stringId - Migration
Id 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.
- migration
Asset List<GetCollections Migration Assets Migration Asset Collection> - The list of migration_asset_collection.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
List<Get
Migration Assets Filter> - migration
Asset StringId - migration
Id 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.
- migration
Asset GetCollections Migration Assets Migration Asset Collection[] - The list of migration_asset_collection.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters
Get
Migration Assets Filter[] - migration
Asset stringId - migration
Id 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_ Sequence[Getcollections Migration Assets Migration Asset Collection] - 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[Get
Migration Assets Filter] - migration_
asset_ strid - 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.
- migration
Asset List<Property Map>Collections - The list of migration_asset_collection.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- filters List<Property Map>
- migration
Asset StringId - migration
Id String - OCID of the associated migration.
- state String
- The current state of the migration asset.
Supporting Types
GetMigrationAssetsFilter
GetMigrationAssetsMigrationAssetCollection
GetMigrationAssetsMigrationAssetCollectionItem
- Availability
Domain string - Availability domain
- Compartment
Id string - Compartment Identifier
- Depended
On List<string>Bies - List of migration assets that depend on the asset.
- Display
Name 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.
- Inventory
Asset stringId - Lifecycle
Details 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.
- Migration
Asset List<string>Depends Ons - Migration
Id string - Unique migration identifier
- Notifications List<string>
- List of notifications
- Parent
Snapshot string - The parent snapshot of the migration asset to be used by the replication task.
- Replication
Compartment stringId - Replication compartment identifier
- Replication
Schedule stringId - Replication schedule identifier
- Snap
Shot stringBucket Name - Name of snapshot bucket
- Snapshots Dictionary<string, string>
- Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example:
{"bar-key": "value"}
- Source
Asset stringId - OCID that is referenced to an asset for an inventory.
- State string
- The current state of the migration asset.
- Tenancy
Id string - Tenancy identifier
- Time
Created string - The time when the migration asset was created. An RFC3339 formatted datetime string.
- Time
Updated 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 string - Availability domain
- Compartment
Id string - Compartment Identifier
- Depended
On []stringBies - List of migration assets that depend on the asset.
- Display
Name 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.
- Inventory
Asset stringId - Lifecycle
Details 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.
- Migration
Asset []stringDepends Ons - Migration
Id string - Unique migration identifier
- Notifications []string
- List of notifications
- Parent
Snapshot string - The parent snapshot of the migration asset to be used by the replication task.
- Replication
Compartment stringId - Replication compartment identifier
- Replication
Schedule stringId - Replication schedule identifier
- Snap
Shot stringBucket Name - Name of snapshot bucket
- Snapshots map[string]string
- Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example:
{"bar-key": "value"}
- Source
Asset stringId - OCID that is referenced to an asset for an inventory.
- State string
- The current state of the migration asset.
- Tenancy
Id string - Tenancy identifier
- Time
Created string - The time when the migration asset was created. An RFC3339 formatted datetime string.
- Time
Updated 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 String - Availability domain
- compartment
Id String - Compartment Identifier
- depended
On List<String>Bies - List of migration assets that depend on the asset.
- display
Name 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.
- inventory
Asset StringId - lifecycle
Details 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.
- migration
Asset List<String>Depends Ons - migration
Id String - Unique migration identifier
- notifications List<String>
- List of notifications
- parent
Snapshot String - The parent snapshot of the migration asset to be used by the replication task.
- replication
Compartment StringId - Replication compartment identifier
- replication
Schedule StringId - Replication schedule identifier
- snap
Shot StringBucket Name - Name of snapshot bucket
- snapshots Map<String,String>
- Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example:
{"bar-key": "value"}
- source
Asset StringId - OCID that is referenced to an asset for an inventory.
- state String
- The current state of the migration asset.
- tenancy
Id String - Tenancy identifier
- time
Created String - The time when the migration asset was created. An RFC3339 formatted datetime string.
- time
Updated 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 string - Availability domain
- compartment
Id string - Compartment Identifier
- depended
On string[]Bies - List of migration assets that depend on the asset.
- display
Name 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.
- inventory
Asset stringId - lifecycle
Details 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.
- migration
Asset string[]Depends Ons - migration
Id string - Unique migration identifier
- notifications string[]
- List of notifications
- parent
Snapshot string - The parent snapshot of the migration asset to be used by the replication task.
- replication
Compartment stringId - Replication compartment identifier
- replication
Schedule stringId - Replication schedule identifier
- snap
Shot stringBucket Name - Name of snapshot bucket
- snapshots {[key: string]: string}
- Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example:
{"bar-key": "value"}
- source
Asset stringId - OCID that is referenced to an asset for an inventory.
- state string
- The current state of the migration asset.
- tenancy
Id string - Tenancy identifier
- time
Created string - The time when the migration asset was created. An RFC3339 formatted datetime string.
- time
Updated 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_ Sequence[str]bies - 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_ strid - 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_ Sequence[str]depends_ ons - 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_ strid - Replication compartment identifier
- replication_
schedule_ strid - Replication schedule identifier
- snap_
shot_ strbucket_ name - Name of snapshot bucket
- snapshots Mapping[str, str]
- Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example:
{"bar-key": "value"}
- source_
asset_ strid - 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.
- availability
Domain String - Availability domain
- compartment
Id String - Compartment Identifier
- depended
On List<String>Bies - List of migration assets that depend on the asset.
- display
Name 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.
- inventory
Asset StringId - lifecycle
Details 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.
- migration
Asset List<String>Depends Ons - migration
Id String - Unique migration identifier
- notifications List<String>
- List of notifications
- parent
Snapshot String - The parent snapshot of the migration asset to be used by the replication task.
- replication
Compartment StringId - Replication compartment identifier
- replication
Schedule StringId - Replication schedule identifier
- snap
Shot StringBucket Name - Name of snapshot bucket
- snapshots Map<String>
- Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example:
{"bar-key": "value"}
- source
Asset StringId - OCID that is referenced to an asset for an inventory.
- state String
- The current state of the migration asset.
- tenancy
Id String - Tenancy identifier
- time
Created String - The time when the migration asset was created. An RFC3339 formatted datetime string.
- time
Updated 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.