Scaleway v1.15.0 published on Tuesday, Jul 30, 2024 by pulumiverse
scaleway.getBlockSnapshot
Explore with Pulumi AI
Gets information about a Block Snapshot.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
const mySnapshot = scaleway.getBlockSnapshot({
snapshotId: "11111111-1111-1111-1111-111111111111",
});
import pulumi
import pulumi_scaleway as scaleway
my_snapshot = scaleway.get_block_snapshot(snapshot_id="11111111-1111-1111-1111-111111111111")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scaleway.LookupBlockSnapshot(ctx, &scaleway.LookupBlockSnapshotArgs{
SnapshotId: pulumi.StringRef("11111111-1111-1111-1111-111111111111"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumi.Scaleway;
return await Deployment.RunAsync(() =>
{
var mySnapshot = Scaleway.GetBlockSnapshot.Invoke(new()
{
SnapshotId = "11111111-1111-1111-1111-111111111111",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.ScalewayFunctions;
import com.pulumi.scaleway.inputs.GetBlockSnapshotArgs;
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 mySnapshot = ScalewayFunctions.getBlockSnapshot(GetBlockSnapshotArgs.builder()
.snapshotId("11111111-1111-1111-1111-111111111111")
.build());
}
}
variables:
mySnapshot:
fn::invoke:
Function: scaleway:getBlockSnapshot
Arguments:
snapshotId: 11111111-1111-1111-1111-111111111111
Using getBlockSnapshot
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 getBlockSnapshot(args: GetBlockSnapshotArgs, opts?: InvokeOptions): Promise<GetBlockSnapshotResult>
function getBlockSnapshotOutput(args: GetBlockSnapshotOutputArgs, opts?: InvokeOptions): Output<GetBlockSnapshotResult>
def get_block_snapshot(name: Optional[str] = None,
project_id: Optional[str] = None,
snapshot_id: Optional[str] = None,
volume_id: Optional[str] = None,
zone: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetBlockSnapshotResult
def get_block_snapshot_output(name: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[str]] = None,
snapshot_id: Optional[pulumi.Input[str]] = None,
volume_id: Optional[pulumi.Input[str]] = None,
zone: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetBlockSnapshotResult]
func LookupBlockSnapshot(ctx *Context, args *LookupBlockSnapshotArgs, opts ...InvokeOption) (*LookupBlockSnapshotResult, error)
func LookupBlockSnapshotOutput(ctx *Context, args *LookupBlockSnapshotOutputArgs, opts ...InvokeOption) LookupBlockSnapshotResultOutput
> Note: This function is named LookupBlockSnapshot
in the Go SDK.
public static class GetBlockSnapshot
{
public static Task<GetBlockSnapshotResult> InvokeAsync(GetBlockSnapshotArgs args, InvokeOptions? opts = null)
public static Output<GetBlockSnapshotResult> Invoke(GetBlockSnapshotInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetBlockSnapshotResult> getBlockSnapshot(GetBlockSnapshotArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: scaleway:index/getBlockSnapshot:getBlockSnapshot
arguments:
# arguments dictionary
The following arguments are supported:
- Name string
- The name of the snapshot. Only one of
name
andsnapshot_id
should be specified. - Project
Id string - The ID of the project the snapshot is associated with.
- Snapshot
Id string - The ID of the snapshot. Only one of
name
andsnapshot_id
should be specified. - Volume
Id string - The ID of the volume from which the snapshot has been created.
- Zone string
zone
) The zone in which the snapshot exists.
- Name string
- The name of the snapshot. Only one of
name
andsnapshot_id
should be specified. - Project
Id string - The ID of the project the snapshot is associated with.
- Snapshot
Id string - The ID of the snapshot. Only one of
name
andsnapshot_id
should be specified. - Volume
Id string - The ID of the volume from which the snapshot has been created.
- Zone string
zone
) The zone in which the snapshot exists.
- name String
- The name of the snapshot. Only one of
name
andsnapshot_id
should be specified. - project
Id String - The ID of the project the snapshot is associated with.
- snapshot
Id String - The ID of the snapshot. Only one of
name
andsnapshot_id
should be specified. - volume
Id String - The ID of the volume from which the snapshot has been created.
- zone String
zone
) The zone in which the snapshot exists.
- name string
- The name of the snapshot. Only one of
name
andsnapshot_id
should be specified. - project
Id string - The ID of the project the snapshot is associated with.
- snapshot
Id string - The ID of the snapshot. Only one of
name
andsnapshot_id
should be specified. - volume
Id string - The ID of the volume from which the snapshot has been created.
- zone string
zone
) The zone in which the snapshot exists.
- name str
- The name of the snapshot. Only one of
name
andsnapshot_id
should be specified. - project_
id str - The ID of the project the snapshot is associated with.
- snapshot_
id str - The ID of the snapshot. Only one of
name
andsnapshot_id
should be specified. - volume_
id str - The ID of the volume from which the snapshot has been created.
- zone str
zone
) The zone in which the snapshot exists.
- name String
- The name of the snapshot. Only one of
name
andsnapshot_id
should be specified. - project
Id String - The ID of the project the snapshot is associated with.
- snapshot
Id String - The ID of the snapshot. Only one of
name
andsnapshot_id
should be specified. - volume
Id String - The ID of the volume from which the snapshot has been created.
- zone String
zone
) The zone in which the snapshot exists.
getBlockSnapshot Result
The following output properties are available:
- id str
- The provider-assigned unique ID for this managed resource.
- Sequence[str]
- name str
- project_
id str - snapshot_
id str - volume_
id str - zone str
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.