volcengine.nas.Snapshot
Explore with Pulumi AI
Provides a resource to manage nas snapshot
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcengine = Pulumi.Volcengine;
return await Deployment.RunAsync(() =>
{
var foo = new Volcengine.Nas.Snapshot("foo", new()
{
Description = "desc2",
FileSystemId = "enas-cnbj5c18f02afe0e",
SnapshotName = "tfsnap3",
});
});
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/nas"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := nas.NewSnapshot(ctx, "foo", &nas.SnapshotArgs{
Description: pulumi.String("desc2"),
FileSystemId: pulumi.String("enas-cnbj5c18f02afe0e"),
SnapshotName: pulumi.String("tfsnap3"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.volcengine.nas.Snapshot;
import com.pulumi.volcengine.nas.SnapshotArgs;
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) {
var foo = new Snapshot("foo", SnapshotArgs.builder()
.description("desc2")
.fileSystemId("enas-cnbj5c18f02afe0e")
.snapshotName("tfsnap3")
.build());
}
}
import pulumi
import pulumi_volcengine as volcengine
foo = volcengine.nas.Snapshot("foo",
description="desc2",
file_system_id="enas-cnbj5c18f02afe0e",
snapshot_name="tfsnap3")
import * as pulumi from "@pulumi/pulumi";
import * as volcengine from "@volcengine/pulumi";
const foo = new volcengine.nas.Snapshot("foo", {
description: "desc2",
fileSystemId: "enas-cnbj5c18f02afe0e",
snapshotName: "tfsnap3",
});
resources:
foo:
type: volcengine:nas:Snapshot
properties:
description: desc2
fileSystemId: enas-cnbj5c18f02afe0e
snapshotName: tfsnap3
Create Snapshot Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Snapshot(name: string, args: SnapshotArgs, opts?: CustomResourceOptions);
@overload
def Snapshot(resource_name: str,
args: SnapshotArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Snapshot(resource_name: str,
opts: Optional[ResourceOptions] = None,
file_system_id: Optional[str] = None,
snapshot_name: Optional[str] = None,
description: Optional[str] = None)
func NewSnapshot(ctx *Context, name string, args SnapshotArgs, opts ...ResourceOption) (*Snapshot, error)
public Snapshot(string name, SnapshotArgs args, CustomResourceOptions? opts = null)
public Snapshot(String name, SnapshotArgs args)
public Snapshot(String name, SnapshotArgs args, CustomResourceOptions options)
type: volcengine:nas:Snapshot
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SnapshotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SnapshotArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SnapshotArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SnapshotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SnapshotArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var snapshotResource = new Volcengine.Nas.Snapshot("snapshotResource", new()
{
FileSystemId = "string",
SnapshotName = "string",
Description = "string",
});
example, err := nas.NewSnapshot(ctx, "snapshotResource", &nas.SnapshotArgs{
FileSystemId: pulumi.String("string"),
SnapshotName: pulumi.String("string"),
Description: pulumi.String("string"),
})
var snapshotResource = new Snapshot("snapshotResource", SnapshotArgs.builder()
.fileSystemId("string")
.snapshotName("string")
.description("string")
.build());
snapshot_resource = volcengine.nas.Snapshot("snapshotResource",
file_system_id="string",
snapshot_name="string",
description="string")
const snapshotResource = new volcengine.nas.Snapshot("snapshotResource", {
fileSystemId: "string",
snapshotName: "string",
description: "string",
});
type: volcengine:nas:Snapshot
properties:
description: string
fileSystemId: string
snapshotName: string
Snapshot Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Snapshot resource accepts the following input properties:
- File
System stringId - The ID of the file system.
- Snapshot
Name string - The name of snapshot.
- Description string
- The description of snapshot.
- File
System stringId - The ID of the file system.
- Snapshot
Name string - The name of snapshot.
- Description string
- The description of snapshot.
- file
System StringId - The ID of the file system.
- snapshot
Name String - The name of snapshot.
- description String
- The description of snapshot.
- file
System stringId - The ID of the file system.
- snapshot
Name string - The name of snapshot.
- description string
- The description of snapshot.
- file_
system_ strid - The ID of the file system.
- snapshot_
name str - The name of snapshot.
- description str
- The description of snapshot.
- file
System StringId - The ID of the file system.
- snapshot
Name String - The name of snapshot.
- description String
- The description of snapshot.
Outputs
All input properties are implicitly available as output properties. Additionally, the Snapshot resource produces the following output properties:
- Create
Time string - The create time of snapshot.
- File
System stringName - The name of file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Encrypt bool - Whether is encrypt.
- Progress string
- The progress of snapshot.
- Snapshot
Type string - The type of snapshot.
- Source
Size int - The size of source.
- Source
Version string - The source version info.
- Status string
- The status of snapshot.
- Zone
Id string - The ID of zone.
- Create
Time string - The create time of snapshot.
- File
System stringName - The name of file system.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Encrypt bool - Whether is encrypt.
- Progress string
- The progress of snapshot.
- Snapshot
Type string - The type of snapshot.
- Source
Size int - The size of source.
- Source
Version string - The source version info.
- Status string
- The status of snapshot.
- Zone
Id string - The ID of zone.
- create
Time String - The create time of snapshot.
- file
System StringName - The name of file system.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Encrypt Boolean - Whether is encrypt.
- progress String
- The progress of snapshot.
- snapshot
Type String - The type of snapshot.
- source
Size Integer - The size of source.
- source
Version String - The source version info.
- status String
- The status of snapshot.
- zone
Id String - The ID of zone.
- create
Time string - The create time of snapshot.
- file
System stringName - The name of file system.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Encrypt boolean - Whether is encrypt.
- progress string
- The progress of snapshot.
- snapshot
Type string - The type of snapshot.
- source
Size number - The size of source.
- source
Version string - The source version info.
- status string
- The status of snapshot.
- zone
Id string - The ID of zone.
- create_
time str - The create time of snapshot.
- file_
system_ strname - The name of file system.
- id str
- The provider-assigned unique ID for this managed resource.
- is_
encrypt bool - Whether is encrypt.
- progress str
- The progress of snapshot.
- snapshot_
type str - The type of snapshot.
- source_
size int - The size of source.
- source_
version str - The source version info.
- status str
- The status of snapshot.
- zone_
id str - The ID of zone.
- create
Time String - The create time of snapshot.
- file
System StringName - The name of file system.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Encrypt Boolean - Whether is encrypt.
- progress String
- The progress of snapshot.
- snapshot
Type String - The type of snapshot.
- source
Size Number - The size of source.
- source
Version String - The source version info.
- status String
- The status of snapshot.
- zone
Id String - The ID of zone.
Look up Existing Snapshot Resource
Get an existing Snapshot resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SnapshotState, opts?: CustomResourceOptions): Snapshot
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
file_system_id: Optional[str] = None,
file_system_name: Optional[str] = None,
is_encrypt: Optional[bool] = None,
progress: Optional[str] = None,
snapshot_name: Optional[str] = None,
snapshot_type: Optional[str] = None,
source_size: Optional[int] = None,
source_version: Optional[str] = None,
status: Optional[str] = None,
zone_id: Optional[str] = None) -> Snapshot
func GetSnapshot(ctx *Context, name string, id IDInput, state *SnapshotState, opts ...ResourceOption) (*Snapshot, error)
public static Snapshot Get(string name, Input<string> id, SnapshotState? state, CustomResourceOptions? opts = null)
public static Snapshot get(String name, Output<String> id, SnapshotState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - The create time of snapshot.
- Description string
- The description of snapshot.
- File
System stringId - The ID of the file system.
- File
System stringName - The name of file system.
- Is
Encrypt bool - Whether is encrypt.
- Progress string
- The progress of snapshot.
- Snapshot
Name string - The name of snapshot.
- Snapshot
Type string - The type of snapshot.
- Source
Size int - The size of source.
- Source
Version string - The source version info.
- Status string
- The status of snapshot.
- Zone
Id string - The ID of zone.
- Create
Time string - The create time of snapshot.
- Description string
- The description of snapshot.
- File
System stringId - The ID of the file system.
- File
System stringName - The name of file system.
- Is
Encrypt bool - Whether is encrypt.
- Progress string
- The progress of snapshot.
- Snapshot
Name string - The name of snapshot.
- Snapshot
Type string - The type of snapshot.
- Source
Size int - The size of source.
- Source
Version string - The source version info.
- Status string
- The status of snapshot.
- Zone
Id string - The ID of zone.
- create
Time String - The create time of snapshot.
- description String
- The description of snapshot.
- file
System StringId - The ID of the file system.
- file
System StringName - The name of file system.
- is
Encrypt Boolean - Whether is encrypt.
- progress String
- The progress of snapshot.
- snapshot
Name String - The name of snapshot.
- snapshot
Type String - The type of snapshot.
- source
Size Integer - The size of source.
- source
Version String - The source version info.
- status String
- The status of snapshot.
- zone
Id String - The ID of zone.
- create
Time string - The create time of snapshot.
- description string
- The description of snapshot.
- file
System stringId - The ID of the file system.
- file
System stringName - The name of file system.
- is
Encrypt boolean - Whether is encrypt.
- progress string
- The progress of snapshot.
- snapshot
Name string - The name of snapshot.
- snapshot
Type string - The type of snapshot.
- source
Size number - The size of source.
- source
Version string - The source version info.
- status string
- The status of snapshot.
- zone
Id string - The ID of zone.
- create_
time str - The create time of snapshot.
- description str
- The description of snapshot.
- file_
system_ strid - The ID of the file system.
- file_
system_ strname - The name of file system.
- is_
encrypt bool - Whether is encrypt.
- progress str
- The progress of snapshot.
- snapshot_
name str - The name of snapshot.
- snapshot_
type str - The type of snapshot.
- source_
size int - The size of source.
- source_
version str - The source version info.
- status str
- The status of snapshot.
- zone_
id str - The ID of zone.
- create
Time String - The create time of snapshot.
- description String
- The description of snapshot.
- file
System StringId - The ID of the file system.
- file
System StringName - The name of file system.
- is
Encrypt Boolean - Whether is encrypt.
- progress String
- The progress of snapshot.
- snapshot
Name String - The name of snapshot.
- snapshot
Type String - The type of snapshot.
- source
Size Number - The size of source.
- source
Version String - The source version info.
- status String
- The status of snapshot.
- zone
Id String - The ID of zone.
Import
Nas Snapshot can be imported using the id, e.g.
$ pulumi import volcengine:nas/snapshot:Snapshot default snap-472a716f****
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcengine volcengine/pulumi-volcengine
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
volcengine
Terraform Provider.