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,
});
}
}
Inherited Members
Namespace: Pulumi.Aiven
Assembly: Pulumi.Aiven.dll
Syntax
public class ServiceIntegrationEndpoint : CustomResource
Constructors
View SourceServiceIntegrationEndpoint(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 SourceDatadogUserConfig
Datadog specific user configurable settings
Declaration
public Output<ServiceIntegrationEndpointDatadogUserConfig> DatadogUserConfig { get; }
Property Value
| Type | Description |
|---|---|
| Output<ServiceIntegrationEndpointDatadogUserConfig> |
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>> |
EndpointName
Name of the service integration endpoint
Declaration
public Output<string> EndpointName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
EndpointType
Type of the service integration endpoint
Declaration
public Output<string> EndpointType { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
ExternalElasticsearchLogsUserConfig
external elasticsearch specific user configurable settings
Declaration
public Output<ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig> ExternalElasticsearchLogsUserConfig { get; }
Property Value
| Type | Description |
|---|---|
| Output<ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig> |
Project
Project the service integration endpoint belongs to
Declaration
public Output<string> Project { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
PrometheusUserConfig
Prometheus specific user configurable settings
Declaration
public Output<ServiceIntegrationEndpointPrometheusUserConfig> PrometheusUserConfig { get; }
Property Value
| Type | Description |
|---|---|
| Output<ServiceIntegrationEndpointPrometheusUserConfig> |
RsyslogUserConfig
rsyslog specific user configurable settings
Declaration
public Output<ServiceIntegrationEndpointRsyslogUserConfig> RsyslogUserConfig { get; }
Property Value
| Type | Description |
|---|---|
| Output<ServiceIntegrationEndpointRsyslogUserConfig> |
Methods
View SourceGet(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 |