avi.Errorpageprofile
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Errorpageprofile” sidebar_current: “docs-avi-resource-errorpageprofile” description: |- Creates and manages Avi ErrorPageProfile.
avi.Errorpageprofile
The ErrorPageProfile resource allows the creation and management of Avi ErrorPageProfile
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Errorpageprofile("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Errorpageprofile("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.NewErrorpageprofile(ctx, "foo", &avi.ErrorpageprofileArgs{
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.Errorpageprofile("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.Errorpageprofile;
import com.pulumi.avi.ErrorpageprofileArgs;
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 Errorpageprofile("foo", ErrorpageprofileArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Errorpageprofile
properties:
tenantRef: /api/tenant/?name=admin
Create Errorpageprofile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Errorpageprofile(name: string, args?: ErrorpageprofileArgs, opts?: CustomResourceOptions);
@overload
def Errorpageprofile(resource_name: str,
args: Optional[ErrorpageprofileArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Errorpageprofile(resource_name: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[ErrorpageprofileConfigpbAttributeArgs]] = None,
error_pages: Optional[Sequence[ErrorpageprofileErrorPageArgs]] = None,
errorpageprofile_id: Optional[str] = None,
markers: Optional[Sequence[ErrorpageprofileMarkerArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewErrorpageprofile(ctx *Context, name string, args *ErrorpageprofileArgs, opts ...ResourceOption) (*Errorpageprofile, error)
public Errorpageprofile(string name, ErrorpageprofileArgs? args = null, CustomResourceOptions? opts = null)
public Errorpageprofile(String name, ErrorpageprofileArgs args)
public Errorpageprofile(String name, ErrorpageprofileArgs args, CustomResourceOptions options)
type: avi:Errorpageprofile
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 ErrorpageprofileArgs
- 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 ErrorpageprofileArgs
- 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 ErrorpageprofileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ErrorpageprofileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ErrorpageprofileArgs
- 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 errorpageprofileResource = new Avi.Errorpageprofile("errorpageprofileResource", new()
{
ConfigpbAttributes = new[]
{
new Avi.Inputs.ErrorpageprofileConfigpbAttributeArgs
{
Version = "string",
},
},
ErrorPages = new[]
{
new Avi.Inputs.ErrorpageprofileErrorPageArgs
{
Enable = "string",
ErrorPageBodyRef = "string",
ErrorRedirect = "string",
Index = "string",
Matches = new[]
{
new Avi.Inputs.ErrorpageprofileErrorPageMatchArgs
{
MatchCriteria = "string",
Ranges = new[]
{
new Avi.Inputs.ErrorpageprofileErrorPageMatchRangeArgs
{
Begin = "string",
End = "string",
},
},
StatusCodes = new[]
{
0,
},
},
},
},
},
ErrorpageprofileId = "string",
Markers = new[]
{
new Avi.Inputs.ErrorpageprofileMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Name = "string",
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewErrorpageprofile(ctx, "errorpageprofileResource", &avi.ErrorpageprofileArgs{
ConfigpbAttributes: avi.ErrorpageprofileConfigpbAttributeArray{
&avi.ErrorpageprofileConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
ErrorPages: avi.ErrorpageprofileErrorPageArray{
&avi.ErrorpageprofileErrorPageArgs{
Enable: pulumi.String("string"),
ErrorPageBodyRef: pulumi.String("string"),
ErrorRedirect: pulumi.String("string"),
Index: pulumi.String("string"),
Matches: avi.ErrorpageprofileErrorPageMatchArray{
&avi.ErrorpageprofileErrorPageMatchArgs{
MatchCriteria: pulumi.String("string"),
Ranges: avi.ErrorpageprofileErrorPageMatchRangeArray{
&avi.ErrorpageprofileErrorPageMatchRangeArgs{
Begin: pulumi.String("string"),
End: pulumi.String("string"),
},
},
StatusCodes: pulumi.Float64Array{
pulumi.Float64(0),
},
},
},
},
},
ErrorpageprofileId: pulumi.String("string"),
Markers: avi.ErrorpageprofileMarkerArray{
&avi.ErrorpageprofileMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Name: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var errorpageprofileResource = new Errorpageprofile("errorpageprofileResource", ErrorpageprofileArgs.builder()
.configpbAttributes(ErrorpageprofileConfigpbAttributeArgs.builder()
.version("string")
.build())
.errorPages(ErrorpageprofileErrorPageArgs.builder()
.enable("string")
.errorPageBodyRef("string")
.errorRedirect("string")
.index("string")
.matches(ErrorpageprofileErrorPageMatchArgs.builder()
.matchCriteria("string")
.ranges(ErrorpageprofileErrorPageMatchRangeArgs.builder()
.begin("string")
.end("string")
.build())
.statusCodes(0)
.build())
.build())
.errorpageprofileId("string")
.markers(ErrorpageprofileMarkerArgs.builder()
.key("string")
.values("string")
.build())
.name("string")
.tenantRef("string")
.uuid("string")
.build());
errorpageprofile_resource = avi.Errorpageprofile("errorpageprofileResource",
configpb_attributes=[{
"version": "string",
}],
error_pages=[{
"enable": "string",
"error_page_body_ref": "string",
"error_redirect": "string",
"index": "string",
"matches": [{
"match_criteria": "string",
"ranges": [{
"begin": "string",
"end": "string",
}],
"status_codes": [0],
}],
}],
errorpageprofile_id="string",
markers=[{
"key": "string",
"values": ["string"],
}],
name="string",
tenant_ref="string",
uuid="string")
const errorpageprofileResource = new avi.Errorpageprofile("errorpageprofileResource", {
configpbAttributes: [{
version: "string",
}],
errorPages: [{
enable: "string",
errorPageBodyRef: "string",
errorRedirect: "string",
index: "string",
matches: [{
matchCriteria: "string",
ranges: [{
begin: "string",
end: "string",
}],
statusCodes: [0],
}],
}],
errorpageprofileId: "string",
markers: [{
key: "string",
values: ["string"],
}],
name: "string",
tenantRef: "string",
uuid: "string",
});
type: avi:Errorpageprofile
properties:
configpbAttributes:
- version: string
errorPages:
- enable: string
errorPageBodyRef: string
errorRedirect: string
index: string
matches:
- matchCriteria: string
ranges:
- begin: string
end: string
statusCodes:
- 0
errorpageprofileId: string
markers:
- key: string
values:
- string
name: string
tenantRef: string
uuid: string
Errorpageprofile 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 Errorpageprofile resource accepts the following input properties:
- Configpb
Attributes List<ErrorpageprofileConfigpb 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.
- Error
Pages List<ErrorpageprofileError Page> - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Errorpageprofile
Id string - Markers
List<Errorpageprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []ErrorpageprofileConfigpb 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.
- Error
Pages []ErrorpageprofileError Page Args - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Errorpageprofile
Id string - Markers
[]Errorpageprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<ErrorpageprofileConfigpb 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.
- error
Pages List<ErrorpageprofileError Page> - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile
Id String - markers
List<Errorpageprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes ErrorpageprofileConfigpb 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.
- error
Pages ErrorpageprofileError Page[] - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile
Id string - markers
Errorpageprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[ErrorpageprofileConfigpb 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.
- error_
pages Sequence[ErrorpageprofileError Page Args] - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile_
id str - markers
Sequence[Errorpageprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, 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.
- error
Pages List<Property Map> - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile
Id String - markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Errorpageprofile 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 Errorpageprofile Resource
Get an existing Errorpageprofile 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?: ErrorpageprofileState, opts?: CustomResourceOptions): Errorpageprofile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configpb_attributes: Optional[Sequence[ErrorpageprofileConfigpbAttributeArgs]] = None,
error_pages: Optional[Sequence[ErrorpageprofileErrorPageArgs]] = None,
errorpageprofile_id: Optional[str] = None,
markers: Optional[Sequence[ErrorpageprofileMarkerArgs]] = None,
name: Optional[str] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Errorpageprofile
func GetErrorpageprofile(ctx *Context, name string, id IDInput, state *ErrorpageprofileState, opts ...ResourceOption) (*Errorpageprofile, error)
public static Errorpageprofile Get(string name, Input<string> id, ErrorpageprofileState? state, CustomResourceOptions? opts = null)
public static Errorpageprofile get(String name, Output<String> id, ErrorpageprofileState state, CustomResourceOptions options)
resources: _: type: avi:Errorpageprofile 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<ErrorpageprofileConfigpb 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.
- Error
Pages List<ErrorpageprofileError Page> - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Errorpageprofile
Id string - Markers
List<Errorpageprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []ErrorpageprofileConfigpb 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.
- Error
Pages []ErrorpageprofileError Page Args - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Errorpageprofile
Id string - Markers
[]Errorpageprofile
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<ErrorpageprofileConfigpb 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.
- error
Pages List<ErrorpageprofileError Page> - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile
Id String - markers
List<Errorpageprofile
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes ErrorpageprofileConfigpb 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.
- error
Pages ErrorpageprofileError Page[] - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile
Id string - markers
Errorpageprofile
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[ErrorpageprofileConfigpb 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.
- error_
pages Sequence[ErrorpageprofileError Page Args] - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile_
id str - markers
Sequence[Errorpageprofile
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, 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.
- error
Pages List<Property Map> - Defined error pages for http status codes. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- errorpageprofile
Id String - markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Field introduced in 17.2.4. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
ErrorpageprofileConfigpbAttribute, ErrorpageprofileConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
ErrorpageprofileErrorPage, ErrorpageprofileErrorPageArgs
- Enable string
- Error
Page stringBody Ref - Error
Redirect string - Index string
- Matches
List<Errorpageprofile
Error Page Match>
- Enable string
- Error
Page stringBody Ref - Error
Redirect string - Index string
- Matches
[]Errorpageprofile
Error Page Match
- enable String
- error
Page StringBody Ref - error
Redirect String - index String
- matches
List<Errorpageprofile
Error Page Match>
- enable string
- error
Page stringBody Ref - error
Redirect string - index string
- matches
Errorpageprofile
Error Page Match[]
- enable String
- error
Page StringBody Ref - error
Redirect String - index String
- matches List<Property Map>
ErrorpageprofileErrorPageMatch, ErrorpageprofileErrorPageMatchArgs
- Match
Criteria string - Ranges
List<Errorpageprofile
Error Page Match Range> - Status
Codes List<double>
- Match
Criteria string - Ranges
[]Errorpageprofile
Error Page Match Range - Status
Codes []float64
- match
Criteria String - ranges
List<Errorpageprofile
Error Page Match Range> - status
Codes List<Double>
- match
Criteria string - ranges
Errorpageprofile
Error Page Match Range[] - status
Codes number[]
- match_
criteria str - ranges
Sequence[Errorpageprofile
Error Page Match Range] - status_
codes Sequence[float]
- match
Criteria String - ranges List<Property Map>
- status
Codes List<Number>
ErrorpageprofileErrorPageMatchRange, ErrorpageprofileErrorPageMatchRangeArgs
ErrorpageprofileMarker, ErrorpageprofileMarkerArgs
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.