Show / Hide Table of Contents

Class ServiceIntegrationEndpoint

Example Usage

using Pulumi;
using Aiven = Pulumi.Aiven;

class MyStack : Stack
{
public MyStack()
{
    var myendpoint = new Aiven.ServiceIntegrationEndpoint("myendpoint", new Aiven.ServiceIntegrationEndpointArgs
    {
        DatadogUserConfig = new Aiven.Inputs.ServiceIntegrationEndpointDatadogUserConfigArgs
        {
            DatadogApiKey = "<DATADOG_API_KEY>",
        },
        EndpointName = "<ENDPOINT_NAME>",
        EndpointType = "datadog",
        Project = aiven_project.Myproject.Project,
    });
}

}
Inheritance
System.Object
Resource
CustomResource
ServiceIntegrationEndpoint
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aiven
Assembly: Pulumi.Aiven.dll
Syntax
public class ServiceIntegrationEndpoint : CustomResource

Constructors

View Source

ServiceIntegrationEndpoint(String, ServiceIntegrationEndpointArgs, CustomResourceOptions)

Create a ServiceIntegrationEndpoint resource with the given unique name, arguments, and options.

Declaration
public ServiceIntegrationEndpoint(string name, ServiceIntegrationEndpointArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

ServiceIntegrationEndpointArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

DatadogUserConfig

Datadog specific user configurable settings

Declaration
public Output<ServiceIntegrationEndpointDatadogUserConfig> DatadogUserConfig { get; }
Property Value
Type Description
Output<ServiceIntegrationEndpointDatadogUserConfig>
View Source

EndpointConfig

Integration endpoint specific backend configuration

Declaration
public Output<ImmutableDictionary<string, string>> EndpointConfig { get; }
Property Value
Type Description
Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.String>>
View Source

EndpointName

Name of the service integration endpoint

Declaration
public Output<string> EndpointName { get; }
Property Value
Type Description
Output<System.String>
View Source

EndpointType

Type of the service integration endpoint

Declaration
public Output<string> EndpointType { get; }
Property Value
Type Description
Output<System.String>
View Source

ExternalElasticsearchLogsUserConfig

external elasticsearch specific user configurable settings

Declaration
public Output<ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig> ExternalElasticsearchLogsUserConfig { get; }
Property Value
Type Description
Output<ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig>
View Source

Project

Project the service integration endpoint belongs to

Declaration
public Output<string> Project { get; }
Property Value
Type Description
Output<System.String>
View Source

PrometheusUserConfig

Prometheus specific user configurable settings

Declaration
public Output<ServiceIntegrationEndpointPrometheusUserConfig> PrometheusUserConfig { get; }
Property Value
Type Description
Output<ServiceIntegrationEndpointPrometheusUserConfig>
View Source

RsyslogUserConfig

rsyslog specific user configurable settings

Declaration
public Output<ServiceIntegrationEndpointRsyslogUserConfig> RsyslogUserConfig { get; }
Property Value
Type Description
Output<ServiceIntegrationEndpointRsyslogUserConfig>

Methods

View Source

Get(String, Input<String>, ServiceIntegrationEndpointState, CustomResourceOptions)

Get an existing ServiceIntegrationEndpoint resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static ServiceIntegrationEndpoint Get(string name, Input<string> id, ServiceIntegrationEndpointState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

ServiceIntegrationEndpointState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
ServiceIntegrationEndpoint
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.