1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. eds
  5. getSnapshots
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

alicloud.eds.getSnapshots

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi

    This data source provides the Ecd Snapshots of the current Alibaba Cloud user.

    NOTE: Available in v1.169.0+.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as alicloud from "@pulumi/alicloud";
    
    const ids = alicloud.eds.getSnapshots({});
    export const ecdSnapshotId1 = ids.then(ids => ids.snapshots?.[0]?.id);
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    ids = alicloud.eds.get_snapshots()
    pulumi.export("ecdSnapshotId1", ids.snapshots[0].id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/eds"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		ids, err := eds.GetSnapshots(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("ecdSnapshotId1", ids.Snapshots[0].Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AliCloud = Pulumi.AliCloud;
    
    return await Deployment.RunAsync(() => 
    {
        var ids = AliCloud.Eds.GetSnapshots.Invoke();
    
        return new Dictionary<string, object?>
        {
            ["ecdSnapshotId1"] = ids.Apply(getSnapshotsResult => getSnapshotsResult.Snapshots[0]?.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.eds.EdsFunctions;
    import com.pulumi.alicloud.eds.inputs.GetSnapshotsArgs;
    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 ids = EdsFunctions.getSnapshots();
    
            ctx.export("ecdSnapshotId1", ids.applyValue(getSnapshotsResult -> getSnapshotsResult.snapshots()[0].id()));
        }
    }
    
    variables:
      ids:
        fn::invoke:
          Function: alicloud:eds:getSnapshots
          Arguments: {}
    outputs:
      ecdSnapshotId1: ${ids.snapshots[0].id}
    

    Using getSnapshots

    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 getSnapshots(args: GetSnapshotsArgs, opts?: InvokeOptions): Promise<GetSnapshotsResult>
    function getSnapshotsOutput(args: GetSnapshotsOutputArgs, opts?: InvokeOptions): Output<GetSnapshotsResult>
    def get_snapshots(desktop_id: Optional[str] = None,
                      ids: Optional[Sequence[str]] = None,
                      name_regex: Optional[str] = None,
                      output_file: Optional[str] = None,
                      snapshot_id: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetSnapshotsResult
    def get_snapshots_output(desktop_id: Optional[pulumi.Input[str]] = None,
                      ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                      name_regex: Optional[pulumi.Input[str]] = None,
                      output_file: Optional[pulumi.Input[str]] = None,
                      snapshot_id: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetSnapshotsResult]
    func GetSnapshots(ctx *Context, args *GetSnapshotsArgs, opts ...InvokeOption) (*GetSnapshotsResult, error)
    func GetSnapshotsOutput(ctx *Context, args *GetSnapshotsOutputArgs, opts ...InvokeOption) GetSnapshotsResultOutput

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

    public static class GetSnapshots 
    {
        public static Task<GetSnapshotsResult> InvokeAsync(GetSnapshotsArgs args, InvokeOptions? opts = null)
        public static Output<GetSnapshotsResult> Invoke(GetSnapshotsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSnapshotsResult> getSnapshots(GetSnapshotsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: alicloud:eds/getSnapshots:getSnapshots
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DesktopId string
    The ID of the cloud desktop to which the snapshot belongs.
    Ids List<string>
    A list of Snapshot IDs.
    NameRegex string
    A regex string to filter results by Snapshot name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    SnapshotId string
    The ID of the snapshot.
    DesktopId string
    The ID of the cloud desktop to which the snapshot belongs.
    Ids []string
    A list of Snapshot IDs.
    NameRegex string
    A regex string to filter results by Snapshot name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    SnapshotId string
    The ID of the snapshot.
    desktopId String
    The ID of the cloud desktop to which the snapshot belongs.
    ids List<String>
    A list of Snapshot IDs.
    nameRegex String
    A regex string to filter results by Snapshot name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    snapshotId String
    The ID of the snapshot.
    desktopId string
    The ID of the cloud desktop to which the snapshot belongs.
    ids string[]
    A list of Snapshot IDs.
    nameRegex string
    A regex string to filter results by Snapshot name.
    outputFile string
    File name where to save data source results (after running pulumi preview).
    snapshotId string
    The ID of the snapshot.
    desktop_id str
    The ID of the cloud desktop to which the snapshot belongs.
    ids Sequence[str]
    A list of Snapshot IDs.
    name_regex str
    A regex string to filter results by Snapshot name.
    output_file str
    File name where to save data source results (after running pulumi preview).
    snapshot_id str
    The ID of the snapshot.
    desktopId String
    The ID of the cloud desktop to which the snapshot belongs.
    ids List<String>
    A list of Snapshot IDs.
    nameRegex String
    A regex string to filter results by Snapshot name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    snapshotId String
    The ID of the snapshot.

    getSnapshots Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<string>
    Names List<string>
    Snapshots List<Pulumi.AliCloud.Eds.Outputs.GetSnapshotsSnapshot>
    DesktopId string
    NameRegex string
    OutputFile string
    SnapshotId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    Names []string
    Snapshots []GetSnapshotsSnapshot
    DesktopId string
    NameRegex string
    OutputFile string
    SnapshotId string
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    names List<String>
    snapshots List<GetSnapshotsSnapshot>
    desktopId String
    nameRegex String
    outputFile String
    snapshotId String
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    names string[]
    snapshots GetSnapshotsSnapshot[]
    desktopId string
    nameRegex string
    outputFile string
    snapshotId string
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[str]
    names Sequence[str]
    snapshots Sequence[GetSnapshotsSnapshot]
    desktop_id str
    name_regex str
    output_file str
    snapshot_id str
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    names List<String>
    snapshots List<Property Map>
    desktopId String
    nameRegex String
    outputFile String
    snapshotId String

    Supporting Types

    GetSnapshotsSnapshot

    CreateTime string
    The time when the snapshot was created.
    Description string
    The description of the snapshot.
    DesktopId string
    The ID of the cloud desktop to which the snapshot belongs.
    Id string
    The ID of the Snapshot.
    Progress string
    The progress of creating the snapshot.
    RemainTime int
    The remaining time that is required to create the snapshot. Unit: seconds.
    SnapshotId string
    The ID of the snapshot.
    SnapshotName string
    The name of the snapshot.
    SnapshotType string
    The type of the snapshot.
    SourceDiskSize string
    The capacity of the source disk. Unit: GiB.
    SourceDiskType string
    The type of the source disk.
    Status string
    The status of the snapshot.
    CreateTime string
    The time when the snapshot was created.
    Description string
    The description of the snapshot.
    DesktopId string
    The ID of the cloud desktop to which the snapshot belongs.
    Id string
    The ID of the Snapshot.
    Progress string
    The progress of creating the snapshot.
    RemainTime int
    The remaining time that is required to create the snapshot. Unit: seconds.
    SnapshotId string
    The ID of the snapshot.
    SnapshotName string
    The name of the snapshot.
    SnapshotType string
    The type of the snapshot.
    SourceDiskSize string
    The capacity of the source disk. Unit: GiB.
    SourceDiskType string
    The type of the source disk.
    Status string
    The status of the snapshot.
    createTime String
    The time when the snapshot was created.
    description String
    The description of the snapshot.
    desktopId String
    The ID of the cloud desktop to which the snapshot belongs.
    id String
    The ID of the Snapshot.
    progress String
    The progress of creating the snapshot.
    remainTime Integer
    The remaining time that is required to create the snapshot. Unit: seconds.
    snapshotId String
    The ID of the snapshot.
    snapshotName String
    The name of the snapshot.
    snapshotType String
    The type of the snapshot.
    sourceDiskSize String
    The capacity of the source disk. Unit: GiB.
    sourceDiskType String
    The type of the source disk.
    status String
    The status of the snapshot.
    createTime string
    The time when the snapshot was created.
    description string
    The description of the snapshot.
    desktopId string
    The ID of the cloud desktop to which the snapshot belongs.
    id string
    The ID of the Snapshot.
    progress string
    The progress of creating the snapshot.
    remainTime number
    The remaining time that is required to create the snapshot. Unit: seconds.
    snapshotId string
    The ID of the snapshot.
    snapshotName string
    The name of the snapshot.
    snapshotType string
    The type of the snapshot.
    sourceDiskSize string
    The capacity of the source disk. Unit: GiB.
    sourceDiskType string
    The type of the source disk.
    status string
    The status of the snapshot.
    create_time str
    The time when the snapshot was created.
    description str
    The description of the snapshot.
    desktop_id str
    The ID of the cloud desktop to which the snapshot belongs.
    id str
    The ID of the Snapshot.
    progress str
    The progress of creating the snapshot.
    remain_time int
    The remaining time that is required to create the snapshot. Unit: seconds.
    snapshot_id str
    The ID of the snapshot.
    snapshot_name str
    The name of the snapshot.
    snapshot_type str
    The type of the snapshot.
    source_disk_size str
    The capacity of the source disk. Unit: GiB.
    source_disk_type str
    The type of the source disk.
    status str
    The status of the snapshot.
    createTime String
    The time when the snapshot was created.
    description String
    The description of the snapshot.
    desktopId String
    The ID of the cloud desktop to which the snapshot belongs.
    id String
    The ID of the Snapshot.
    progress String
    The progress of creating the snapshot.
    remainTime Number
    The remaining time that is required to create the snapshot. Unit: seconds.
    snapshotId String
    The ID of the snapshot.
    snapshotName String
    The name of the snapshot.
    snapshotType String
    The type of the snapshot.
    sourceDiskSize String
    The capacity of the source disk. Unit: GiB.
    sourceDiskType String
    The type of the source disk.
    status String
    The status of the snapshot.

    Package Details

    Repository
    Alibaba Cloud pulumi/pulumi-alicloud
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the alicloud Terraform Provider.
    alicloud logo
    Alibaba Cloud v3.51.0 published on Saturday, Mar 23, 2024 by Pulumi