![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.gcp.integrationconnectors.kotlin.EndpointAttachmentArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.integrationconnectors.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.integrationconnectors.EndpointAttachmentArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.Map
import kotlin.jvm.JvmName
/**
* An Integration connectors Endpoint Attachment.
* To get more information about EndpointAttachment, see:
* * [API documentation](https://cloud.google.com/integration-connectors/docs/reference/rest/v1/projects.locations.endpointAttachments)
* * How-to Guides
* * [Official Documentation](https://cloud.google.com/integration-connectors/docs/create-endpoint-attachment)
* ## Example Usage
* ### Integration Connectors Endpoint Attachment
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
* const sampleendpointattachment = new gcp.integrationconnectors.EndpointAttachment("sampleendpointattachment", {
* name: "test-endpoint-attachment",
* location: "us-central1",
* description: "tf created description",
* serviceAttachment: "projects/connectors-example/regions/us-central1/serviceAttachments/test",
* labels: {
* foo: "bar",
* },
* });
* ```
* ```python
* import pulumi
* import pulumi_gcp as gcp
* sampleendpointattachment = gcp.integrationconnectors.EndpointAttachment("sampleendpointattachment",
* name="test-endpoint-attachment",
* location="us-central1",
* description="tf created description",
* service_attachment="projects/connectors-example/regions/us-central1/serviceAttachments/test",
* labels={
* "foo": "bar",
* })
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Gcp = Pulumi.Gcp;
* return await Deployment.RunAsync(() =>
* {
* var sampleendpointattachment = new Gcp.IntegrationConnectors.EndpointAttachment("sampleendpointattachment", new()
* {
* Name = "test-endpoint-attachment",
* Location = "us-central1",
* Description = "tf created description",
* ServiceAttachment = "projects/connectors-example/regions/us-central1/serviceAttachments/test",
* Labels =
* {
* { "foo", "bar" },
* },
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/integrationconnectors"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := integrationconnectors.NewEndpointAttachment(ctx, "sampleendpointattachment", &integrationconnectors.EndpointAttachmentArgs{
* Name: pulumi.String("test-endpoint-attachment"),
* Location: pulumi.String("us-central1"),
* Description: pulumi.String("tf created description"),
* ServiceAttachment: pulumi.String("projects/connectors-example/regions/us-central1/serviceAttachments/test"),
* Labels: pulumi.StringMap{
* "foo": pulumi.String("bar"),
* },
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.gcp.integrationconnectors.EndpointAttachment;
* import com.pulumi.gcp.integrationconnectors.EndpointAttachmentArgs;
* 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 sampleendpointattachment = new EndpointAttachment("sampleendpointattachment", EndpointAttachmentArgs.builder()
* .name("test-endpoint-attachment")
* .location("us-central1")
* .description("tf created description")
* .serviceAttachment("projects/connectors-example/regions/us-central1/serviceAttachments/test")
* .labels(Map.of("foo", "bar"))
* .build());
* }
* }
* ```
* ```yaml
* resources:
* sampleendpointattachment:
* type: gcp:integrationconnectors:EndpointAttachment
* properties:
* name: test-endpoint-attachment
* location: us-central1
* description: tf created description
* serviceAttachment: projects/connectors-example/regions/us-central1/serviceAttachments/test
* labels:
* foo: bar
* ```
*
* ## Import
* EndpointAttachment can be imported using any of these accepted formats:
* * `projects/{{project}}/locations/{{location}}/endpointAttachments/{{name}}`
* * `{{project}}/{{location}}/{{name}}`
* * `{{location}}/{{name}}`
* When using the `pulumi import` command, EndpointAttachment can be imported using one of the formats above. For example:
* ```sh
* $ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default projects/{{project}}/locations/{{location}}/endpointAttachments/{{name}}
* ```
* ```sh
* $ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default {{project}}/{{location}}/{{name}}
* ```
* ```sh
* $ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default {{location}}/{{name}}
* ```
* @property description Description of the resource.
* @property endpointGlobalAccess Enable global access for endpoint attachment.
* @property labels Resource labels to represent user provided metadata.
* **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
* Please refer to the field `effective_labels` for all of the labels present on the resource.
* @property location Location in which Endpoint Attachment needs to be created.
* @property name Name of Endpoint Attachment needs to be created.
* - - -
* @property project The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
* @property serviceAttachment The path of the service attachment.
*/
public data class EndpointAttachmentArgs(
public val description: Output? = null,
public val endpointGlobalAccess: Output? = null,
public val labels: Output
© 2015 - 2025 Weber Informatics LLC | Privacy Policy