Viewing docs for Google Cloud v9.15.0
published on Thursday, Mar 12, 2026 by Pulumi
published on Thursday, Mar 12, 2026 by Pulumi
Viewing docs for Google Cloud v9.15.0
published on Thursday, Mar 12, 2026 by Pulumi
published on Thursday, Mar 12, 2026 by Pulumi
To get more information about Snapshot, see:
- API documentation
- How-to Guides
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
//by name
const snapshot = gcp.compute.getSnapshot({
name: "my-snapshot",
});
// using a filter
const latest_snapshot = gcp.compute.getSnapshot({
filter: "name != my-snapshot",
mostRecent: true,
});
import pulumi
import pulumi_gcp as gcp
#by name
snapshot = gcp.compute.get_snapshot(name="my-snapshot")
# using a filter
latest_snapshot = gcp.compute.get_snapshot(filter="name != my-snapshot",
most_recent=True)
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// by name
_, err := compute.LookupSnapshot(ctx, &compute.LookupSnapshotArgs{
Name: pulumi.StringRef("my-snapshot"),
}, nil)
if err != nil {
return err
}
// using a filter
_, err = compute.LookupSnapshot(ctx, &compute.LookupSnapshotArgs{
Filter: pulumi.StringRef("name != my-snapshot"),
MostRecent: pulumi.BoolRef(true),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
//by name
var snapshot = Gcp.Compute.GetSnapshot.Invoke(new()
{
Name = "my-snapshot",
});
// using a filter
var latest_snapshot = Gcp.Compute.GetSnapshot.Invoke(new()
{
Filter = "name != my-snapshot",
MostRecent = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.ComputeFunctions;
import com.pulumi.gcp.compute.inputs.GetSnapshotArgs;
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) {
//by name
final var snapshot = ComputeFunctions.getSnapshot(GetSnapshotArgs.builder()
.name("my-snapshot")
.build());
// using a filter
final var latest-snapshot = ComputeFunctions.getSnapshot(GetSnapshotArgs.builder()
.filter("name != my-snapshot")
.mostRecent(true)
.build());
}
}
variables:
#by name
snapshot:
fn::invoke:
function: gcp:compute:getSnapshot
arguments:
name: my-snapshot
# using a filter
latest-snapshot:
fn::invoke:
function: gcp:compute:getSnapshot
arguments:
filter: name != my-snapshot
mostRecent: true
Using getSnapshot
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 getSnapshot(args: GetSnapshotArgs, opts?: InvokeOptions): Promise<GetSnapshotResult>
function getSnapshotOutput(args: GetSnapshotOutputArgs, opts?: InvokeOptions): Output<GetSnapshotResult>def get_snapshot(filter: Optional[str] = None,
most_recent: Optional[bool] = None,
name: Optional[str] = None,
project: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSnapshotResult
def get_snapshot_output(filter: Optional[pulumi.Input[str]] = None,
most_recent: Optional[pulumi.Input[bool]] = None,
name: Optional[pulumi.Input[str]] = None,
project: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSnapshotResult]func LookupSnapshot(ctx *Context, args *LookupSnapshotArgs, opts ...InvokeOption) (*LookupSnapshotResult, error)
func LookupSnapshotOutput(ctx *Context, args *LookupSnapshotOutputArgs, opts ...InvokeOption) LookupSnapshotResultOutput> Note: This function is named LookupSnapshot in the Go SDK.
public static class GetSnapshot
{
public static Task<GetSnapshotResult> InvokeAsync(GetSnapshotArgs args, InvokeOptions? opts = null)
public static Output<GetSnapshotResult> Invoke(GetSnapshotInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetSnapshotResult> getSnapshot(GetSnapshotArgs args, InvokeOptions options)
public static Output<GetSnapshotResult> getSnapshot(GetSnapshotArgs args, InvokeOptions options)
fn::invoke:
function: gcp:compute/getSnapshot:getSnapshot
arguments:
# arguments dictionaryThe following arguments are supported:
- Filter string
- A filter to retrieve the compute snapshot.
See API filter parameter documentation for reference.
If multiple compute snapshot match, either adjust the filter or specify
most_recent. One ofnameorfiltermust be provided. If you want to use a regular expression, use theeq(equal) orne(not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. ExamplesourceDisk eq '.*(.*/data-disk$).*' - Most
Recent bool - If
filteris provided, ensures the most recent snapshot is returned when multiple compute snapshot match. - Name string
- The name of the compute snapshot. One of
nameorfiltermust be provided. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Filter string
- A filter to retrieve the compute snapshot.
See API filter parameter documentation for reference.
If multiple compute snapshot match, either adjust the filter or specify
most_recent. One ofnameorfiltermust be provided. If you want to use a regular expression, use theeq(equal) orne(not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. ExamplesourceDisk eq '.*(.*/data-disk$).*' - Most
Recent bool - If
filteris provided, ensures the most recent snapshot is returned when multiple compute snapshot match. - Name string
- The name of the compute snapshot. One of
nameorfiltermust be provided. - Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- filter String
- A filter to retrieve the compute snapshot.
See API filter parameter documentation for reference.
If multiple compute snapshot match, either adjust the filter or specify
most_recent. One ofnameorfiltermust be provided. If you want to use a regular expression, use theeq(equal) orne(not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. ExamplesourceDisk eq '.*(.*/data-disk$).*' - most
Recent Boolean - If
filteris provided, ensures the most recent snapshot is returned when multiple compute snapshot match. - name String
- The name of the compute snapshot. One of
nameorfiltermust be provided. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- filter string
- A filter to retrieve the compute snapshot.
See API filter parameter documentation for reference.
If multiple compute snapshot match, either adjust the filter or specify
most_recent. One ofnameorfiltermust be provided. If you want to use a regular expression, use theeq(equal) orne(not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. ExamplesourceDisk eq '.*(.*/data-disk$).*' - most
Recent boolean - If
filteris provided, ensures the most recent snapshot is returned when multiple compute snapshot match. - name string
- The name of the compute snapshot. One of
nameorfiltermust be provided. - project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- filter str
- A filter to retrieve the compute snapshot.
See API filter parameter documentation for reference.
If multiple compute snapshot match, either adjust the filter or specify
most_recent. One ofnameorfiltermust be provided. If you want to use a regular expression, use theeq(equal) orne(not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. ExamplesourceDisk eq '.*(.*/data-disk$).*' - most_
recent bool - If
filteris provided, ensures the most recent snapshot is returned when multiple compute snapshot match. - name str
- The name of the compute snapshot. One of
nameorfiltermust be provided. - project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- filter String
- A filter to retrieve the compute snapshot.
See API filter parameter documentation for reference.
If multiple compute snapshot match, either adjust the filter or specify
most_recent. One ofnameorfiltermust be provided. If you want to use a regular expression, use theeq(equal) orne(not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. ExamplesourceDisk eq '.*(.*/data-disk$).*' - most
Recent Boolean - If
filteris provided, ensures the most recent snapshot is returned when multiple compute snapshot match. - name String
- The name of the compute snapshot. One of
nameorfiltermust be provided. - project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
getSnapshot Result
The following output properties are available:
- Chain
Name string - Creation
Timestamp string - Description string
- Disk
Size intGb - Effective
Labels Dictionary<string, string> - Guest
Flush bool - Id string
- The provider-assigned unique ID for this managed resource.
- Label
Fingerprint string - Labels Dictionary<string, string>
- Licenses List<string>
- Pulumi
Labels Dictionary<string, string> - Self
Link string - Snapshot
Encryption List<GetKeys Snapshot Snapshot Encryption Key> - Snapshot
Id int - Snapshot
Type string - Source
Disk string - Source
Disk List<GetEncryption Keys Snapshot Source Disk Encryption Key> - Source
Instant stringSnapshot - Storage
Bytes int - Storage
Locations List<string> - Zone string
- Filter string
- Most
Recent bool - Name string
- Project string
- Chain
Name string - Creation
Timestamp string - Description string
- Disk
Size intGb - Effective
Labels map[string]string - Guest
Flush bool - Id string
- The provider-assigned unique ID for this managed resource.
- Label
Fingerprint string - Labels map[string]string
- Licenses []string
- Pulumi
Labels map[string]string - Self
Link string - Snapshot
Encryption []GetKeys Snapshot Snapshot Encryption Key - Snapshot
Id int - Snapshot
Type string - Source
Disk string - Source
Disk []GetEncryption Keys Snapshot Source Disk Encryption Key - Source
Instant stringSnapshot - Storage
Bytes int - Storage
Locations []string - Zone string
- Filter string
- Most
Recent bool - Name string
- Project string
- chain
Name String - creation
Timestamp String - description String
- disk
Size IntegerGb - effective
Labels Map<String,String> - guest
Flush Boolean - id String
- The provider-assigned unique ID for this managed resource.
- label
Fingerprint String - labels Map<String,String>
- licenses List<String>
- pulumi
Labels Map<String,String> - self
Link String - snapshot
Encryption List<GetKeys Snapshot Snapshot Encryption Key> - snapshot
Id Integer - snapshot
Type String - source
Disk String - source
Disk List<GetEncryption Keys Snapshot Source Disk Encryption Key> - source
Instant StringSnapshot - storage
Bytes Integer - storage
Locations List<String> - zone String
- filter String
- most
Recent Boolean - name String
- project String
- chain
Name string - creation
Timestamp string - description string
- disk
Size numberGb - effective
Labels {[key: string]: string} - guest
Flush boolean - id string
- The provider-assigned unique ID for this managed resource.
- label
Fingerprint string - labels {[key: string]: string}
- licenses string[]
- pulumi
Labels {[key: string]: string} - self
Link string - snapshot
Encryption GetKeys Snapshot Snapshot Encryption Key[] - snapshot
Id number - snapshot
Type string - source
Disk string - source
Disk GetEncryption Keys Snapshot Source Disk Encryption Key[] - source
Instant stringSnapshot - storage
Bytes number - storage
Locations string[] - zone string
- filter string
- most
Recent boolean - name string
- project string
- chain_
name str - creation_
timestamp str - description str
- disk_
size_ intgb - effective_
labels Mapping[str, str] - guest_
flush bool - id str
- The provider-assigned unique ID for this managed resource.
- label_
fingerprint str - labels Mapping[str, str]
- licenses Sequence[str]
- pulumi_
labels Mapping[str, str] - self_
link str - snapshot_
encryption_ Sequence[Getkeys Snapshot Snapshot Encryption Key] - snapshot_
id int - snapshot_
type str - source_
disk str - source_
disk_ Sequence[Getencryption_ keys Snapshot Source Disk Encryption Key] - source_
instant_ strsnapshot - storage_
bytes int - storage_
locations Sequence[str] - zone str
- filter str
- most_
recent bool - name str
- project str
- chain
Name String - creation
Timestamp String - description String
- disk
Size NumberGb - effective
Labels Map<String> - guest
Flush Boolean - id String
- The provider-assigned unique ID for this managed resource.
- label
Fingerprint String - labels Map<String>
- licenses List<String>
- pulumi
Labels Map<String> - self
Link String - snapshot
Encryption List<Property Map>Keys - snapshot
Id Number - snapshot
Type String - source
Disk String - source
Disk List<Property Map>Encryption Keys - source
Instant StringSnapshot - storage
Bytes Number - storage
Locations List<String> - zone String
- filter String
- most
Recent Boolean - name String
- project String
Supporting Types
GetSnapshotSnapshotEncryptionKey
- Kms
Key stringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- Kms
Key stringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- Rsa
Encrypted stringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- Sha256 string
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- Kms
Key stringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- Kms
Key stringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- Rsa
Encrypted stringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- Sha256 string
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key StringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- kms
Key StringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa
Encrypted StringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- sha256 String
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key stringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- kms
Key stringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa
Encrypted stringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- sha256 string
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms_
key_ strself_ link - The name of the encryption key that is stored in Google Cloud KMS.
- kms_
key_ strservice_ account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw_
key str - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa_
encrypted_ strkey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- sha256 str
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
- kms
Key StringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- kms
Key StringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa
Encrypted StringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- sha256 String
- The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
GetSnapshotSourceDiskEncryptionKey
- Kms
Key stringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- Kms
Key stringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- Rsa
Encrypted stringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- Kms
Key stringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- Kms
Key stringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- Raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- Rsa
Encrypted stringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- kms
Key StringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- kms
Key StringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa
Encrypted StringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- kms
Key stringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- kms
Key stringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw
Key string - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa
Encrypted stringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- kms_
key_ strself_ link - The name of the encryption key that is stored in Google Cloud KMS.
- kms_
key_ strservice_ account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw_
key str - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa_
encrypted_ strkey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- kms
Key StringSelf Link - The name of the encryption key that is stored in Google Cloud KMS.
- kms
Key StringService Account - The service account used for the encryption request for the given KMS key. If absent, the Compute Engine Service Agent service account is used.
- raw
Key String - Specifies a 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
- rsa
Encrypted StringKey - Specifies an encryption key stored in Google Cloud KMS, encoded in RFC 4648 base64 to either encrypt or decrypt this resource.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-betaTerraform Provider.
Viewing docs for Google Cloud v9.15.0
published on Thursday, Mar 12, 2026 by Pulumi
published on Thursday, Mar 12, 2026 by Pulumi
