1. Packages
  2. Avi Provider
  3. API Docs
  4. getStatediffsnapshot
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

avi.getStatediffsnapshot

Explore with Pulumi AI

avi logo
avi 31.1.1 published on Monday, Apr 14, 2025 by vmware

    <!–

    Copyright 2021 VMware, Inc.
    SPDX-License-Identifier: Mozilla Public License 2.0
    

    –>

    layout: “avi”

    page_title: “AVI: avi.Statediffsnapshot” sidebar_current: “docs-avi-datasource-statediffsnapshot” description: |- Get information of Avi StatediffSnapshot.

    avi.Statediffsnapshot

    This data source is used to to get avi.Statediffsnapshot objects.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const fooStatediffsnapshot = avi.getStatediffsnapshot({
        name: "foo",
        uuid: "statediffsnapshot-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo_statediffsnapshot = avi.get_statediffsnapshot(name="foo",
        uuid="statediffsnapshot-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := avi.LookupStatediffsnapshot(ctx, &avi.LookupStatediffsnapshotArgs{
    			Name: pulumi.StringRef("foo"),
    			Uuid: pulumi.StringRef("statediffsnapshot-f9cf6b3e-a411-436f-95e2-2982ba2b217b"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Avi = Pulumi.Avi;
    
    return await Deployment.RunAsync(() => 
    {
        var fooStatediffsnapshot = Avi.GetStatediffsnapshot.Invoke(new()
        {
            Name = "foo",
            Uuid = "statediffsnapshot-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.AviFunctions;
    import com.pulumi.avi.inputs.GetStatediffsnapshotArgs;
    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 fooStatediffsnapshot = AviFunctions.getStatediffsnapshot(GetStatediffsnapshotArgs.builder()
                .name("foo")
                .uuid("statediffsnapshot-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
                .build());
    
        }
    }
    
    variables:
      fooStatediffsnapshot:
        fn::invoke:
          function: avi:getStatediffsnapshot
          arguments:
            name: foo
            uuid: statediffsnapshot-f9cf6b3e-a411-436f-95e2-2982ba2b217b
    

    Using getStatediffsnapshot

    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 getStatediffsnapshot(args: GetStatediffsnapshotArgs, opts?: InvokeOptions): Promise<GetStatediffsnapshotResult>
    function getStatediffsnapshotOutput(args: GetStatediffsnapshotOutputArgs, opts?: InvokeOptions): Output<GetStatediffsnapshotResult>
    def get_statediffsnapshot(id: Optional[str] = None,
                              name: Optional[str] = None,
                              tenant_ref: Optional[str] = None,
                              uuid: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetStatediffsnapshotResult
    def get_statediffsnapshot_output(id: Optional[pulumi.Input[str]] = None,
                              name: Optional[pulumi.Input[str]] = None,
                              tenant_ref: Optional[pulumi.Input[str]] = None,
                              uuid: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetStatediffsnapshotResult]
    func LookupStatediffsnapshot(ctx *Context, args *LookupStatediffsnapshotArgs, opts ...InvokeOption) (*LookupStatediffsnapshotResult, error)
    func LookupStatediffsnapshotOutput(ctx *Context, args *LookupStatediffsnapshotOutputArgs, opts ...InvokeOption) LookupStatediffsnapshotResultOutput

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

    public static class GetStatediffsnapshot 
    {
        public static Task<GetStatediffsnapshotResult> InvokeAsync(GetStatediffsnapshotArgs args, InvokeOptions? opts = null)
        public static Output<GetStatediffsnapshotResult> Invoke(GetStatediffsnapshotInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetStatediffsnapshotResult> getStatediffsnapshot(GetStatediffsnapshotArgs args, InvokeOptions options)
    public static Output<GetStatediffsnapshotResult> getStatediffsnapshot(GetStatediffsnapshotArgs args, InvokeOptions options)
    
    fn::invoke:
      function: avi:index/getStatediffsnapshot:getStatediffsnapshot
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Search StatediffSnapshot by name.
    TenantRef string
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Search StatediffSnapshot by uuid.
    Id string
    Name string
    Search StatediffSnapshot by name.
    TenantRef string
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Search StatediffSnapshot by uuid.
    id String
    name String
    Search StatediffSnapshot by name.
    tenantRef String
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Search StatediffSnapshot by uuid.
    id string
    name string
    Search StatediffSnapshot by name.
    tenantRef string
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Search StatediffSnapshot by uuid.
    id str
    name str
    Search StatediffSnapshot by name.
    tenant_ref str
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Search StatediffSnapshot by uuid.
    id String
    name String
    Search StatediffSnapshot by name.
    tenantRef String
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Search StatediffSnapshot by uuid.

    getStatediffsnapshot Result

    The following output properties are available:

    GslbName string
    Name of gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    GslbUuid string
    Reference to base gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    Name string
    Name of statediff operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PoolName string
    Name of pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PoolUuid string
    Reference to base pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PostSnapshots List<GetStatediffsnapshotPostSnapshot>
    Post-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PreSnapshots List<GetStatediffsnapshotPreSnapshot>
    Pre-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupName string
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupUuid string
    Reference to base seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeName string
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeUuid string
    Reference to base se object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SnapshotType string
    Type of snapshot eg. Vs_snapshot, se_snapshot etc. Enum options - FB_VS_SNAPSHOT, FB_SE_SNAPSHOT, FB_GSLB_SNAPSHOT, FB_POOL_SNAPSHOT. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    StatediffOperationRef string
    Statediff operation uuid for identifying the operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Unique identifier for statediff entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    VsName string
    Name of vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    VsUuid string
    Reference to base vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    GslbName string
    Name of gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    GslbUuid string
    Reference to base gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Id string
    Name string
    Name of statediff operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PoolName string
    Name of pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PoolUuid string
    Reference to base pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PostSnapshots []GetStatediffsnapshotPostSnapshot
    Post-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    PreSnapshots []GetStatediffsnapshotPreSnapshot
    Pre-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupName string
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeGroupUuid string
    Reference to base seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeName string
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SeUuid string
    Reference to base se object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    SnapshotType string
    Type of snapshot eg. Vs_snapshot, se_snapshot etc. Enum options - FB_VS_SNAPSHOT, FB_SE_SNAPSHOT, FB_GSLB_SNAPSHOT, FB_POOL_SNAPSHOT. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    StatediffOperationRef string
    Statediff operation uuid for identifying the operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    Unique identifier for statediff entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    VsName string
    Name of vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    VsUuid string
    Reference to base vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbName String
    Name of gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbUuid String
    Reference to base gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    name String
    Name of statediff operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    poolName String
    Name of pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    poolUuid String
    Reference to base pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    postSnapshots List<GetStatediffsnapshotPostSnapshot>
    Post-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    preSnapshots List<GetStatediffsnapshotPreSnapshot>
    Pre-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupName String
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupUuid String
    Reference to base seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seName String
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seUuid String
    Reference to base se object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    snapshotType String
    Type of snapshot eg. Vs_snapshot, se_snapshot etc. Enum options - FB_VS_SNAPSHOT, FB_SE_SNAPSHOT, FB_GSLB_SNAPSHOT, FB_POOL_SNAPSHOT. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    statediffOperationRef String
    Statediff operation uuid for identifying the operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Unique identifier for statediff entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vsName String
    Name of vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vsUuid String
    Reference to base vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbName string
    Name of gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbUuid string
    Reference to base gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    id string
    name string
    Name of statediff operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    poolName string
    Name of pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    poolUuid string
    Reference to base pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    postSnapshots GetStatediffsnapshotPostSnapshot[]
    Post-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    preSnapshots GetStatediffsnapshotPreSnapshot[]
    Pre-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupName string
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupUuid string
    Reference to base seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seName string
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seUuid string
    Reference to base se object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    snapshotType string
    Type of snapshot eg. Vs_snapshot, se_snapshot etc. Enum options - FB_VS_SNAPSHOT, FB_SE_SNAPSHOT, FB_GSLB_SNAPSHOT, FB_POOL_SNAPSHOT. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    statediffOperationRef string
    Statediff operation uuid for identifying the operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    Unique identifier for statediff entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vsName string
    Name of vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vsUuid string
    Reference to base vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslb_name str
    Name of gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslb_uuid str
    Reference to base gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    id str
    name str
    Name of statediff operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    pool_name str
    Name of pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    pool_uuid str
    Reference to base pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    post_snapshots Sequence[GetStatediffsnapshotPostSnapshot]
    Post-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    pre_snapshots Sequence[GetStatediffsnapshotPreSnapshot]
    Pre-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_group_name str
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_group_uuid str
    Reference to base seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_name str
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    se_uuid str
    Reference to base se object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    snapshot_type str
    Type of snapshot eg. Vs_snapshot, se_snapshot etc. Enum options - FB_VS_SNAPSHOT, FB_SE_SNAPSHOT, FB_GSLB_SNAPSHOT, FB_POOL_SNAPSHOT. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    statediff_operation_ref str
    Statediff operation uuid for identifying the operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    Unique identifier for statediff entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vs_name str
    Name of vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vs_uuid str
    Reference to base vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbName String
    Name of gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbUuid String
    Reference to base gslb object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    id String
    name String
    Name of statediff operation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    poolName String
    Name of pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    poolUuid String
    Reference to base pool object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    postSnapshots List<Property Map>
    Post-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    preSnapshots List<Property Map>
    Pre-upgrade snapshot for vs. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupName String
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seGroupUuid String
    Reference to base seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seName String
    Name of seg object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    seUuid String
    Reference to base se object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    snapshotType String
    Type of snapshot eg. Vs_snapshot, se_snapshot etc. Enum options - FB_VS_SNAPSHOT, FB_SE_SNAPSHOT, FB_GSLB_SNAPSHOT, FB_POOL_SNAPSHOT. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    statediffOperationRef String
    Statediff operation uuid for identifying the operation. It is a reference to an object of type statediffoperation. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Tenant that this object belongs to. It is a reference to an object of type tenant. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    Unique identifier for statediff entry. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vsName String
    Name of vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.
    vsUuid String
    Reference to base vs object. Field introduced in 21.1.3. Allowed with any value in enterprise, enterprise with cloud services edition.

    Supporting Types

    GetStatediffsnapshotPostSnapshot

    GetStatediffsnapshotPostSnapshotGssnapshot

    GetStatediffsnapshotPostSnapshotGssnapshotOperStatus

    GetStatediffsnapshotPostSnapshotGssnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetStatediffsnapshotPostSnapshotPoolsnapshot

    GetStatediffsnapshotPostSnapshotPoolsnapshotOperStatus

    GetStatediffsnapshotPostSnapshotPoolsnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetStatediffsnapshotPostSnapshotSesnapshot

    GetStatediffsnapshotPostSnapshotSesnapshotOperStatus

    GetStatediffsnapshotPostSnapshotSesnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetStatediffsnapshotPostSnapshotVssnapshot

    GetStatediffsnapshotPostSnapshotVssnapshotOperStatus

    GetStatediffsnapshotPostSnapshotVssnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetStatediffsnapshotPreSnapshot

    GetStatediffsnapshotPreSnapshotGssnapshot

    GetStatediffsnapshotPreSnapshotGssnapshotOperStatus

    GetStatediffsnapshotPreSnapshotGssnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetStatediffsnapshotPreSnapshotPoolsnapshot

    GetStatediffsnapshotPreSnapshotPoolsnapshotOperStatus

    GetStatediffsnapshotPreSnapshotPoolsnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetStatediffsnapshotPreSnapshotSesnapshot

    GetStatediffsnapshotPreSnapshotSesnapshotOperStatus

    GetStatediffsnapshotPreSnapshotSesnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    GetStatediffsnapshotPreSnapshotVssnapshot

    GetStatediffsnapshotPreSnapshotVssnapshotOperStatus

    GetStatediffsnapshotPreSnapshotVssnapshotOperStatusLastChangedTime

    Secs string
    Usecs string
    Secs string
    Usecs string
    secs String
    usecs String
    secs string
    usecs string
    secs str
    usecs str
    secs String
    usecs String

    Package Details

    Repository
    avi vmware/terraform-provider-avi
    License
    Notes
    This Pulumi package is based on the avi Terraform Provider.
    avi logo
    avi 31.1.1 published on Monday, Apr 14, 2025 by vmware