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

avi.Inventoryfaultconfig

Explore with Pulumi AI

<!–

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

–>

layout: “avi”

page_title: “Avi: avi.Inventoryfaultconfig” sidebar_current: “docs-avi-resource-inventoryfaultconfig” description: |- Creates and manages Avi InventoryFaultConfig.

avi.Inventoryfaultconfig

The InventoryFaultConfig resource allows the creation and management of Avi InventoryFaultConfig

Example Usage

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

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

foo = avi.Inventoryfaultconfig("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.NewInventoryfaultconfig(ctx, "foo", &avi.InventoryfaultconfigArgs{
			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.Inventoryfaultconfig("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.Inventoryfaultconfig;
import com.pulumi.avi.InventoryfaultconfigArgs;
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 Inventoryfaultconfig("foo", InventoryfaultconfigArgs.builder()
            .tenantRef("/api/tenant/?name=admin")
            .build());

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

Create Inventoryfaultconfig Resource

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

Constructor syntax

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

@overload
def Inventoryfaultconfig(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         configpb_attributes: Optional[Sequence[InventoryfaultconfigConfigpbAttributeArgs]] = None,
                         controller_faults: Optional[Sequence[InventoryfaultconfigControllerFaultArgs]] = None,
                         inventoryfaultconfig_id: Optional[str] = None,
                         name: Optional[str] = None,
                         serviceengine_faults: Optional[Sequence[InventoryfaultconfigServiceengineFaultArgs]] = None,
                         tenant_ref: Optional[str] = None,
                         uuid: Optional[str] = None,
                         virtualservice_faults: Optional[Sequence[InventoryfaultconfigVirtualserviceFaultArgs]] = None)
func NewInventoryfaultconfig(ctx *Context, name string, args *InventoryfaultconfigArgs, opts ...ResourceOption) (*Inventoryfaultconfig, error)
public Inventoryfaultconfig(string name, InventoryfaultconfigArgs? args = null, CustomResourceOptions? opts = null)
public Inventoryfaultconfig(String name, InventoryfaultconfigArgs args)
public Inventoryfaultconfig(String name, InventoryfaultconfigArgs args, CustomResourceOptions options)
type: avi:Inventoryfaultconfig
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 InventoryfaultconfigArgs
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 InventoryfaultconfigArgs
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 InventoryfaultconfigArgs
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 InventoryfaultconfigArgs
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. InventoryfaultconfigArgs
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 inventoryfaultconfigResource = new Avi.Inventoryfaultconfig("inventoryfaultconfigResource", new()
{
    ConfigpbAttributes = new[]
    {
        new Avi.Inputs.InventoryfaultconfigConfigpbAttributeArgs
        {
            Version = "string",
        },
    },
    ControllerFaults = new[]
    {
        new Avi.Inputs.InventoryfaultconfigControllerFaultArgs
        {
            BackupSchedulerFaults = "string",
            ClusterFaults = "string",
            DeprecatedApiVersionFaults = "string",
            LicenseFaults = "string",
            MigrationFaults = "string",
            SslprofileFaults = "string",
        },
    },
    InventoryfaultconfigId = "string",
    Name = "string",
    ServiceengineFaults = new[]
    {
        new Avi.Inputs.InventoryfaultconfigServiceengineFaultArgs
        {
            DebugFaults = "string",
        },
    },
    TenantRef = "string",
    Uuid = "string",
    VirtualserviceFaults = new[]
    {
        new Avi.Inputs.InventoryfaultconfigVirtualserviceFaultArgs
        {
            DebugFaults = "string",
            PoolServerFaults = "string",
            ScaleoutFaults = "string",
            SharedVipFaults = "string",
            SslCertExpiryFaults = "string",
            SslCertStatusFaults = "string",
        },
    },
});
Copy
example, err := avi.NewInventoryfaultconfig(ctx, "inventoryfaultconfigResource", &avi.InventoryfaultconfigArgs{
ConfigpbAttributes: .InventoryfaultconfigConfigpbAttributeArray{
&.InventoryfaultconfigConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
ControllerFaults: .InventoryfaultconfigControllerFaultArray{
&.InventoryfaultconfigControllerFaultArgs{
BackupSchedulerFaults: pulumi.String("string"),
ClusterFaults: pulumi.String("string"),
DeprecatedApiVersionFaults: pulumi.String("string"),
LicenseFaults: pulumi.String("string"),
MigrationFaults: pulumi.String("string"),
SslprofileFaults: pulumi.String("string"),
},
},
InventoryfaultconfigId: pulumi.String("string"),
Name: pulumi.String("string"),
ServiceengineFaults: .InventoryfaultconfigServiceengineFaultArray{
&.InventoryfaultconfigServiceengineFaultArgs{
DebugFaults: pulumi.String("string"),
},
},
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
VirtualserviceFaults: .InventoryfaultconfigVirtualserviceFaultArray{
&.InventoryfaultconfigVirtualserviceFaultArgs{
DebugFaults: pulumi.String("string"),
PoolServerFaults: pulumi.String("string"),
ScaleoutFaults: pulumi.String("string"),
SharedVipFaults: pulumi.String("string"),
SslCertExpiryFaults: pulumi.String("string"),
SslCertStatusFaults: pulumi.String("string"),
},
},
})
Copy
var inventoryfaultconfigResource = new Inventoryfaultconfig("inventoryfaultconfigResource", InventoryfaultconfigArgs.builder()
    .configpbAttributes(InventoryfaultconfigConfigpbAttributeArgs.builder()
        .version("string")
        .build())
    .controllerFaults(InventoryfaultconfigControllerFaultArgs.builder()
        .backupSchedulerFaults("string")
        .clusterFaults("string")
        .deprecatedApiVersionFaults("string")
        .licenseFaults("string")
        .migrationFaults("string")
        .sslprofileFaults("string")
        .build())
    .inventoryfaultconfigId("string")
    .name("string")
    .serviceengineFaults(InventoryfaultconfigServiceengineFaultArgs.builder()
        .debugFaults("string")
        .build())
    .tenantRef("string")
    .uuid("string")
    .virtualserviceFaults(InventoryfaultconfigVirtualserviceFaultArgs.builder()
        .debugFaults("string")
        .poolServerFaults("string")
        .scaleoutFaults("string")
        .sharedVipFaults("string")
        .sslCertExpiryFaults("string")
        .sslCertStatusFaults("string")
        .build())
    .build());
Copy
inventoryfaultconfig_resource = avi.Inventoryfaultconfig("inventoryfaultconfigResource",
    configpb_attributes=[{
        "version": "string",
    }],
    controller_faults=[{
        "backup_scheduler_faults": "string",
        "cluster_faults": "string",
        "deprecated_api_version_faults": "string",
        "license_faults": "string",
        "migration_faults": "string",
        "sslprofile_faults": "string",
    }],
    inventoryfaultconfig_id="string",
    name="string",
    serviceengine_faults=[{
        "debug_faults": "string",
    }],
    tenant_ref="string",
    uuid="string",
    virtualservice_faults=[{
        "debug_faults": "string",
        "pool_server_faults": "string",
        "scaleout_faults": "string",
        "shared_vip_faults": "string",
        "ssl_cert_expiry_faults": "string",
        "ssl_cert_status_faults": "string",
    }])
Copy
const inventoryfaultconfigResource = new avi.Inventoryfaultconfig("inventoryfaultconfigResource", {
    configpbAttributes: [{
        version: "string",
    }],
    controllerFaults: [{
        backupSchedulerFaults: "string",
        clusterFaults: "string",
        deprecatedApiVersionFaults: "string",
        licenseFaults: "string",
        migrationFaults: "string",
        sslprofileFaults: "string",
    }],
    inventoryfaultconfigId: "string",
    name: "string",
    serviceengineFaults: [{
        debugFaults: "string",
    }],
    tenantRef: "string",
    uuid: "string",
    virtualserviceFaults: [{
        debugFaults: "string",
        poolServerFaults: "string",
        scaleoutFaults: "string",
        sharedVipFaults: "string",
        sslCertExpiryFaults: "string",
        sslCertStatusFaults: "string",
    }],
});
Copy
type: avi:Inventoryfaultconfig
properties:
    configpbAttributes:
        - version: string
    controllerFaults:
        - backupSchedulerFaults: string
          clusterFaults: string
          deprecatedApiVersionFaults: string
          licenseFaults: string
          migrationFaults: string
          sslprofileFaults: string
    inventoryfaultconfigId: string
    name: string
    serviceengineFaults:
        - debugFaults: string
    tenantRef: string
    uuid: string
    virtualserviceFaults:
        - debugFaults: string
          poolServerFaults: string
          scaleoutFaults: string
          sharedVipFaults: string
          sslCertExpiryFaults: string
          sslCertStatusFaults: string
Copy

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

ConfigpbAttributes List<InventoryfaultconfigConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerFaults List<InventoryfaultconfigControllerFault>
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
InventoryfaultconfigId string
Name string
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
ServiceengineFaults List<InventoryfaultconfigServiceengineFault>
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
VirtualserviceFaults List<InventoryfaultconfigVirtualserviceFault>
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
ConfigpbAttributes []InventoryfaultconfigConfigpbAttributeArgs
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerFaults []InventoryfaultconfigControllerFaultArgs
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
InventoryfaultconfigId string
Name string
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
ServiceengineFaults []InventoryfaultconfigServiceengineFaultArgs
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
VirtualserviceFaults []InventoryfaultconfigVirtualserviceFaultArgs
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes List<InventoryfaultconfigConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerFaults List<InventoryfaultconfigControllerFault>
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfigId String
name String
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengineFaults List<InventoryfaultconfigServiceengineFault>
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualserviceFaults List<InventoryfaultconfigVirtualserviceFault>
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes InventoryfaultconfigConfigpbAttribute[]
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerFaults InventoryfaultconfigControllerFault[]
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfigId string
name string
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengineFaults InventoryfaultconfigServiceengineFault[]
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef string
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid string
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualserviceFaults InventoryfaultconfigVirtualserviceFault[]
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
configpb_attributes Sequence[InventoryfaultconfigConfigpbAttributeArgs]
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_faults Sequence[InventoryfaultconfigControllerFaultArgs]
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfig_id str
name str
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengine_faults Sequence[InventoryfaultconfigServiceengineFaultArgs]
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenant_ref str
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid str
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualservice_faults Sequence[InventoryfaultconfigVirtualserviceFaultArgs]
Configure virtualservice faults. Field introduced in 20.1.6. 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.
controllerFaults List<Property Map>
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfigId String
name String
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengineFaults List<Property Map>
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualserviceFaults List<Property Map>
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.

Outputs

All input properties are implicitly available as output properties. Additionally, the Inventoryfaultconfig 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 Inventoryfaultconfig Resource

Get an existing Inventoryfaultconfig 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?: InventoryfaultconfigState, opts?: CustomResourceOptions): Inventoryfaultconfig
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        configpb_attributes: Optional[Sequence[InventoryfaultconfigConfigpbAttributeArgs]] = None,
        controller_faults: Optional[Sequence[InventoryfaultconfigControllerFaultArgs]] = None,
        inventoryfaultconfig_id: Optional[str] = None,
        name: Optional[str] = None,
        serviceengine_faults: Optional[Sequence[InventoryfaultconfigServiceengineFaultArgs]] = None,
        tenant_ref: Optional[str] = None,
        uuid: Optional[str] = None,
        virtualservice_faults: Optional[Sequence[InventoryfaultconfigVirtualserviceFaultArgs]] = None) -> Inventoryfaultconfig
func GetInventoryfaultconfig(ctx *Context, name string, id IDInput, state *InventoryfaultconfigState, opts ...ResourceOption) (*Inventoryfaultconfig, error)
public static Inventoryfaultconfig Get(string name, Input<string> id, InventoryfaultconfigState? state, CustomResourceOptions? opts = null)
public static Inventoryfaultconfig get(String name, Output<String> id, InventoryfaultconfigState state, CustomResourceOptions options)
resources:  _:    type: avi:Inventoryfaultconfig    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<InventoryfaultconfigConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerFaults List<InventoryfaultconfigControllerFault>
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
InventoryfaultconfigId string
Name string
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
ServiceengineFaults List<InventoryfaultconfigServiceengineFault>
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
VirtualserviceFaults List<InventoryfaultconfigVirtualserviceFault>
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
ConfigpbAttributes []InventoryfaultconfigConfigpbAttributeArgs
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
ControllerFaults []InventoryfaultconfigControllerFaultArgs
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
InventoryfaultconfigId string
Name string
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
ServiceengineFaults []InventoryfaultconfigServiceengineFaultArgs
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
TenantRef string
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
Uuid string
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
VirtualserviceFaults []InventoryfaultconfigVirtualserviceFaultArgs
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes List<InventoryfaultconfigConfigpbAttribute>
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerFaults List<InventoryfaultconfigControllerFault>
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfigId String
name String
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengineFaults List<InventoryfaultconfigServiceengineFault>
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualserviceFaults List<InventoryfaultconfigVirtualserviceFault>
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
configpbAttributes InventoryfaultconfigConfigpbAttribute[]
Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
controllerFaults InventoryfaultconfigControllerFault[]
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfigId string
name string
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengineFaults InventoryfaultconfigServiceengineFault[]
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef string
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid string
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualserviceFaults InventoryfaultconfigVirtualserviceFault[]
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
configpb_attributes Sequence[InventoryfaultconfigConfigpbAttributeArgs]
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_faults Sequence[InventoryfaultconfigControllerFaultArgs]
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfig_id str
name str
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengine_faults Sequence[InventoryfaultconfigServiceengineFaultArgs]
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenant_ref str
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid str
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualservice_faults Sequence[InventoryfaultconfigVirtualserviceFaultArgs]
Configure virtualservice faults. Field introduced in 20.1.6. 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.
controllerFaults List<Property Map>
Configure controller faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
inventoryfaultconfigId String
name String
Name. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
serviceengineFaults List<Property Map>
Configure serviceengine faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
tenantRef String
Tenant. It is a reference to an object of type tenant. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
uuid String
Uuid auto generated. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.
virtualserviceFaults List<Property Map>
Configure virtualservice faults. Field introduced in 20.1.6. Allowed with any value in enterprise, enterprise with cloud services edition.

Supporting Types

InventoryfaultconfigConfigpbAttribute
, InventoryfaultconfigConfigpbAttributeArgs

Version string
Version string
version String
version string
version String

InventoryfaultconfigControllerFault
, InventoryfaultconfigControllerFaultArgs

InventoryfaultconfigServiceengineFault
, InventoryfaultconfigServiceengineFaultArgs

InventoryfaultconfigVirtualserviceFault
, InventoryfaultconfigVirtualserviceFaultArgs

Package Details

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