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

avi.Gslbhsmruntime

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.Gslbhsmruntime” sidebar_current: “docs-avi-resource-gslbhsmruntime” description: |- Creates and manages Avi GslbHSMRuntime.

    avi.Gslbhsmruntime

    The GslbHSMRuntime resource allows the creation and management of Avi GslbHSMRuntime

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const foo = new avi.Gslbhsmruntime("foo", {tenantRef: "/api/tenant/?name=admin"});
    
    import pulumi
    import pulumi_avi as avi
    
    foo = avi.Gslbhsmruntime("foo", tenant_ref="/api/tenant/?name=admin")
    
    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.NewGslbhsmruntime(ctx, "foo", &avi.GslbhsmruntimeArgs{
    			TenantRef: pulumi.String("/api/tenant/?name=admin"),
    		})
    		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 foo = new Avi.Gslbhsmruntime("foo", new()
        {
            TenantRef = "/api/tenant/?name=admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.avi.Gslbhsmruntime;
    import com.pulumi.avi.GslbhsmruntimeArgs;
    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 Gslbhsmruntime("foo", GslbhsmruntimeArgs.builder()
                .tenantRef("/api/tenant/?name=admin")
                .build());
    
        }
    }
    
    resources:
      foo:
        type: avi:Gslbhsmruntime
        properties:
          tenantRef: /api/tenant/?name=admin
    

    Create Gslbhsmruntime Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Gslbhsmruntime(name: string, args?: GslbhsmruntimeArgs, opts?: CustomResourceOptions);
    @overload
    def Gslbhsmruntime(resource_name: str,
                       args: Optional[GslbhsmruntimeArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def Gslbhsmruntime(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       cluster_uuid: Optional[str] = None,
                       enabled: Optional[str] = None,
                       events: Optional[Sequence[GslbhsmruntimeEventArgs]] = None,
                       gslbhsmruntime_id: Optional[str] = None,
                       local_infos: Optional[Sequence[GslbhsmruntimeLocalInfoArgs]] = None,
                       name: Optional[str] = None,
                       obj_uuid: Optional[str] = None,
                       oper_statuses: Optional[Sequence[GslbhsmruntimeOperStatusArgs]] = None,
                       remote_infos: Optional[Sequence[GslbhsmruntimeRemoteInfoArgs]] = None,
                       send_interval: Optional[str] = None,
                       site_name: Optional[str] = None,
                       tenant_ref: Optional[str] = None,
                       uuid: Optional[str] = None)
    func NewGslbhsmruntime(ctx *Context, name string, args *GslbhsmruntimeArgs, opts ...ResourceOption) (*Gslbhsmruntime, error)
    public Gslbhsmruntime(string name, GslbhsmruntimeArgs? args = null, CustomResourceOptions? opts = null)
    public Gslbhsmruntime(String name, GslbhsmruntimeArgs args)
    public Gslbhsmruntime(String name, GslbhsmruntimeArgs args, CustomResourceOptions options)
    
    type: avi:Gslbhsmruntime
    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 GslbhsmruntimeArgs
    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 GslbhsmruntimeArgs
    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 GslbhsmruntimeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GslbhsmruntimeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GslbhsmruntimeArgs
    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 gslbhsmruntimeResource = new Avi.Gslbhsmruntime("gslbhsmruntimeResource", new()
    {
        ClusterUuid = "string",
        Enabled = "string",
        Events = new[]
        {
            new Avi.Inputs.GslbhsmruntimeEventArgs
            {
                Msgs = new[]
                {
                    "string",
                },
                Name = "string",
                Timestamps = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeEventTimestampArgs
                    {
                        Secs = "string",
                        Usecs = "string",
                    },
                },
                Uuid = "string",
            },
        },
        GslbhsmruntimeId = "string",
        LocalInfos = new[]
        {
            new Avi.Inputs.GslbhsmruntimeLocalInfoArgs
            {
                GsStatuses = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeLocalInfoGsStatusArgs
                    {
                        LastChangedTimes = new[]
                        {
                            new Avi.Inputs.GslbhsmruntimeLocalInfoGsStatusLastChangedTimeArgs
                            {
                                Secs = "string",
                                Usecs = "string",
                            },
                        },
                        NumPartialUpdates = "string",
                        PartialUpdateThreshold = "string",
                        State = "string",
                        Type = "string",
                    },
                },
                GslbInfos = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeLocalInfoGslbInfoArgs
                    {
                        ReplStates = new[]
                        {
                            new Avi.Inputs.GslbhsmruntimeLocalInfoGslbInfoReplStateArgs
                            {
                                CfgVersion = "string",
                                CfgVersionInFlight = "string",
                                LastChangedTimes = new[]
                                {
                                    new Avi.Inputs.GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTimeArgs
                                    {
                                        Secs = "string",
                                        Usecs = "string",
                                    },
                                },
                                LocalConfigs = new[]
                                {
                                    new Avi.Inputs.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigArgs
                                    {
                                        VsgsInfos = new[]
                                        {
                                            new Avi.Inputs.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoArgs
                                            {
                                                DnsvsUuid = "string",
                                                Ops = "string",
                                                Timestamps = new[]
                                                {
                                                    new Avi.Inputs.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs
                                                    {
                                                        Secs = "string",
                                                        Usecs = "string",
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                                Reason = "string",
                                SiteUuid = "string",
                                Status = "string",
                                Uuid = "string",
                            },
                        },
                    },
                },
            },
        },
        Name = "string",
        ObjUuid = "string",
        OperStatuses = new[]
        {
            new Avi.Inputs.GslbhsmruntimeOperStatusArgs
            {
                LastChangedTimes = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeOperStatusLastChangedTimeArgs
                    {
                        Secs = "string",
                        Usecs = "string",
                    },
                },
                ReasonCode = "string",
                ReasonCodeString = "string",
                Reasons = new[]
                {
                    "string",
                },
                State = "string",
            },
        },
        RemoteInfos = new[]
        {
            new Avi.Inputs.GslbhsmruntimeRemoteInfoArgs
            {
                GslbInfos = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeRemoteInfoGslbInfoArgs
                    {
                        ReplStates = new[]
                        {
                            new Avi.Inputs.GslbhsmruntimeRemoteInfoGslbInfoReplStateArgs
                            {
                                CfgVersion = "string",
                                CfgVersionInFlight = "string",
                                LastChangedTimes = new[]
                                {
                                    new Avi.Inputs.GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTimeArgs
                                    {
                                        Secs = "string",
                                        Usecs = "string",
                                    },
                                },
                                LocalConfigs = new[]
                                {
                                    new Avi.Inputs.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigArgs
                                    {
                                        VsgsInfos = new[]
                                        {
                                            new Avi.Inputs.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoArgs
                                            {
                                                DnsvsUuid = "string",
                                                Ops = "string",
                                                Timestamps = new[]
                                                {
                                                    new Avi.Inputs.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs
                                                    {
                                                        Secs = "string",
                                                        Usecs = "string",
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                                Reason = "string",
                                SiteUuid = "string",
                                Status = "string",
                                Uuid = "string",
                            },
                        },
                    },
                },
                OpsInfos = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeRemoteInfoOpsInfoArgs
                    {
                        Rrtokens = new[]
                        {
                            "string",
                        },
                    },
                },
                SyncInfos = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeRemoteInfoSyncInfoArgs
                    {
                        ErroredObjects = new[]
                        {
                            new Avi.Inputs.GslbhsmruntimeRemoteInfoSyncInfoErroredObjectArgs
                            {
                                DsName = "string",
                                Name = "string",
                                Ops = "string",
                                Reason = "string",
                                Status = "string",
                                Uuid = "string",
                            },
                        },
                        LastChangedTimes = new[]
                        {
                            new Avi.Inputs.GslbhsmruntimeRemoteInfoSyncInfoLastChangedTimeArgs
                            {
                                Secs = "string",
                                Usecs = "string",
                            },
                        },
                        LastFailObjs = new[]
                        {
                            new Avi.Inputs.GslbhsmruntimeRemoteInfoSyncInfoLastFailObjArgs
                            {
                                EventType = "string",
                                ObjName = "string",
                                ObjUuid = "string",
                            },
                        },
                        PrevTargetVersion = "string",
                        Reason = "string",
                        Recommendation = "string",
                        SiteVersion = "string",
                        SyncState = "string",
                        TargetVersion = "string",
                    },
                },
                SyncStats = new[]
                {
                    new Avi.Inputs.GslbhsmruntimeRemoteInfoSyncStatArgs
                    {
                        AcknowledgedVersion = "string",
                        PendingObjectCount = "string",
                        ReceivedVersion = "string",
                    },
                },
            },
        },
        SendInterval = "string",
        SiteName = "string",
        TenantRef = "string",
        Uuid = "string",
    });
    
    example, err := avi.NewGslbhsmruntime(ctx, "gslbhsmruntimeResource", &avi.GslbhsmruntimeArgs{
    	ClusterUuid: pulumi.String("string"),
    	Enabled:     pulumi.String("string"),
    	Events: avi.GslbhsmruntimeEventArray{
    		&avi.GslbhsmruntimeEventArgs{
    			Msgs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Name: pulumi.String("string"),
    			Timestamps: avi.GslbhsmruntimeEventTimestampArray{
    				&avi.GslbhsmruntimeEventTimestampArgs{
    					Secs:  pulumi.String("string"),
    					Usecs: pulumi.String("string"),
    				},
    			},
    			Uuid: pulumi.String("string"),
    		},
    	},
    	GslbhsmruntimeId: pulumi.String("string"),
    	LocalInfos: avi.GslbhsmruntimeLocalInfoArray{
    		&avi.GslbhsmruntimeLocalInfoArgs{
    			GsStatuses: avi.GslbhsmruntimeLocalInfoGsStatusArray{
    				&avi.GslbhsmruntimeLocalInfoGsStatusArgs{
    					LastChangedTimes: avi.GslbhsmruntimeLocalInfoGsStatusLastChangedTimeArray{
    						&avi.GslbhsmruntimeLocalInfoGsStatusLastChangedTimeArgs{
    							Secs:  pulumi.String("string"),
    							Usecs: pulumi.String("string"),
    						},
    					},
    					NumPartialUpdates:      pulumi.String("string"),
    					PartialUpdateThreshold: pulumi.String("string"),
    					State:                  pulumi.String("string"),
    					Type:                   pulumi.String("string"),
    				},
    			},
    			GslbInfos: avi.GslbhsmruntimeLocalInfoGslbInfoArray{
    				&avi.GslbhsmruntimeLocalInfoGslbInfoArgs{
    					ReplStates: avi.GslbhsmruntimeLocalInfoGslbInfoReplStateArray{
    						&avi.GslbhsmruntimeLocalInfoGslbInfoReplStateArgs{
    							CfgVersion:         pulumi.String("string"),
    							CfgVersionInFlight: pulumi.String("string"),
    							LastChangedTimes: avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTimeArray{
    								&avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTimeArgs{
    									Secs:  pulumi.String("string"),
    									Usecs: pulumi.String("string"),
    								},
    							},
    							LocalConfigs: avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigArray{
    								&avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigArgs{
    									VsgsInfos: avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoArray{
    										&avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoArgs{
    											DnsvsUuid: pulumi.String("string"),
    											Ops:       pulumi.String("string"),
    											Timestamps: avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArray{
    												&avi.GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs{
    													Secs:  pulumi.String("string"),
    													Usecs: pulumi.String("string"),
    												},
    											},
    										},
    									},
    								},
    							},
    							Reason:   pulumi.String("string"),
    							SiteUuid: pulumi.String("string"),
    							Status:   pulumi.String("string"),
    							Uuid:     pulumi.String("string"),
    						},
    					},
    				},
    			},
    		},
    	},
    	Name:    pulumi.String("string"),
    	ObjUuid: pulumi.String("string"),
    	OperStatuses: avi.GslbhsmruntimeOperStatusArray{
    		&avi.GslbhsmruntimeOperStatusArgs{
    			LastChangedTimes: avi.GslbhsmruntimeOperStatusLastChangedTimeArray{
    				&avi.GslbhsmruntimeOperStatusLastChangedTimeArgs{
    					Secs:  pulumi.String("string"),
    					Usecs: pulumi.String("string"),
    				},
    			},
    			ReasonCode:       pulumi.String("string"),
    			ReasonCodeString: pulumi.String("string"),
    			Reasons: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			State: pulumi.String("string"),
    		},
    	},
    	RemoteInfos: avi.GslbhsmruntimeRemoteInfoArray{
    		&avi.GslbhsmruntimeRemoteInfoArgs{
    			GslbInfos: avi.GslbhsmruntimeRemoteInfoGslbInfoArray{
    				&avi.GslbhsmruntimeRemoteInfoGslbInfoArgs{
    					ReplStates: avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateArray{
    						&avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateArgs{
    							CfgVersion:         pulumi.String("string"),
    							CfgVersionInFlight: pulumi.String("string"),
    							LastChangedTimes: avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTimeArray{
    								&avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTimeArgs{
    									Secs:  pulumi.String("string"),
    									Usecs: pulumi.String("string"),
    								},
    							},
    							LocalConfigs: avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigArray{
    								&avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigArgs{
    									VsgsInfos: avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoArray{
    										&avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoArgs{
    											DnsvsUuid: pulumi.String("string"),
    											Ops:       pulumi.String("string"),
    											Timestamps: avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArray{
    												&avi.GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs{
    													Secs:  pulumi.String("string"),
    													Usecs: pulumi.String("string"),
    												},
    											},
    										},
    									},
    								},
    							},
    							Reason:   pulumi.String("string"),
    							SiteUuid: pulumi.String("string"),
    							Status:   pulumi.String("string"),
    							Uuid:     pulumi.String("string"),
    						},
    					},
    				},
    			},
    			OpsInfos: avi.GslbhsmruntimeRemoteInfoOpsInfoArray{
    				&avi.GslbhsmruntimeRemoteInfoOpsInfoArgs{
    					Rrtokens: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    			SyncInfos: avi.GslbhsmruntimeRemoteInfoSyncInfoArray{
    				&avi.GslbhsmruntimeRemoteInfoSyncInfoArgs{
    					ErroredObjects: avi.GslbhsmruntimeRemoteInfoSyncInfoErroredObjectArray{
    						&avi.GslbhsmruntimeRemoteInfoSyncInfoErroredObjectArgs{
    							DsName: pulumi.String("string"),
    							Name:   pulumi.String("string"),
    							Ops:    pulumi.String("string"),
    							Reason: pulumi.String("string"),
    							Status: pulumi.String("string"),
    							Uuid:   pulumi.String("string"),
    						},
    					},
    					LastChangedTimes: avi.GslbhsmruntimeRemoteInfoSyncInfoLastChangedTimeArray{
    						&avi.GslbhsmruntimeRemoteInfoSyncInfoLastChangedTimeArgs{
    							Secs:  pulumi.String("string"),
    							Usecs: pulumi.String("string"),
    						},
    					},
    					LastFailObjs: avi.GslbhsmruntimeRemoteInfoSyncInfoLastFailObjArray{
    						&avi.GslbhsmruntimeRemoteInfoSyncInfoLastFailObjArgs{
    							EventType: pulumi.String("string"),
    							ObjName:   pulumi.String("string"),
    							ObjUuid:   pulumi.String("string"),
    						},
    					},
    					PrevTargetVersion: pulumi.String("string"),
    					Reason:            pulumi.String("string"),
    					Recommendation:    pulumi.String("string"),
    					SiteVersion:       pulumi.String("string"),
    					SyncState:         pulumi.String("string"),
    					TargetVersion:     pulumi.String("string"),
    				},
    			},
    			SyncStats: avi.GslbhsmruntimeRemoteInfoSyncStatArray{
    				&avi.GslbhsmruntimeRemoteInfoSyncStatArgs{
    					AcknowledgedVersion: pulumi.String("string"),
    					PendingObjectCount:  pulumi.String("string"),
    					ReceivedVersion:     pulumi.String("string"),
    				},
    			},
    		},
    	},
    	SendInterval: pulumi.String("string"),
    	SiteName:     pulumi.String("string"),
    	TenantRef:    pulumi.String("string"),
    	Uuid:         pulumi.String("string"),
    })
    
    var gslbhsmruntimeResource = new Gslbhsmruntime("gslbhsmruntimeResource", GslbhsmruntimeArgs.builder()
        .clusterUuid("string")
        .enabled("string")
        .events(GslbhsmruntimeEventArgs.builder()
            .msgs("string")
            .name("string")
            .timestamps(GslbhsmruntimeEventTimestampArgs.builder()
                .secs("string")
                .usecs("string")
                .build())
            .uuid("string")
            .build())
        .gslbhsmruntimeId("string")
        .localInfos(GslbhsmruntimeLocalInfoArgs.builder()
            .gsStatuses(GslbhsmruntimeLocalInfoGsStatusArgs.builder()
                .lastChangedTimes(GslbhsmruntimeLocalInfoGsStatusLastChangedTimeArgs.builder()
                    .secs("string")
                    .usecs("string")
                    .build())
                .numPartialUpdates("string")
                .partialUpdateThreshold("string")
                .state("string")
                .type("string")
                .build())
            .gslbInfos(GslbhsmruntimeLocalInfoGslbInfoArgs.builder()
                .replStates(GslbhsmruntimeLocalInfoGslbInfoReplStateArgs.builder()
                    .cfgVersion("string")
                    .cfgVersionInFlight("string")
                    .lastChangedTimes(GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTimeArgs.builder()
                        .secs("string")
                        .usecs("string")
                        .build())
                    .localConfigs(GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigArgs.builder()
                        .vsgsInfos(GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoArgs.builder()
                            .dnsvsUuid("string")
                            .ops("string")
                            .timestamps(GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs.builder()
                                .secs("string")
                                .usecs("string")
                                .build())
                            .build())
                        .build())
                    .reason("string")
                    .siteUuid("string")
                    .status("string")
                    .uuid("string")
                    .build())
                .build())
            .build())
        .name("string")
        .objUuid("string")
        .operStatuses(GslbhsmruntimeOperStatusArgs.builder()
            .lastChangedTimes(GslbhsmruntimeOperStatusLastChangedTimeArgs.builder()
                .secs("string")
                .usecs("string")
                .build())
            .reasonCode("string")
            .reasonCodeString("string")
            .reasons("string")
            .state("string")
            .build())
        .remoteInfos(GslbhsmruntimeRemoteInfoArgs.builder()
            .gslbInfos(GslbhsmruntimeRemoteInfoGslbInfoArgs.builder()
                .replStates(GslbhsmruntimeRemoteInfoGslbInfoReplStateArgs.builder()
                    .cfgVersion("string")
                    .cfgVersionInFlight("string")
                    .lastChangedTimes(GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTimeArgs.builder()
                        .secs("string")
                        .usecs("string")
                        .build())
                    .localConfigs(GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigArgs.builder()
                        .vsgsInfos(GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoArgs.builder()
                            .dnsvsUuid("string")
                            .ops("string")
                            .timestamps(GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs.builder()
                                .secs("string")
                                .usecs("string")
                                .build())
                            .build())
                        .build())
                    .reason("string")
                    .siteUuid("string")
                    .status("string")
                    .uuid("string")
                    .build())
                .build())
            .opsInfos(GslbhsmruntimeRemoteInfoOpsInfoArgs.builder()
                .rrtokens("string")
                .build())
            .syncInfos(GslbhsmruntimeRemoteInfoSyncInfoArgs.builder()
                .erroredObjects(GslbhsmruntimeRemoteInfoSyncInfoErroredObjectArgs.builder()
                    .dsName("string")
                    .name("string")
                    .ops("string")
                    .reason("string")
                    .status("string")
                    .uuid("string")
                    .build())
                .lastChangedTimes(GslbhsmruntimeRemoteInfoSyncInfoLastChangedTimeArgs.builder()
                    .secs("string")
                    .usecs("string")
                    .build())
                .lastFailObjs(GslbhsmruntimeRemoteInfoSyncInfoLastFailObjArgs.builder()
                    .eventType("string")
                    .objName("string")
                    .objUuid("string")
                    .build())
                .prevTargetVersion("string")
                .reason("string")
                .recommendation("string")
                .siteVersion("string")
                .syncState("string")
                .targetVersion("string")
                .build())
            .syncStats(GslbhsmruntimeRemoteInfoSyncStatArgs.builder()
                .acknowledgedVersion("string")
                .pendingObjectCount("string")
                .receivedVersion("string")
                .build())
            .build())
        .sendInterval("string")
        .siteName("string")
        .tenantRef("string")
        .uuid("string")
        .build());
    
    gslbhsmruntime_resource = avi.Gslbhsmruntime("gslbhsmruntimeResource",
        cluster_uuid="string",
        enabled="string",
        events=[{
            "msgs": ["string"],
            "name": "string",
            "timestamps": [{
                "secs": "string",
                "usecs": "string",
            }],
            "uuid": "string",
        }],
        gslbhsmruntime_id="string",
        local_infos=[{
            "gs_statuses": [{
                "last_changed_times": [{
                    "secs": "string",
                    "usecs": "string",
                }],
                "num_partial_updates": "string",
                "partial_update_threshold": "string",
                "state": "string",
                "type": "string",
            }],
            "gslb_infos": [{
                "repl_states": [{
                    "cfg_version": "string",
                    "cfg_version_in_flight": "string",
                    "last_changed_times": [{
                        "secs": "string",
                        "usecs": "string",
                    }],
                    "local_configs": [{
                        "vsgs_infos": [{
                            "dnsvs_uuid": "string",
                            "ops": "string",
                            "timestamps": [{
                                "secs": "string",
                                "usecs": "string",
                            }],
                        }],
                    }],
                    "reason": "string",
                    "site_uuid": "string",
                    "status": "string",
                    "uuid": "string",
                }],
            }],
        }],
        name="string",
        obj_uuid="string",
        oper_statuses=[{
            "last_changed_times": [{
                "secs": "string",
                "usecs": "string",
            }],
            "reason_code": "string",
            "reason_code_string": "string",
            "reasons": ["string"],
            "state": "string",
        }],
        remote_infos=[{
            "gslb_infos": [{
                "repl_states": [{
                    "cfg_version": "string",
                    "cfg_version_in_flight": "string",
                    "last_changed_times": [{
                        "secs": "string",
                        "usecs": "string",
                    }],
                    "local_configs": [{
                        "vsgs_infos": [{
                            "dnsvs_uuid": "string",
                            "ops": "string",
                            "timestamps": [{
                                "secs": "string",
                                "usecs": "string",
                            }],
                        }],
                    }],
                    "reason": "string",
                    "site_uuid": "string",
                    "status": "string",
                    "uuid": "string",
                }],
            }],
            "ops_infos": [{
                "rrtokens": ["string"],
            }],
            "sync_infos": [{
                "errored_objects": [{
                    "ds_name": "string",
                    "name": "string",
                    "ops": "string",
                    "reason": "string",
                    "status": "string",
                    "uuid": "string",
                }],
                "last_changed_times": [{
                    "secs": "string",
                    "usecs": "string",
                }],
                "last_fail_objs": [{
                    "event_type": "string",
                    "obj_name": "string",
                    "obj_uuid": "string",
                }],
                "prev_target_version": "string",
                "reason": "string",
                "recommendation": "string",
                "site_version": "string",
                "sync_state": "string",
                "target_version": "string",
            }],
            "sync_stats": [{
                "acknowledged_version": "string",
                "pending_object_count": "string",
                "received_version": "string",
            }],
        }],
        send_interval="string",
        site_name="string",
        tenant_ref="string",
        uuid="string")
    
    const gslbhsmruntimeResource = new avi.Gslbhsmruntime("gslbhsmruntimeResource", {
        clusterUuid: "string",
        enabled: "string",
        events: [{
            msgs: ["string"],
            name: "string",
            timestamps: [{
                secs: "string",
                usecs: "string",
            }],
            uuid: "string",
        }],
        gslbhsmruntimeId: "string",
        localInfos: [{
            gsStatuses: [{
                lastChangedTimes: [{
                    secs: "string",
                    usecs: "string",
                }],
                numPartialUpdates: "string",
                partialUpdateThreshold: "string",
                state: "string",
                type: "string",
            }],
            gslbInfos: [{
                replStates: [{
                    cfgVersion: "string",
                    cfgVersionInFlight: "string",
                    lastChangedTimes: [{
                        secs: "string",
                        usecs: "string",
                    }],
                    localConfigs: [{
                        vsgsInfos: [{
                            dnsvsUuid: "string",
                            ops: "string",
                            timestamps: [{
                                secs: "string",
                                usecs: "string",
                            }],
                        }],
                    }],
                    reason: "string",
                    siteUuid: "string",
                    status: "string",
                    uuid: "string",
                }],
            }],
        }],
        name: "string",
        objUuid: "string",
        operStatuses: [{
            lastChangedTimes: [{
                secs: "string",
                usecs: "string",
            }],
            reasonCode: "string",
            reasonCodeString: "string",
            reasons: ["string"],
            state: "string",
        }],
        remoteInfos: [{
            gslbInfos: [{
                replStates: [{
                    cfgVersion: "string",
                    cfgVersionInFlight: "string",
                    lastChangedTimes: [{
                        secs: "string",
                        usecs: "string",
                    }],
                    localConfigs: [{
                        vsgsInfos: [{
                            dnsvsUuid: "string",
                            ops: "string",
                            timestamps: [{
                                secs: "string",
                                usecs: "string",
                            }],
                        }],
                    }],
                    reason: "string",
                    siteUuid: "string",
                    status: "string",
                    uuid: "string",
                }],
            }],
            opsInfos: [{
                rrtokens: ["string"],
            }],
            syncInfos: [{
                erroredObjects: [{
                    dsName: "string",
                    name: "string",
                    ops: "string",
                    reason: "string",
                    status: "string",
                    uuid: "string",
                }],
                lastChangedTimes: [{
                    secs: "string",
                    usecs: "string",
                }],
                lastFailObjs: [{
                    eventType: "string",
                    objName: "string",
                    objUuid: "string",
                }],
                prevTargetVersion: "string",
                reason: "string",
                recommendation: "string",
                siteVersion: "string",
                syncState: "string",
                targetVersion: "string",
            }],
            syncStats: [{
                acknowledgedVersion: "string",
                pendingObjectCount: "string",
                receivedVersion: "string",
            }],
        }],
        sendInterval: "string",
        siteName: "string",
        tenantRef: "string",
        uuid: "string",
    });
    
    type: avi:Gslbhsmruntime
    properties:
        clusterUuid: string
        enabled: string
        events:
            - msgs:
                - string
              name: string
              timestamps:
                - secs: string
                  usecs: string
              uuid: string
        gslbhsmruntimeId: string
        localInfos:
            - gsStatuses:
                - lastChangedTimes:
                    - secs: string
                      usecs: string
                  numPartialUpdates: string
                  partialUpdateThreshold: string
                  state: string
                  type: string
              gslbInfos:
                - replStates:
                    - cfgVersion: string
                      cfgVersionInFlight: string
                      lastChangedTimes:
                        - secs: string
                          usecs: string
                      localConfigs:
                        - vsgsInfos:
                            - dnsvsUuid: string
                              ops: string
                              timestamps:
                                - secs: string
                                  usecs: string
                      reason: string
                      siteUuid: string
                      status: string
                      uuid: string
        name: string
        objUuid: string
        operStatuses:
            - lastChangedTimes:
                - secs: string
                  usecs: string
              reasonCode: string
              reasonCodeString: string
              reasons:
                - string
              state: string
        remoteInfos:
            - gslbInfos:
                - replStates:
                    - cfgVersion: string
                      cfgVersionInFlight: string
                      lastChangedTimes:
                        - secs: string
                          usecs: string
                      localConfigs:
                        - vsgsInfos:
                            - dnsvsUuid: string
                              ops: string
                              timestamps:
                                - secs: string
                                  usecs: string
                      reason: string
                      siteUuid: string
                      status: string
                      uuid: string
              opsInfos:
                - rrtokens:
                    - string
              syncInfos:
                - erroredObjects:
                    - dsName: string
                      name: string
                      ops: string
                      reason: string
                      status: string
                      uuid: string
                  lastChangedTimes:
                    - secs: string
                      usecs: string
                  lastFailObjs:
                    - eventType: string
                      objName: string
                      objUuid: string
                  prevTargetVersion: string
                  reason: string
                  recommendation: string
                  siteVersion: string
                  syncState: string
                  targetVersion: string
              syncStats:
                - acknowledgedVersion: string
                  pendingObjectCount: string
                  receivedVersion: string
        sendInterval: string
        siteName: string
        tenantRef: string
        uuid: string
    

    Gslbhsmruntime Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Gslbhsmruntime resource accepts the following input properties:

    ClusterUuid string
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Events List<GslbhsmruntimeEvent>
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    GslbhsmruntimeId string
    LocalInfos List<GslbhsmruntimeLocalInfo>
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OperStatuses List<GslbhsmruntimeOperStatus>
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    RemoteInfos List<GslbhsmruntimeRemoteInfo>
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SendInterval string
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SiteName string
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ClusterUuid string
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Events []GslbhsmruntimeEventArgs
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    GslbhsmruntimeId string
    LocalInfos []GslbhsmruntimeLocalInfoArgs
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OperStatuses []GslbhsmruntimeOperStatusArgs
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    RemoteInfos []GslbhsmruntimeRemoteInfoArgs
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SendInterval string
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SiteName string
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    clusterUuid String
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events List<GslbhsmruntimeEvent>
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntimeId String
    localInfos List<GslbhsmruntimeLocalInfo>
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    operStatuses List<GslbhsmruntimeOperStatus>
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remoteInfos List<GslbhsmruntimeRemoteInfo>
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sendInterval String
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    siteName String
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    clusterUuid string
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled string
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events GslbhsmruntimeEvent[]
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntimeId string
    localInfos GslbhsmruntimeLocalInfo[]
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    operStatuses GslbhsmruntimeOperStatus[]
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remoteInfos GslbhsmruntimeRemoteInfo[]
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sendInterval string
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    siteName string
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cluster_uuid str
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled str
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events Sequence[GslbhsmruntimeEventArgs]
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntime_id str
    local_infos Sequence[GslbhsmruntimeLocalInfoArgs]
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    obj_uuid str
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    oper_statuses Sequence[GslbhsmruntimeOperStatusArgs]
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remote_infos Sequence[GslbhsmruntimeRemoteInfoArgs]
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    send_interval str
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    site_name str
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    clusterUuid String
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events List<Property Map>
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntimeId String
    localInfos List<Property Map>
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    operStatuses List<Property Map>
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remoteInfos List<Property Map>
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sendInterval String
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    siteName String
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Gslbhsmruntime resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Gslbhsmruntime Resource

    Get an existing Gslbhsmruntime 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?: GslbhsmruntimeState, opts?: CustomResourceOptions): Gslbhsmruntime
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_uuid: Optional[str] = None,
            enabled: Optional[str] = None,
            events: Optional[Sequence[GslbhsmruntimeEventArgs]] = None,
            gslbhsmruntime_id: Optional[str] = None,
            local_infos: Optional[Sequence[GslbhsmruntimeLocalInfoArgs]] = None,
            name: Optional[str] = None,
            obj_uuid: Optional[str] = None,
            oper_statuses: Optional[Sequence[GslbhsmruntimeOperStatusArgs]] = None,
            remote_infos: Optional[Sequence[GslbhsmruntimeRemoteInfoArgs]] = None,
            send_interval: Optional[str] = None,
            site_name: Optional[str] = None,
            tenant_ref: Optional[str] = None,
            uuid: Optional[str] = None) -> Gslbhsmruntime
    func GetGslbhsmruntime(ctx *Context, name string, id IDInput, state *GslbhsmruntimeState, opts ...ResourceOption) (*Gslbhsmruntime, error)
    public static Gslbhsmruntime Get(string name, Input<string> id, GslbhsmruntimeState? state, CustomResourceOptions? opts = null)
    public static Gslbhsmruntime get(String name, Output<String> id, GslbhsmruntimeState state, CustomResourceOptions options)
    resources:  _:    type: avi:Gslbhsmruntime    get:      id: ${id}
    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.
    The following state arguments are supported:
    ClusterUuid string
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Events List<GslbhsmruntimeEvent>
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    GslbhsmruntimeId string
    LocalInfos List<GslbhsmruntimeLocalInfo>
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OperStatuses List<GslbhsmruntimeOperStatus>
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    RemoteInfos List<GslbhsmruntimeRemoteInfo>
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SendInterval string
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SiteName string
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ClusterUuid string
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Enabled string
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Events []GslbhsmruntimeEventArgs
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    GslbhsmruntimeId string
    LocalInfos []GslbhsmruntimeLocalInfoArgs
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ObjUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    OperStatuses []GslbhsmruntimeOperStatusArgs
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    RemoteInfos []GslbhsmruntimeRemoteInfoArgs
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SendInterval string
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    SiteName string
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    TenantRef string
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    clusterUuid String
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events List<GslbhsmruntimeEvent>
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntimeId String
    localInfos List<GslbhsmruntimeLocalInfo>
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    operStatuses List<GslbhsmruntimeOperStatus>
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remoteInfos List<GslbhsmruntimeRemoteInfo>
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sendInterval String
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    siteName String
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    clusterUuid string
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled string
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events GslbhsmruntimeEvent[]
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntimeId string
    localInfos GslbhsmruntimeLocalInfo[]
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    operStatuses GslbhsmruntimeOperStatus[]
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remoteInfos GslbhsmruntimeRemoteInfo[]
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sendInterval string
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    siteName string
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef string
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cluster_uuid str
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled str
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events Sequence[GslbhsmruntimeEventArgs]
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntime_id str
    local_infos Sequence[GslbhsmruntimeLocalInfoArgs]
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name str
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    obj_uuid str
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    oper_statuses Sequence[GslbhsmruntimeOperStatusArgs]
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remote_infos Sequence[GslbhsmruntimeRemoteInfoArgs]
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    send_interval str
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    site_name str
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenant_ref str
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid str
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    clusterUuid String
    The site controller cluster uuid. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    enabled String
    Represents whether hsm is enabled/disabled. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    events List<Property Map>
    Events captured wrt to config replication. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    gslbhsmruntimeId String
    localInfos List<Property Map>
    Represents local info for the site. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    objUuid String
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    operStatuses List<Property Map>
    Gslb site operational status, represents whether site is up or down. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    remoteInfos List<Property Map>
    Remote info is basically updated by grw. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    sendInterval String
    Frequency with which group members communicate. This field shadows glb_cfg.send_interval. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    siteName String
    The gslb site name. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    tenantRef String
    Uuid of the tenant. It is a reference to an object of type tenant. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    Supporting Types

    GslbhsmruntimeEvent, GslbhsmruntimeEventArgs

    Msgs List<string>
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Timestamps List<GslbhsmruntimeEventTimestamp>
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Msgs []string
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Timestamps []GslbhsmruntimeEventTimestamp
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    msgs List<String>
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    timestamps List<GslbhsmruntimeEventTimestamp>
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    msgs string[]
    name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    timestamps GslbhsmruntimeEventTimestamp[]
    uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    msgs Sequence[str]
    name str
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    timestamps Sequence[GslbhsmruntimeEventTimestamp]
    uuid str
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    msgs List<String>
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    timestamps List<Property Map>
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    GslbhsmruntimeEventTimestamp, GslbhsmruntimeEventTimestampArgs

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

    GslbhsmruntimeLocalInfo, GslbhsmruntimeLocalInfoArgs

    GslbhsmruntimeLocalInfoGsStatus, GslbhsmruntimeLocalInfoGsStatusArgs

    GslbhsmruntimeLocalInfoGsStatusLastChangedTime, GslbhsmruntimeLocalInfoGsStatusLastChangedTimeArgs

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

    GslbhsmruntimeLocalInfoGslbInfo, GslbhsmruntimeLocalInfoGslbInfoArgs

    GslbhsmruntimeLocalInfoGslbInfoReplState, GslbhsmruntimeLocalInfoGslbInfoReplStateArgs

    CfgVersion string
    CfgVersionInFlight string
    LastChangedTimes List<GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTime>
    LocalConfigs List<GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfig>
    Reason string
    SiteUuid string
    Status string
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CfgVersion string
    CfgVersionInFlight string
    LastChangedTimes []GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTime
    LocalConfigs []GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfig
    Reason string
    SiteUuid string
    Status string
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfgVersion String
    cfgVersionInFlight String
    lastChangedTimes List<GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTime>
    localConfigs List<GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfig>
    reason String
    siteUuid String
    status String
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfgVersion string
    cfgVersionInFlight string
    lastChangedTimes GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTime[]
    localConfigs GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfig[]
    reason string
    siteUuid string
    status string
    uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfg_version str
    cfg_version_in_flight str
    last_changed_times Sequence[GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTime]
    local_configs Sequence[GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfig]
    reason str
    site_uuid str
    status str
    uuid str
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfgVersion String
    cfgVersionInFlight String
    lastChangedTimes List<Property Map>
    localConfigs List<Property Map>
    reason String
    siteUuid String
    status String
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTime, GslbhsmruntimeLocalInfoGslbInfoReplStateLastChangedTimeArgs

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

    GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfig, GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigArgs

    GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfo, GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoArgs

    GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoTimestamp, GslbhsmruntimeLocalInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs

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

    GslbhsmruntimeOperStatus, GslbhsmruntimeOperStatusArgs

    GslbhsmruntimeOperStatusLastChangedTime, GslbhsmruntimeOperStatusLastChangedTimeArgs

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

    GslbhsmruntimeRemoteInfo, GslbhsmruntimeRemoteInfoArgs

    GslbhsmruntimeRemoteInfoGslbInfo, GslbhsmruntimeRemoteInfoGslbInfoArgs

    GslbhsmruntimeRemoteInfoGslbInfoReplState, GslbhsmruntimeRemoteInfoGslbInfoReplStateArgs

    CfgVersion string
    CfgVersionInFlight string
    LastChangedTimes List<GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTime>
    LocalConfigs List<GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfig>
    Reason string
    SiteUuid string
    Status string
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    CfgVersion string
    CfgVersionInFlight string
    LastChangedTimes []GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTime
    LocalConfigs []GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfig
    Reason string
    SiteUuid string
    Status string
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfgVersion String
    cfgVersionInFlight String
    lastChangedTimes List<GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTime>
    localConfigs List<GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfig>
    reason String
    siteUuid String
    status String
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfgVersion string
    cfgVersionInFlight string
    lastChangedTimes GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTime[]
    localConfigs GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfig[]
    reason string
    siteUuid string
    status string
    uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfg_version str
    cfg_version_in_flight str
    last_changed_times Sequence[GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTime]
    local_configs Sequence[GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfig]
    reason str
    site_uuid str
    status str
    uuid str
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    cfgVersion String
    cfgVersionInFlight String
    lastChangedTimes List<Property Map>
    localConfigs List<Property Map>
    reason String
    siteUuid String
    status String
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTime, GslbhsmruntimeRemoteInfoGslbInfoReplStateLastChangedTimeArgs

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

    GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfig, GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigArgs

    GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfo, GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoArgs

    GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoTimestamp, GslbhsmruntimeRemoteInfoGslbInfoReplStateLocalConfigVsgsInfoTimestampArgs

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

    GslbhsmruntimeRemoteInfoOpsInfo, GslbhsmruntimeRemoteInfoOpsInfoArgs

    Rrtokens List<string>
    Rrtokens []string
    rrtokens List<String>
    rrtokens string[]
    rrtokens Sequence[str]
    rrtokens List<String>

    GslbhsmruntimeRemoteInfoSyncInfo, GslbhsmruntimeRemoteInfoSyncInfoArgs

    GslbhsmruntimeRemoteInfoSyncInfoErroredObject, GslbhsmruntimeRemoteInfoSyncInfoErroredObjectArgs

    DsName string
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ops string
    Reason string
    Status string
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    DsName string
    Name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    Ops string
    Reason string
    Status string
    Uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    dsName String
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ops String
    reason String
    status String
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    dsName string
    name string
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ops string
    reason string
    status string
    uuid string
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ds_name str
    name str
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ops str
    reason str
    status str
    uuid str
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    dsName String
    name String
    The name of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    ops String
    reason String
    status String
    uuid String
    The uuid of db entry. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    GslbhsmruntimeRemoteInfoSyncInfoLastChangedTime, GslbhsmruntimeRemoteInfoSyncInfoLastChangedTimeArgs

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

    GslbhsmruntimeRemoteInfoSyncInfoLastFailObj, GslbhsmruntimeRemoteInfoSyncInfoLastFailObjArgs

    EventType string
    ObjName string
    ObjUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    EventType string
    ObjName string
    ObjUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    eventType String
    objName String
    objUuid String
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    eventType string
    objName string
    objUuid string
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    event_type str
    obj_name str
    obj_uuid str
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
    eventType String
    objName String
    objUuid String
    Gslb hsm runtime object uuid. Points to the gslb to which this belongs. Field introduced in 31.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

    GslbhsmruntimeRemoteInfoSyncStat, GslbhsmruntimeRemoteInfoSyncStatArgs

    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