1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. storage
  5. getTransferProjectServiceAccount
Google Cloud v8.14.0 published on Wednesday, Jan 15, 2025 by Pulumi

gcp.storage.getTransferProjectServiceAccount

Explore with Pulumi AI

Google Cloud v8.14.0 published on Wednesday, Jan 15, 2025 by Pulumi

Use this data source to retrieve Storage Transfer service account for this project

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";

const default = gcp.storage.getTransferProjectServiceAccount({});
export const defaultAccount = _default.then(_default => _default.email);
Copy
import pulumi
import pulumi_gcp as gcp

default = gcp.storage.get_transfer_project_service_account()
pulumi.export("defaultAccount", default.email)
Copy
package main

import (
	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/storage"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_default, err := storage.GetTransferProjectServiceAccount(ctx, &storage.GetTransferProjectServiceAccountArgs{}, nil)
		if err != nil {
			return err
		}
		ctx.Export("defaultAccount", _default.Email)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;

return await Deployment.RunAsync(() => 
{
    var @default = Gcp.Storage.GetTransferProjectServiceAccount.Invoke();

    return new Dictionary<string, object?>
    {
        ["defaultAccount"] = @default.Apply(@default => @default.Apply(getTransferProjectServiceAccountResult => getTransferProjectServiceAccountResult.Email)),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.storage.StorageFunctions;
import com.pulumi.gcp.storage.inputs.GetTransferProjectServiceAccountArgs;
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) {
        final var default = StorageFunctions.getTransferProjectServiceAccount();

        ctx.export("defaultAccount", default_.email());
    }
}
Copy
variables:
  default:
    fn::invoke:
      function: gcp:storage:getTransferProjectServiceAccount
      arguments: {}
outputs:
  defaultAccount: ${default.email}
Copy

Using getTransferProjectServiceAccount

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getTransferProjectServiceAccount(args: GetTransferProjectServiceAccountArgs, opts?: InvokeOptions): Promise<GetTransferProjectServiceAccountResult>
function getTransferProjectServiceAccountOutput(args: GetTransferProjectServiceAccountOutputArgs, opts?: InvokeOptions): Output<GetTransferProjectServiceAccountResult>
Copy
def get_transfer_project_service_account(project: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetTransferProjectServiceAccountResult
def get_transfer_project_service_account_output(project: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetTransferProjectServiceAccountResult]
Copy
func GetTransferProjectServiceAccount(ctx *Context, args *GetTransferProjectServiceAccountArgs, opts ...InvokeOption) (*GetTransferProjectServiceAccountResult, error)
func GetTransferProjectServiceAccountOutput(ctx *Context, args *GetTransferProjectServiceAccountOutputArgs, opts ...InvokeOption) GetTransferProjectServiceAccountResultOutput
Copy

> Note: This function is named GetTransferProjectServiceAccount in the Go SDK.

public static class GetTransferProjectServiceAccount 
{
    public static Task<GetTransferProjectServiceAccountResult> InvokeAsync(GetTransferProjectServiceAccountArgs args, InvokeOptions? opts = null)
    public static Output<GetTransferProjectServiceAccountResult> Invoke(GetTransferProjectServiceAccountInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetTransferProjectServiceAccountResult> getTransferProjectServiceAccount(GetTransferProjectServiceAccountArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Copy
fn::invoke:
  function: gcp:storage/getTransferProjectServiceAccount:getTransferProjectServiceAccount
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Project string
The project ID. If it is not provided, the provider project is used.
Project string
The project ID. If it is not provided, the provider project is used.
project String
The project ID. If it is not provided, the provider project is used.
project string
The project ID. If it is not provided, the provider project is used.
project str
The project ID. If it is not provided, the provider project is used.
project String
The project ID. If it is not provided, the provider project is used.

getTransferProjectServiceAccount Result

The following output properties are available:

Email string
Email address of the default service account used by Storage Transfer Jobs running in this project.
Id string
The provider-assigned unique ID for this managed resource.
Member string
The Identity of the service account in the form serviceAccount:{email}. This value is often used to refer to the service account in order to grant IAM permissions.
Project string
SubjectId string
Unique identifier for the service account.
Email string
Email address of the default service account used by Storage Transfer Jobs running in this project.
Id string
The provider-assigned unique ID for this managed resource.
Member string
The Identity of the service account in the form serviceAccount:{email}. This value is often used to refer to the service account in order to grant IAM permissions.
Project string
SubjectId string
Unique identifier for the service account.
email String
Email address of the default service account used by Storage Transfer Jobs running in this project.
id String
The provider-assigned unique ID for this managed resource.
member String
The Identity of the service account in the form serviceAccount:{email}. This value is often used to refer to the service account in order to grant IAM permissions.
project String
subjectId String
Unique identifier for the service account.
email string
Email address of the default service account used by Storage Transfer Jobs running in this project.
id string
The provider-assigned unique ID for this managed resource.
member string
The Identity of the service account in the form serviceAccount:{email}. This value is often used to refer to the service account in order to grant IAM permissions.
project string
subjectId string
Unique identifier for the service account.
email str
Email address of the default service account used by Storage Transfer Jobs running in this project.
id str
The provider-assigned unique ID for this managed resource.
member str
The Identity of the service account in the form serviceAccount:{email}. This value is often used to refer to the service account in order to grant IAM permissions.
project str
subject_id str
Unique identifier for the service account.
email String
Email address of the default service account used by Storage Transfer Jobs running in this project.
id String
The provider-assigned unique ID for this managed resource.
member String
The Identity of the service account in the form serviceAccount:{email}. This value is often used to refer to the service account in order to grant IAM permissions.
project String
subjectId String
Unique identifier for the service account.

Package Details

Repository
Google Cloud (GCP) Classic pulumi/pulumi-gcp
License
Apache-2.0
Notes
This Pulumi package is based on the google-beta Terraform Provider.
Google Cloud v8.14.0 published on Wednesday, Jan 15, 2025 by Pulumi