Class ServiceIntegration
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var myintegration = new Aiven.ServiceIntegration("myintegration", new Aiven.ServiceIntegrationArgs
{
DestinationEndpointId = aiven_service_integration_endpoint.Myendpoint.Id,
DestinationServiceName = "",
IntegrationType = "datadog",
Project = aiven_project.Myproject.Project,
SourceEndpointId = "",
SourceServiceName = aiven_service.Testkafka.Service_name,
});
}
}
Inherited Members
Namespace: Pulumi.Aiven
Assembly: Pulumi.Aiven.dll
Syntax
public class ServiceIntegration : CustomResource
Constructors
View SourceServiceIntegration(String, ServiceIntegrationArgs, CustomResourceOptions)
Create a ServiceIntegration resource with the given unique name, arguments, and options.
Declaration
public ServiceIntegration(string name, ServiceIntegrationArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| ServiceIntegrationArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceDestinationEndpointId
Destination endpoint for the integration (if any)
Declaration
public Output<string> DestinationEndpointId { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
DestinationServiceName
Destination service for the integration (if any)
Declaration
public Output<string> DestinationServiceName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
IntegrationType
Type of the service integration
Declaration
public Output<string> IntegrationType { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
LogsUserConfig
Log integration specific user configurable settings
Declaration
public Output<ServiceIntegrationLogsUserConfig> LogsUserConfig { get; }
Property Value
| Type | Description |
|---|---|
| Output<ServiceIntegrationLogsUserConfig> |
MirrormakerUserConfig
Mirrormaker integration specific user configurable settings
Declaration
public Output<ServiceIntegrationMirrormakerUserConfig> MirrormakerUserConfig { get; }
Property Value
| Type | Description |
|---|---|
| Output<ServiceIntegrationMirrormakerUserConfig> |
Project
Project the integration belongs to
Declaration
public Output<string> Project { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
SourceEndpointId
Source endpoint for the integration (if any)
Declaration
public Output<string> SourceEndpointId { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
SourceServiceName
Source service for the integration (if any)
Declaration
public Output<string> SourceServiceName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, ServiceIntegrationState, CustomResourceOptions)
Get an existing ServiceIntegration resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static ServiceIntegration Get(string name, Input<string> id, ServiceIntegrationState 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. |
| ServiceIntegrationState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| ServiceIntegration |