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

avi.Memorybalancerrequest

Explore with Pulumi AI

<!–

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

–>

layout: “avi”

page_title: “Avi: avi.Memorybalancerrequest” sidebar_current: “docs-avi-resource-memorybalancerrequest” description: |- Creates and manages Avi MemoryBalancerRequest.

avi.Memorybalancerrequest

The MemoryBalancerRequest resource allows the creation and management of Avi MemoryBalancerRequest

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";

const foo = new avi.Memorybalancerrequest("foo", {tenantRef: "/api/tenant/?name=admin"});
Copy
import pulumi
import pulumi_avi as avi

foo = avi.Memorybalancerrequest("foo", tenant_ref="/api/tenant/?name=admin")
Copy
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.NewMemorybalancerrequest(ctx, "foo", &avi.MemorybalancerrequestArgs{
			TenantRef: pulumi.String("/api/tenant/?name=admin"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;

return await Deployment.RunAsync(() => 
{
    var foo = new Avi.Memorybalancerrequest("foo", new()
    {
        TenantRef = "/api/tenant/?name=admin",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Memorybalancerrequest;
import com.pulumi.avi.MemorybalancerrequestArgs;
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 Memorybalancerrequest("foo", MemorybalancerrequestArgs.builder()
            .tenantRef("/api/tenant/?name=admin")
            .build());

    }
}
Copy
resources:
  foo:
    type: avi:Memorybalancerrequest
    properties:
      tenantRef: /api/tenant/?name=admin
Copy

Create Memorybalancerrequest Resource

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

Constructor syntax

new Memorybalancerrequest(name: string, args?: MemorybalancerrequestArgs, opts?: CustomResourceOptions);
@overload
def Memorybalancerrequest(resource_name: str,
                          args: Optional[MemorybalancerrequestArgs] = None,
                          opts: Optional[ResourceOptions] = None)

@overload
def Memorybalancerrequest(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          configpb_attributes: Optional[Sequence[MemorybalancerrequestConfigpbAttributeArgs]] = None,
                          controller_infos: Optional[Sequence[MemorybalancerrequestControllerInfoArgs]] = None,
                          memorybalancerrequest_id: Optional[str] = None,
                          name: Optional[str] = None,
                          node_uuid: Optional[str] = None,
                          process_infos: Optional[Sequence[MemorybalancerrequestProcessInfoArgs]] = None,
                          process_instance: Optional[str] = None,
                          tenant_ref: Optional[str] = None,
                          timestamp: Optional[str] = None,
                          uuid: Optional[str] = None)
func NewMemorybalancerrequest(ctx *Context, name string, args *MemorybalancerrequestArgs, opts ...ResourceOption) (*Memorybalancerrequest, error)
public Memorybalancerrequest(string name, MemorybalancerrequestArgs? args = null, CustomResourceOptions? opts = null)
public Memorybalancerrequest(String name, MemorybalancerrequestArgs args)
public Memorybalancerrequest(String name, MemorybalancerrequestArgs args, CustomResourceOptions options)
type: avi:Memorybalancerrequest
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args MemorybalancerrequestArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args MemorybalancerrequestArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args MemorybalancerrequestArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args MemorybalancerrequestArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. MemorybalancerrequestArgs
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 memorybalancerrequestResource = new Avi.Memorybalancerrequest("memorybalancerrequestResource", new()
{
    ConfigpbAttributes = new[]
    {
        new Avi.Inputs.MemorybalancerrequestConfigpbAttributeArgs
        {
            Version = "string",
        },
    },
    ControllerInfos = new[]
    {
        new Avi.Inputs.MemorybalancerrequestControllerInfoArgs
        {
            CurrentControllerMemUsage = "string",
        },
    },
    MemorybalancerrequestId = "string",
    Name = "string",
    NodeUuid = "string",
    ProcessInfos = new[]
    {
        new Avi.Inputs.MemorybalancerrequestProcessInfoArgs
        {
            CurrentProcessId = "string",
            CurrentProcessMemUsage = "string",
            IntimationCount = "string",
            MemoryLimit = "string",
            MemoryTrendUsage = "string",
            ProcessMode = "string",
            ThresholdPercent = "string",
        },
    },
    ProcessInstance = "string",
    TenantRef = "string",
    Timestamp = "string",
    Uuid = "string",
});
Copy
example, err := avi.NewMemorybalancerrequest(ctx, "memorybalancerrequestResource", &avi.MemorybalancerrequestArgs{
ConfigpbAttributes: .MemorybalancerrequestConfigpbAttributeArray{
&.MemorybalancerrequestConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
ControllerInfos: .MemorybalancerrequestControllerInfoArray{
&.MemorybalancerrequestControllerInfoArgs{
CurrentControllerMemUsage: pulumi.String("string"),
},
},
MemorybalancerrequestId: pulumi.String("string"),
Name: pulumi.String("string"),
NodeUuid: pulumi.String("string"),
ProcessInfos: .MemorybalancerrequestProcessInfoArray{
&.MemorybalancerrequestProcessInfoArgs{
CurrentProcessId: pulumi.String("string"),
CurrentProcessMemUsage: pulumi.String("string"),
IntimationCount: pulumi.String("string"),
MemoryLimit: pulumi.String("string"),
MemoryTrendUsage: pulumi.String("string"),
ProcessMode: pulumi.String("string"),
ThresholdPercent: pulumi.String("string"),
},
},
ProcessInstance: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Timestamp: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
Copy
var memorybalancerrequestResource = new Memorybalancerrequest("memorybalancerrequestResource", MemorybalancerrequestArgs.builder()
    .configpbAttributes(MemorybalancerrequestConfigpbAttributeArgs.builder()
        .version("string")
        .build())
    .controllerInfos(MemorybalancerrequestControllerInfoArgs.builder()
        .currentControllerMemUsage("string")
        .build())
    .memorybalancerrequestId("string")
    .name("string")
    .nodeUuid("string")
    .processInfos(MemorybalancerrequestProcessInfoArgs.builder()
        .currentProcessId("string")
        .currentProcessMemUsage("string")
        .intimationCount("string")
        .memoryLimit("string")
        .memoryTrendUsage("string")
        .processMode("string")
        .thresholdPercent("string")
        .build())
    .processInstance("string")
    .tenantRef("string")
    .timestamp("string")
    .uuid("string")
    .build());
Copy
memorybalancerrequest_resource = avi.Memorybalancerrequest("memorybalancerrequestResource",
    configpb_attributes=[{
        "version": "string",
    }],
    controller_infos=[{
        "current_controller_mem_usage": "string",
    }],
    memorybalancerrequest_id="string",
    name="string",
    node_uuid="string",
    process_infos=[{
        "current_process_id": "string",
        "current_process_mem_usage": "string",
        "intimation_count": "string",
        "memory_limit": "string",
        "memory_trend_usage": "string",
        "process_mode": "string",
        "threshold_percent": "string",
    }],
    process_instance="string",
    tenant_ref="string",
    timestamp="string",
    uuid="string")
Copy
const memorybalancerrequestResource = new avi.Memorybalancerrequest("memorybalancerrequestResource", {
    configpbAttributes: [{
        version: "string",
    }],
    controllerInfos: [{
        currentControllerMemUsage: "string",
    }],
    memorybalancerrequestId: "string",
    name: "string",
    nodeUuid: "string",
    processInfos: [{
        currentProcessId: "string",
        currentProcessMemUsage: "string",
        intimationCount: "string",
        memoryLimit: "string",
        memoryTrendUsage: "string",
        processMode: "string",
        thresholdPercent: "string",
    }],
    processInstance: "string",
    tenantRef: "string",
    timestamp: "string",
    uuid: "string",
});
Copy
type: avi:Memorybalancerrequest
properties:
    configpbAttributes:
        - version: string
    controllerInfos:
        - currentControllerMemUsage: string
    memorybalancerrequestId: string
    name: string
    nodeUuid: string
    processInfos:
        - currentProcessId: string
          currentProcessMemUsage: string
          intimationCount: string
          memoryLimit: string
          memoryTrendUsage: string
          processMode: string
          thresholdPercent: string
    processInstance: string
    tenantRef: string
    timestamp: string
    uuid: string
Copy

Memorybalancerrequest 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 Memorybalancerrequest resource accepts the following input properties:

ConfigpbAttributes List<MemorybalancerrequestConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerInfos List<MemorybalancerrequestControllerInfo>
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
MemorybalancerrequestId string
Name string
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
NodeUuid string
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInfos List<MemorybalancerrequestProcessInfo>
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInstance string
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timestamp string
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ConfigpbAttributes []MemorybalancerrequestConfigpbAttributeArgs
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerInfos []MemorybalancerrequestControllerInfoArgs
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
MemorybalancerrequestId string
Name string
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
NodeUuid string
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInfos []MemorybalancerrequestProcessInfoArgs
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInstance string
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timestamp string
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes List<MemorybalancerrequestConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerInfos List<MemorybalancerrequestControllerInfo>
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequestId String
name String
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
nodeUuid String
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInfos List<MemorybalancerrequestProcessInfo>
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInstance String
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp String
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes MemorybalancerrequestConfigpbAttribute[]
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerInfos MemorybalancerrequestControllerInfo[]
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequestId string
name string
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
nodeUuid string
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInfos MemorybalancerrequestProcessInfo[]
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInstance string
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef string
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp string
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid string
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpb_attributes Sequence[MemorybalancerrequestConfigpbAttributeArgs]
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controller_infos Sequence[MemorybalancerrequestControllerInfoArgs]
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequest_id str
name str
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
node_uuid str
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
process_infos Sequence[MemorybalancerrequestProcessInfoArgs]
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
process_instance str
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenant_ref str
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp str
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid str
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes List<Property Map>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerInfos List<Property Map>
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequestId String
name String
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
nodeUuid String
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInfos List<Property Map>
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInstance String
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp String
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid of memory balancer request object. Field introduced in 21.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 Memorybalancerrequest 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 Memorybalancerrequest Resource

Get an existing Memorybalancerrequest 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?: MemorybalancerrequestState, opts?: CustomResourceOptions): Memorybalancerrequest
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configpb_attributes: Optional[Sequence[MemorybalancerrequestConfigpbAttributeArgs]] = None,
        controller_infos: Optional[Sequence[MemorybalancerrequestControllerInfoArgs]] = None,
        memorybalancerrequest_id: Optional[str] = None,
        name: Optional[str] = None,
        node_uuid: Optional[str] = None,
        process_infos: Optional[Sequence[MemorybalancerrequestProcessInfoArgs]] = None,
        process_instance: Optional[str] = None,
        tenant_ref: Optional[str] = None,
        timestamp: Optional[str] = None,
        uuid: Optional[str] = None) -> Memorybalancerrequest
func GetMemorybalancerrequest(ctx *Context, name string, id IDInput, state *MemorybalancerrequestState, opts ...ResourceOption) (*Memorybalancerrequest, error)
public static Memorybalancerrequest Get(string name, Input<string> id, MemorybalancerrequestState? state, CustomResourceOptions? opts = null)
public static Memorybalancerrequest get(String name, Output<String> id, MemorybalancerrequestState state, CustomResourceOptions options)
resources:  _:    type: avi:Memorybalancerrequest    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ConfigpbAttributes List<MemorybalancerrequestConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerInfos List<MemorybalancerrequestControllerInfo>
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
MemorybalancerrequestId string
Name string
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
NodeUuid string
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInfos List<MemorybalancerrequestProcessInfo>
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInstance string
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timestamp string
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ConfigpbAttributes []MemorybalancerrequestConfigpbAttributeArgs
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerInfos []MemorybalancerrequestControllerInfoArgs
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
MemorybalancerrequestId string
Name string
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
NodeUuid string
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInfos []MemorybalancerrequestProcessInfoArgs
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
ProcessInstance string
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Timestamp string
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes List<MemorybalancerrequestConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerInfos List<MemorybalancerrequestControllerInfo>
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequestId String
name String
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
nodeUuid String
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInfos List<MemorybalancerrequestProcessInfo>
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInstance String
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp String
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes MemorybalancerrequestConfigpbAttribute[]
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerInfos MemorybalancerrequestControllerInfo[]
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequestId string
name string
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
nodeUuid string
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInfos MemorybalancerrequestProcessInfo[]
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInstance string
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef string
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp string
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid string
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpb_attributes Sequence[MemorybalancerrequestConfigpbAttributeArgs]
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controller_infos Sequence[MemorybalancerrequestControllerInfoArgs]
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequest_id str
name str
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
node_uuid str
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
process_infos Sequence[MemorybalancerrequestProcessInfoArgs]
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
process_instance str
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenant_ref str
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp str
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid str
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes List<Property Map>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerInfos List<Property Map>
Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
memorybalancerrequestId String
name String
Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
nodeUuid String
Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInfos List<Property Map>
Current process information of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
processInstance String
Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Uuid of tenant object. It is a reference to an object of type tenant. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
timestamp String
Time at which memory balancer request was created/updated. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid of memory balancer request object. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.

Supporting Types

MemorybalancerrequestConfigpbAttribute
, MemorybalancerrequestConfigpbAttributeArgs

Version string
Version string
version String
version string
version String

MemorybalancerrequestControllerInfo
, MemorybalancerrequestControllerInfoArgs

MemorybalancerrequestProcessInfo
, MemorybalancerrequestProcessInfoArgs

Package Details

Repository
avi vmware/terraform-provider-avi
License
Notes
This Pulumi package is based on the avi Terraform Provider.