ServiceProjectAttachmentArgs

data class ServiceProjectAttachmentArgs(val project: Output<String>? = null, val serviceProject: Output<String>? = null, val serviceProjectAttachmentId: Output<String>? = null) : ConvertibleToJava<ServiceProjectAttachmentArgs>

Represents a Service project attachment to the Host Project.

Example Usage

Service Project Attachment Basic

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
import * as time from "@pulumi/time";
const serviceProject = new gcp.organizations.Project("service_project", {
projectId: "project-1",
name: "Service Project",
orgId: "123456789",
});
const wait120s = new time.index.Sleep("wait_120s", {createDuration: "120s"}, {
dependsOn: [serviceProject],
});
const example = new gcp.apphub.ServiceProjectAttachment("example", {serviceProjectAttachmentId: serviceProject.projectId}, {
dependsOn: [wait120s],
});
import pulumi
import pulumi_gcp as gcp
import pulumi_time as time
service_project = gcp.organizations.Project("service_project",
project_id="project-1",
name="Service Project",
org_id="123456789")
wait120s = time.index.Sleep("wait_120s", create_duration=120s,
opts = pulumi.ResourceOptions(depends_on=[service_project]))
example = gcp.apphub.ServiceProjectAttachment("example", service_project_attachment_id=service_project.project_id,
opts = pulumi.ResourceOptions(depends_on=[wait120s]))
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
using Time = Pulumi.Time;
return await Deployment.RunAsync(() =>
{
var serviceProject = new Gcp.Organizations.Project("service_project", new()
{
ProjectId = "project-1",
Name = "Service Project",
OrgId = "123456789",
});
var wait120s = new Time.Index.Sleep("wait_120s", new()
{
CreateDuration = "120s",
}, new CustomResourceOptions
{
DependsOn =
{
serviceProject,
},
});
var example = new Gcp.Apphub.ServiceProjectAttachment("example", new()
{
ServiceProjectAttachmentId = serviceProject.ProjectId,
}, new CustomResourceOptions
{
DependsOn =
{
wait120s,
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/apphub"
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
"github.com/pulumi/pulumi-time/sdk/go/time"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
serviceProject, err := organizations.NewProject(ctx, "service_project", &organizations.ProjectArgs{
ProjectId: pulumi.String("project-1"),
Name: pulumi.String("Service Project"),
OrgId: pulumi.String("123456789"),
})
if err != nil {
return err
}
wait120s, err := time.NewSleep(ctx, "wait_120s", &time.SleepArgs{
CreateDuration: "120s",
}, pulumi.DependsOn([]pulumi.Resource{
serviceProject,
}))
if err != nil {
return err
}
_, err = apphub.NewServiceProjectAttachment(ctx, "example", &apphub.ServiceProjectAttachmentArgs{
ServiceProjectAttachmentId: serviceProject.ProjectId,
}, pulumi.DependsOn([]pulumi.Resource{
wait120s,
}))
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.organizations.Project;
import com.pulumi.gcp.organizations.ProjectArgs;
import com.pulumi.time.sleep;
import com.pulumi.time.SleepArgs;
import com.pulumi.gcp.apphub.ServiceProjectAttachment;
import com.pulumi.gcp.apphub.ServiceProjectAttachmentArgs;
import com.pulumi.resources.CustomResourceOptions;
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 serviceProject = new Project("serviceProject", ProjectArgs.builder()
.projectId("project-1")
.name("Service Project")
.orgId("123456789")
.build());
var wait120s = new Sleep("wait120s", SleepArgs.builder()
.createDuration("120s")
.build(), CustomResourceOptions.builder()
.dependsOn(serviceProject)
.build());
var example = new ServiceProjectAttachment("example", ServiceProjectAttachmentArgs.builder()
.serviceProjectAttachmentId(serviceProject.projectId())
.build(), CustomResourceOptions.builder()
.dependsOn(wait120s)
.build());
}
}
resources:
example:
type: gcp:apphub:ServiceProjectAttachment
properties:
serviceProjectAttachmentId: ${serviceProject.projectId}
options:
dependson:
- ${wait120s}
serviceProject:
type: gcp:organizations:Project
name: service_project
properties:
projectId: project-1
name: Service Project
orgId: '123456789'
wait120s:
type: time:sleep
name: wait_120s
properties:
createDuration: 120s
options:
dependson:
- ${serviceProject}

Service Project Attachment Full

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
import * as time from "@pulumi/time";
const serviceProjectFull = new gcp.organizations.Project("service_project_full", {
projectId: "project-1",
name: "Service Project Full",
orgId: "123456789",
});
const wait120s = new time.index.Sleep("wait_120s", {createDuration: "120s"}, {
dependsOn: [serviceProjectFull],
});
const example2 = new gcp.apphub.ServiceProjectAttachment("example2", {
serviceProjectAttachmentId: serviceProjectFull.projectId,
serviceProject: serviceProjectFull.projectId,
}, {
dependsOn: [wait120s],
});
import pulumi
import pulumi_gcp as gcp
import pulumi_time as time
service_project_full = gcp.organizations.Project("service_project_full",
project_id="project-1",
name="Service Project Full",
org_id="123456789")
wait120s = time.index.Sleep("wait_120s", create_duration=120s,
opts = pulumi.ResourceOptions(depends_on=[service_project_full]))
example2 = gcp.apphub.ServiceProjectAttachment("example2",
service_project_attachment_id=service_project_full.project_id,
service_project=service_project_full.project_id,
opts = pulumi.ResourceOptions(depends_on=[wait120s]))
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
using Time = Pulumi.Time;
return await Deployment.RunAsync(() =>
{
var serviceProjectFull = new Gcp.Organizations.Project("service_project_full", new()
{
ProjectId = "project-1",
Name = "Service Project Full",
OrgId = "123456789",
});
var wait120s = new Time.Index.Sleep("wait_120s", new()
{
CreateDuration = "120s",
}, new CustomResourceOptions
{
DependsOn =
{
serviceProjectFull,
},
});
var example2 = new Gcp.Apphub.ServiceProjectAttachment("example2", new()
{
ServiceProjectAttachmentId = serviceProjectFull.ProjectId,
ServiceProject = serviceProjectFull.ProjectId,
}, new CustomResourceOptions
{
DependsOn =
{
wait120s,
},
});
});
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/apphub"
"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/organizations"
"github.com/pulumi/pulumi-time/sdk/go/time"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
serviceProjectFull, err := organizations.NewProject(ctx, "service_project_full", &organizations.ProjectArgs{
ProjectId: pulumi.String("project-1"),
Name: pulumi.String("Service Project Full"),
OrgId: pulumi.String("123456789"),
})
if err != nil {
return err
}
wait120s, err := time.NewSleep(ctx, "wait_120s", &time.SleepArgs{
CreateDuration: "120s",
}, pulumi.DependsOn([]pulumi.Resource{
serviceProjectFull,
}))
if err != nil {
return err
}
_, err = apphub.NewServiceProjectAttachment(ctx, "example2", &apphub.ServiceProjectAttachmentArgs{
ServiceProjectAttachmentId: serviceProjectFull.ProjectId,
ServiceProject: serviceProjectFull.ProjectId,
}, pulumi.DependsOn([]pulumi.Resource{
wait120s,
}))
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.organizations.Project;
import com.pulumi.gcp.organizations.ProjectArgs;
import com.pulumi.time.sleep;
import com.pulumi.time.SleepArgs;
import com.pulumi.gcp.apphub.ServiceProjectAttachment;
import com.pulumi.gcp.apphub.ServiceProjectAttachmentArgs;
import com.pulumi.resources.CustomResourceOptions;
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 serviceProjectFull = new Project("serviceProjectFull", ProjectArgs.builder()
.projectId("project-1")
.name("Service Project Full")
.orgId("123456789")
.build());
var wait120s = new Sleep("wait120s", SleepArgs.builder()
.createDuration("120s")
.build(), CustomResourceOptions.builder()
.dependsOn(serviceProjectFull)
.build());
var example2 = new ServiceProjectAttachment("example2", ServiceProjectAttachmentArgs.builder()
.serviceProjectAttachmentId(serviceProjectFull.projectId())
.serviceProject(serviceProjectFull.projectId())
.build(), CustomResourceOptions.builder()
.dependsOn(wait120s)
.build());
}
}
resources:
example2:
type: gcp:apphub:ServiceProjectAttachment
properties:
serviceProjectAttachmentId: ${serviceProjectFull.projectId}
serviceProject: ${serviceProjectFull.projectId}
options:
dependson:
- ${wait120s}
serviceProjectFull:
type: gcp:organizations:Project
name: service_project_full
properties:
projectId: project-1
name: Service Project Full
orgId: '123456789'
wait120s:
type: time:sleep
name: wait_120s
properties:
createDuration: 120s
options:
dependson:
- ${serviceProjectFull}

Import

ServiceProjectAttachment can be imported using any of these accepted formats:

  • projects/{{project}}/locations/global/serviceProjectAttachments/{{service_project_attachment_id}}

  • {{project}}/{{service_project_attachment_id}}

  • {{service_project_attachment_id}} When using the pulumi import command, ServiceProjectAttachment can be imported using one of the formats above. For example:

$ pulumi import gcp:apphub/serviceProjectAttachment:ServiceProjectAttachment default projects/{{project}}/locations/global/serviceProjectAttachments/{{service_project_attachment_id}}
$ pulumi import gcp:apphub/serviceProjectAttachment:ServiceProjectAttachment default {{project}}/{{service_project_attachment_id}}
$ pulumi import gcp:apphub/serviceProjectAttachment:ServiceProjectAttachment default {{service_project_attachment_id}}

Constructors

Link copied to clipboard
constructor(project: Output<String>? = null, serviceProject: Output<String>? = null, serviceProjectAttachmentId: Output<String>? = null)

Properties

Link copied to clipboard
val project: Output<String>? = null

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 serviceProject: Output<String>? = null

"Immutable. Service project name in the format: \"projects/abc\" or \"projects/123\". As input, project name with either project id or number are accepted. As output, this field will contain project number."

Link copied to clipboard
val serviceProjectAttachmentId: Output<String>? = null

Required. The service project attachment identifier must contain the project_id of the service project specified in the service_project_attachment.service_project field. Hint: "projects/{project_id}"

Functions

Link copied to clipboard
open override fun toJava(): ServiceProjectAttachmentArgs