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"});
import pulumi
import pulumi_avi as avi
foo = avi.Memorybalancerrequest("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.NewMemorybalancerrequest(ctx, "foo", &avi.MemorybalancerrequestArgs{
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.Memorybalancerrequest("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.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());
}
}
resources:
foo:
type: avi:Memorybalancerrequest
properties:
tenantRef: /api/tenant/?name=admin
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 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
example, err := avi.NewMemorybalancerrequest(ctx, "memorybalancerrequestResource", &avi.MemorybalancerrequestArgs{
ConfigpbAttributes: avi.MemorybalancerrequestConfigpbAttributeArray{
&avi.MemorybalancerrequestConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
ControllerInfos: avi.MemorybalancerrequestControllerInfoArray{
&avi.MemorybalancerrequestControllerInfoArgs{
CurrentControllerMemUsage: pulumi.String("string"),
},
},
MemorybalancerrequestId: pulumi.String("string"),
Name: pulumi.String("string"),
NodeUuid: pulumi.String("string"),
ProcessInfos: avi.MemorybalancerrequestProcessInfoArray{
&avi.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"),
})
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());
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")
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",
});
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
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:
- Configpb
Attributes List<MemorybalancerrequestConfigpb Attribute> - 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 List<MemorybalancerrequestController Info> - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Memorybalancerrequest
Id string - Name string
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Node
Uuid string - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Process
Infos List<MemorybalancerrequestProcess Info> - 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 string - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref 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 []MemorybalancerrequestConfigpb Attribute Args - 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 []MemorybalancerrequestController Info Args - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Memorybalancerrequest
Id string - Name string
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Node
Uuid string - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Process
Infos []MemorybalancerrequestProcess Info Args - 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 string - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref 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 List<MemorybalancerrequestConfigpb Attribute> - 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 List<MemorybalancerrequestController Info> - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- memorybalancerrequest
Id String - name String
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- node
Uuid String - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- process
Infos List<MemorybalancerrequestProcess Info> - 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 String - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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 MemorybalancerrequestConfigpb Attribute[] - 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 MemorybalancerrequestController Info[] - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- memorybalancerrequest
Id string - name string
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- node
Uuid string - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- process
Infos MemorybalancerrequestProcess Info[] - 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 string - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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[MemorybalancerrequestConfigpb Attribute Args] - 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[MemorybalancerrequestController Info Args] - 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[MemorybalancerrequestProcess Info Args] - 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.
- configpb
Attributes 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.
- controller
Infos List<Property Map> - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- memorybalancerrequest
Id String - name String
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- node
Uuid String - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- process
Infos 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.
- process
Instance String - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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
- 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.
- Configpb
Attributes List<MemorybalancerrequestConfigpb Attribute> - 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 List<MemorybalancerrequestController Info> - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Memorybalancerrequest
Id string - Name string
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Node
Uuid string - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Process
Infos List<MemorybalancerrequestProcess Info> - 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 string - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref 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 []MemorybalancerrequestConfigpb Attribute Args - 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 []MemorybalancerrequestController Info Args - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Memorybalancerrequest
Id string - Name string
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Node
Uuid string - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Process
Infos []MemorybalancerrequestProcess Info Args - 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 string - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Tenant
Ref 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 List<MemorybalancerrequestConfigpb Attribute> - 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 List<MemorybalancerrequestController Info> - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- memorybalancerrequest
Id String - name String
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- node
Uuid String - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- process
Infos List<MemorybalancerrequestProcess Info> - 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 String - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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 MemorybalancerrequestConfigpb Attribute[] - 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 MemorybalancerrequestController Info[] - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- memorybalancerrequest
Id string - name string
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- node
Uuid string - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- process
Infos MemorybalancerrequestProcess Info[] - 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 string - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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[MemorybalancerrequestConfigpb Attribute Args] - 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[MemorybalancerrequestController Info Args] - 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[MemorybalancerrequestProcess Info Args] - 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.
- configpb
Attributes 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.
- controller
Infos List<Property Map> - Current details regarding controller. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- memorybalancerrequest
Id String - name String
- Name of controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- node
Uuid String - Uuid of node. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- process
Infos 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.
- process
Instance String - Instance of the controller process. Field introduced in 21.1.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- tenant
Ref 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 str
- version String
MemorybalancerrequestControllerInfo, MemorybalancerrequestControllerInfoArgs
- Current
Controller stringMem Usage
- Current
Controller stringMem Usage
- current
Controller StringMem Usage
- current
Controller stringMem Usage
- current
Controller StringMem Usage
MemorybalancerrequestProcessInfo, MemorybalancerrequestProcessInfoArgs
- Current
Process stringId - Current
Process stringMem Usage - Intimation
Count string - Memory
Limit string - Memory
Trend stringUsage - Process
Mode string - Threshold
Percent string
- Current
Process stringId - Current
Process stringMem Usage - Intimation
Count string - Memory
Limit string - Memory
Trend stringUsage - Process
Mode string - Threshold
Percent string
- current
Process StringId - current
Process StringMem Usage - intimation
Count String - memory
Limit String - memory
Trend StringUsage - process
Mode String - threshold
Percent String
- current
Process stringId - current
Process stringMem Usage - intimation
Count string - memory
Limit string - memory
Trend stringUsage - process
Mode string - threshold
Percent string
- current
Process StringId - current
Process StringMem Usage - intimation
Count String - memory
Limit String - memory
Trend StringUsage - process
Mode String - threshold
Percent String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.