Endpoint Attachment Args
data class EndpointAttachmentArgs(val description: Output<String>? = null, val endpointGlobalAccess: Output<Boolean>? = null, val labels: Output<Map<String, String>>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val serviceAttachment: Output<String>? = null) : ConvertibleToJava<EndpointAttachmentArgs>
An Integration connectors Endpoint Attachment. To get more information about EndpointAttachment, see:
How-to Guides
Example Usage
Integration Connectors Endpoint Attachment
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",
},
});
Content copied to clipboard
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",
})
Content copied to clipboard
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" },
},
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/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
})
}
Content copied to clipboard
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());
}
}
Content copied to clipboard
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
Content copied to clipboard
Import
EndpointAttachment can be imported using any of these accepted formats:
projects/{{project}}/locations/{{location}}/endpointAttachments/{{name}}
{{project}}/{{location}}/{{name}}
{{location}}/{{name}}
When using thepulumi import
command, EndpointAttachment can be imported using one of the formats above. For example:
$ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default projects/{{project}}/locations/{{location}}/endpointAttachments/{{name}}
Content copied to clipboard
$ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default {{project}}/{{location}}/{{name}}
Content copied to clipboard
$ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default {{location}}/{{name}}
Content copied to clipboard