avi.Alertsyslogconfig
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Alertsyslogconfig” sidebar_current: “docs-avi-resource-alertsyslogconfig” description: |- Creates and manages Avi AlertSyslogConfig.
avi.Alertsyslogconfig
The AlertSyslogConfig resource allows the creation and management of Avi AlertSyslogConfig
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Alertsyslogconfig("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Alertsyslogconfig("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.NewAlertsyslogconfig(ctx, "foo", &avi.AlertsyslogconfigArgs{
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.Alertsyslogconfig("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.Alertsyslogconfig;
import com.pulumi.avi.AlertsyslogconfigArgs;
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 Alertsyslogconfig("foo", AlertsyslogconfigArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Alertsyslogconfig
properties:
tenantRef: /api/tenant/?name=admin
Create Alertsyslogconfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Alertsyslogconfig(name: string, args?: AlertsyslogconfigArgs, opts?: CustomResourceOptions);
@overload
def Alertsyslogconfig(resource_name: str,
args: Optional[AlertsyslogconfigArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Alertsyslogconfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
alertsyslogconfig_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[AlertsyslogconfigConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
sender_hostname: Optional[str] = None,
syslog_servers: Optional[Sequence[AlertsyslogconfigSyslogServerArgs]] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None)
func NewAlertsyslogconfig(ctx *Context, name string, args *AlertsyslogconfigArgs, opts ...ResourceOption) (*Alertsyslogconfig, error)
public Alertsyslogconfig(string name, AlertsyslogconfigArgs? args = null, CustomResourceOptions? opts = null)
public Alertsyslogconfig(String name, AlertsyslogconfigArgs args)
public Alertsyslogconfig(String name, AlertsyslogconfigArgs args, CustomResourceOptions options)
type: avi:Alertsyslogconfig
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 AlertsyslogconfigArgs
- 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 AlertsyslogconfigArgs
- 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 AlertsyslogconfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlertsyslogconfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlertsyslogconfigArgs
- 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 alertsyslogconfigResource = new Avi.Alertsyslogconfig("alertsyslogconfigResource", new()
{
AlertsyslogconfigId = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.AlertsyslogconfigConfigpbAttributeArgs
{
Version = "string",
},
},
Description = "string",
Name = "string",
SenderHostname = "string",
SyslogServers = new[]
{
new Avi.Inputs.AlertsyslogconfigSyslogServerArgs
{
SyslogServer = "string",
Udp = "string",
AnonAuth = "string",
Format = "string",
PkiprofileRef = "string",
SslKeyAndCertificateRef = "string",
StrictCertVerify = "string",
SyslogServerPort = "string",
TlsEnable = "string",
},
},
TenantRef = "string",
Uuid = "string",
});
example, err := avi.NewAlertsyslogconfig(ctx, "alertsyslogconfigResource", &avi.AlertsyslogconfigArgs{
AlertsyslogconfigId: pulumi.String("string"),
ConfigpbAttributes: .AlertsyslogconfigConfigpbAttributeArray{
&.AlertsyslogconfigConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Name: pulumi.String("string"),
SenderHostname: pulumi.String("string"),
SyslogServers: .AlertsyslogconfigSyslogServerArray{
&.AlertsyslogconfigSyslogServerArgs{
SyslogServer: pulumi.String("string"),
Udp: pulumi.String("string"),
AnonAuth: pulumi.String("string"),
Format: pulumi.String("string"),
PkiprofileRef: pulumi.String("string"),
SslKeyAndCertificateRef: pulumi.String("string"),
StrictCertVerify: pulumi.String("string"),
SyslogServerPort: pulumi.String("string"),
TlsEnable: pulumi.String("string"),
},
},
TenantRef: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var alertsyslogconfigResource = new Alertsyslogconfig("alertsyslogconfigResource", AlertsyslogconfigArgs.builder()
.alertsyslogconfigId("string")
.configpbAttributes(AlertsyslogconfigConfigpbAttributeArgs.builder()
.version("string")
.build())
.description("string")
.name("string")
.senderHostname("string")
.syslogServers(AlertsyslogconfigSyslogServerArgs.builder()
.syslogServer("string")
.udp("string")
.anonAuth("string")
.format("string")
.pkiprofileRef("string")
.sslKeyAndCertificateRef("string")
.strictCertVerify("string")
.syslogServerPort("string")
.tlsEnable("string")
.build())
.tenantRef("string")
.uuid("string")
.build());
alertsyslogconfig_resource = avi.Alertsyslogconfig("alertsyslogconfigResource",
alertsyslogconfig_id="string",
configpb_attributes=[{
"version": "string",
}],
description="string",
name="string",
sender_hostname="string",
syslog_servers=[{
"syslog_server": "string",
"udp": "string",
"anon_auth": "string",
"format": "string",
"pkiprofile_ref": "string",
"ssl_key_and_certificate_ref": "string",
"strict_cert_verify": "string",
"syslog_server_port": "string",
"tls_enable": "string",
}],
tenant_ref="string",
uuid="string")
const alertsyslogconfigResource = new avi.Alertsyslogconfig("alertsyslogconfigResource", {
alertsyslogconfigId: "string",
configpbAttributes: [{
version: "string",
}],
description: "string",
name: "string",
senderHostname: "string",
syslogServers: [{
syslogServer: "string",
udp: "string",
anonAuth: "string",
format: "string",
pkiprofileRef: "string",
sslKeyAndCertificateRef: "string",
strictCertVerify: "string",
syslogServerPort: "string",
tlsEnable: "string",
}],
tenantRef: "string",
uuid: "string",
});
type: avi:Alertsyslogconfig
properties:
alertsyslogconfigId: string
configpbAttributes:
- version: string
description: string
name: string
senderHostname: string
syslogServers:
- anonAuth: string
format: string
pkiprofileRef: string
sslKeyAndCertificateRef: string
strictCertVerify: string
syslogServer: string
syslogServerPort: string
tlsEnable: string
udp: string
tenantRef: string
uuid: string
Alertsyslogconfig 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 Alertsyslogconfig resource accepts the following input properties:
- Alertsyslogconfig
Id string - Configpb
Attributes List<AlertsyslogconfigConfigpb 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.
- Description string
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Sender
Hostname string - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Syslog
Servers List<AlertsyslogconfigSyslog Server> - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alertsyslogconfig
Id string - Configpb
Attributes []AlertsyslogconfigConfigpb 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.
- Description string
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Sender
Hostname string - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Syslog
Servers []AlertsyslogconfigSyslog Server Args - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig
Id String - configpb
Attributes List<AlertsyslogconfigConfigpb 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.
- description String
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender
Hostname String - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog
Servers List<AlertsyslogconfigSyslog Server> - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig
Id string - configpb
Attributes AlertsyslogconfigConfigpb 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.
- description string
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender
Hostname string - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog
Servers AlertsyslogconfigSyslog Server[] - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig_
id str - configpb_
attributes Sequence[AlertsyslogconfigConfigpb 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.
- description str
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender_
hostname str - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog_
servers Sequence[AlertsyslogconfigSyslog Server Args] - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig
Id String - 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.
- description String
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender
Hostname String - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog
Servers List<Property Map> - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- 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 Alertsyslogconfig 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 Alertsyslogconfig Resource
Get an existing Alertsyslogconfig 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?: AlertsyslogconfigState, opts?: CustomResourceOptions): Alertsyslogconfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alertsyslogconfig_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[AlertsyslogconfigConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
sender_hostname: Optional[str] = None,
syslog_servers: Optional[Sequence[AlertsyslogconfigSyslogServerArgs]] = None,
tenant_ref: Optional[str] = None,
uuid: Optional[str] = None) -> Alertsyslogconfig
func GetAlertsyslogconfig(ctx *Context, name string, id IDInput, state *AlertsyslogconfigState, opts ...ResourceOption) (*Alertsyslogconfig, error)
public static Alertsyslogconfig Get(string name, Input<string> id, AlertsyslogconfigState? state, CustomResourceOptions? opts = null)
public static Alertsyslogconfig get(String name, Output<String> id, AlertsyslogconfigState state, CustomResourceOptions options)
resources: _: type: avi:Alertsyslogconfig 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.
- Alertsyslogconfig
Id string - Configpb
Attributes List<AlertsyslogconfigConfigpb 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.
- Description string
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Sender
Hostname string - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Syslog
Servers List<AlertsyslogconfigSyslog Server> - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alertsyslogconfig
Id string - Configpb
Attributes []AlertsyslogconfigConfigpb 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.
- Description string
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Sender
Hostname string - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- Syslog
Servers []AlertsyslogconfigSyslog Server Args - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig
Id String - configpb
Attributes List<AlertsyslogconfigConfigpb 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.
- description String
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender
Hostname String - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog
Servers List<AlertsyslogconfigSyslog Server> - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig
Id string - configpb
Attributes AlertsyslogconfigConfigpb 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.
- description string
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender
Hostname string - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog
Servers AlertsyslogconfigSyslog Server[] - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig_
id str - configpb_
attributes Sequence[AlertsyslogconfigConfigpb 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.
- description str
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender_
hostname str - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog_
servers Sequence[AlertsyslogconfigSyslog Server Args] - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertsyslogconfig
Id String - 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.
- description String
- User defined description for alert syslog config. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- A user-friendly name of the syslog notification. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- sender
Hostname String - User defined sender hostname in syslog message. Field introduced in 30.2.1. Allowed with any value in enterprise, enterprise with cloud services edition.
- syslog
Servers List<Property Map> - The list of syslog servers. 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. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
AlertsyslogconfigConfigpbAttribute, AlertsyslogconfigConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
AlertsyslogconfigSyslogServer, AlertsyslogconfigSyslogServerArgs
- Syslog
Server string - Udp string
- Anon
Auth string - Format string
- Pkiprofile
Ref string - Ssl
Key stringAnd Certificate Ref - Strict
Cert stringVerify - Syslog
Server stringPort - Tls
Enable string
- Syslog
Server string - Udp string
- Anon
Auth string - Format string
- Pkiprofile
Ref string - Ssl
Key stringAnd Certificate Ref - Strict
Cert stringVerify - Syslog
Server stringPort - Tls
Enable string
- syslog
Server String - udp String
- anon
Auth String - format String
- pkiprofile
Ref String - ssl
Key StringAnd Certificate Ref - strict
Cert StringVerify - syslog
Server StringPort - tls
Enable String
- syslog
Server string - udp string
- anon
Auth string - format string
- pkiprofile
Ref string - ssl
Key stringAnd Certificate Ref - strict
Cert stringVerify - syslog
Server stringPort - tls
Enable string
- syslog_
server str - udp str
- anon_
auth str - format str
- pkiprofile_
ref str - ssl_
key_ strand_ certificate_ ref - strict_
cert_ strverify - syslog_
server_ strport - tls_
enable str
- syslog
Server String - udp String
- anon
Auth String - format String
- pkiprofile
Ref String - ssl
Key StringAnd Certificate Ref - strict
Cert StringVerify - syslog
Server StringPort - tls
Enable String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.