EndpointAttachment

class EndpointAttachment : KotlinCustomResource

An Integration connectors Endpoint Attachment. To get more information about EndpointAttachment, see:

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/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
})
}
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 the pulumi 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

Link copied to clipboard
val createTime: Output<String>

Time the Namespace was created in UTC.

Link copied to clipboard
val description: Output<String>?

Description of the resource.

Link copied to clipboard

All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.

Link copied to clipboard

Enable global access for endpoint attachment.

Link copied to clipboard
val endpointIp: Output<String>

The Private Service Connect connection endpoint ip.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val labels: Output<Map<String, String>>?

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.

Link copied to clipboard
val location: Output<String>

Location in which Endpoint Attachment needs to be created.

Link copied to clipboard
val name: Output<String>

Name of Endpoint Attachment needs to be created.

Link copied to clipboard
val project: Output<String>

The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
val pulumiLabels: Output<Map<String, String>>

The combination of labels configured directly on the resource and default labels configured on the provider.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The path of the service attachment.

Link copied to clipboard
val updateTime: Output<String>

Time the Namespace was updated in UTC.

Link copied to clipboard
val urn: Output<String>