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

avi.getRmcloudopsproto

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.Rmcloudopsproto” sidebar_current: “docs-avi-datasource-rmcloudopsproto” description: |- Get information of Avi RmCloudOpsProto.

    avi.Rmcloudopsproto

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as avi from "@pulumi/avi";
    
    const fooRmcloudopsproto = avi.getRmcloudopsproto({
        name: "foo",
        uuid: "rmcloudopsproto-f9cf6b3e-a411-436f-95e2-2982ba2b217b",
    });
    
    import pulumi
    import pulumi_avi as avi
    
    foo_rmcloudopsproto = avi.get_rmcloudopsproto(name="foo",
        uuid="rmcloudopsproto-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.LookupRmcloudopsproto(ctx, &avi.LookupRmcloudopsprotoArgs{
    			Name: pulumi.StringRef("foo"),
    			Uuid: pulumi.StringRef("rmcloudopsproto-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 fooRmcloudopsproto = Avi.GetRmcloudopsproto.Invoke(new()
        {
            Name = "foo",
            Uuid = "rmcloudopsproto-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.GetRmcloudopsprotoArgs;
    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 fooRmcloudopsproto = AviFunctions.getRmcloudopsproto(GetRmcloudopsprotoArgs.builder()
                .name("foo")
                .uuid("rmcloudopsproto-f9cf6b3e-a411-436f-95e2-2982ba2b217b")
                .build());
    
        }
    }
    
    variables:
      fooRmcloudopsproto:
        fn::invoke:
          function: avi:getRmcloudopsproto
          arguments:
            name: foo
            uuid: rmcloudopsproto-f9cf6b3e-a411-436f-95e2-2982ba2b217b
    

    Using getRmcloudopsproto

    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 getRmcloudopsproto(args: GetRmcloudopsprotoArgs, opts?: InvokeOptions): Promise<GetRmcloudopsprotoResult>
    function getRmcloudopsprotoOutput(args: GetRmcloudopsprotoOutputArgs, opts?: InvokeOptions): Output<GetRmcloudopsprotoResult>
    def get_rmcloudopsproto(id: Optional[str] = None,
                            name: Optional[str] = None,
                            uuid: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetRmcloudopsprotoResult
    def get_rmcloudopsproto_output(id: Optional[pulumi.Input[str]] = None,
                            name: Optional[pulumi.Input[str]] = None,
                            uuid: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetRmcloudopsprotoResult]
    func LookupRmcloudopsproto(ctx *Context, args *LookupRmcloudopsprotoArgs, opts ...InvokeOption) (*LookupRmcloudopsprotoResult, error)
    func LookupRmcloudopsprotoOutput(ctx *Context, args *LookupRmcloudopsprotoOutputArgs, opts ...InvokeOption) LookupRmcloudopsprotoResultOutput

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

    public static class GetRmcloudopsproto 
    {
        public static Task<GetRmcloudopsprotoResult> InvokeAsync(GetRmcloudopsprotoArgs args, InvokeOptions? opts = null)
        public static Output<GetRmcloudopsprotoResult> Invoke(GetRmcloudopsprotoInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRmcloudopsprotoResult> getRmcloudopsproto(GetRmcloudopsprotoArgs args, InvokeOptions options)
    public static Output<GetRmcloudopsprotoResult> getRmcloudopsproto(GetRmcloudopsprotoArgs args, InvokeOptions options)
    
    fn::invoke:
      function: avi:index/getRmcloudopsproto:getRmcloudopsproto
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    Name string
    Search RmCloudOpsProto by name.
    Uuid string
    Search RmCloudOpsProto by uuid.
    Id string
    Name string
    Search RmCloudOpsProto by name.
    Uuid string
    Search RmCloudOpsProto by uuid.
    id String
    name String
    Search RmCloudOpsProto by name.
    uuid String
    Search RmCloudOpsProto by uuid.
    id string
    name string
    Search RmCloudOpsProto by name.
    uuid string
    Search RmCloudOpsProto by uuid.
    id str
    name str
    Search RmCloudOpsProto by name.
    uuid str
    Search RmCloudOpsProto by uuid.
    id String
    name String
    Search RmCloudOpsProto by name.
    uuid String
    Search RmCloudOpsProto by uuid.

    getRmcloudopsproto Result

    The following output properties are available:

    Id string
    LastQueriedSeCreationLimit string
    The most recent value of concurrent se creation limit from cloudconnectorstatus. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Cloud name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    PendingSeCreationCount string
    Number of se creations in progress. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    PendingVnicOpCount string
    Number of vnic operations in progress (both add and delete). Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Cloud uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Id string
    LastQueriedSeCreationLimit string
    The most recent value of concurrent se creation limit from cloudconnectorstatus. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Name string
    Cloud name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    PendingSeCreationCount string
    Number of se creations in progress. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    PendingVnicOpCount string
    Number of vnic operations in progress (both add and delete). Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    Uuid string
    Cloud uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id String
    lastQueriedSeCreationLimit String
    The most recent value of concurrent se creation limit from cloudconnectorstatus. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Cloud name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pendingSeCreationCount String
    Number of se creations in progress. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pendingVnicOpCount String
    Number of vnic operations in progress (both add and delete). Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Cloud uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id string
    lastQueriedSeCreationLimit string
    The most recent value of concurrent se creation limit from cloudconnectorstatus. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name string
    Cloud name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pendingSeCreationCount string
    Number of se creations in progress. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pendingVnicOpCount string
    Number of vnic operations in progress (both add and delete). Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid string
    Cloud uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id str
    last_queried_se_creation_limit str
    The most recent value of concurrent se creation limit from cloudconnectorstatus. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name str
    Cloud name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pending_se_creation_count str
    Number of se creations in progress. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pending_vnic_op_count str
    Number of vnic operations in progress (both add and delete). Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid str
    Cloud uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    id String
    lastQueriedSeCreationLimit String
    The most recent value of concurrent se creation limit from cloudconnectorstatus. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    name String
    Cloud name. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pendingSeCreationCount String
    Number of se creations in progress. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    pendingVnicOpCount String
    Number of vnic operations in progress (both add and delete). Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
    uuid String
    Cloud uuid. Field introduced in 20.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.

    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