Endpoint Attachment
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",
},
});
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",
})
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" },
},
});
});
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
})
}
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());
}
}
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 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}}
$ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default {{project}}/{{location}}/{{name}}
$ pulumi import gcp:integrationconnectors/endpointAttachment:EndpointAttachment default {{location}}/{{name}}
Properties
Time the Namespace was created in UTC.
Description of the resource.
All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
Enable global access for endpoint attachment.
The Private Service Connect connection endpoint ip.
The combination of labels configured directly on the resource and default labels configured on the provider.
The path of the service attachment.
Time the Namespace was updated in UTC.