Show / Hide Table of Contents

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,
    });
}

}
Inheritance
System.Object
Resource
CustomResource
ServiceIntegration
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 ServiceIntegration : CustomResource

Constructors

View Source

ServiceIntegration(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 Source

DestinationEndpointId

Destination endpoint for the integration (if any)

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

DestinationServiceName

Destination service for the integration (if any)

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

IntegrationType

Type of the service integration

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

LogsUserConfig

Log integration specific user configurable settings

Declaration
public Output<ServiceIntegrationLogsUserConfig> LogsUserConfig { get; }
Property Value
Type Description
Output<ServiceIntegrationLogsUserConfig>
View Source

MirrormakerUserConfig

Mirrormaker integration specific user configurable settings

Declaration
public Output<ServiceIntegrationMirrormakerUserConfig> MirrormakerUserConfig { get; }
Property Value
Type Description
Output<ServiceIntegrationMirrormakerUserConfig>
View Source

Project

Project the integration belongs to

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

SourceEndpointId

Source endpoint for the integration (if any)

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

SourceServiceName

Source service for the integration (if any)

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

Methods

View Source

Get(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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.