Google Cloud Classic v7.29.0 published on Wednesday, Jun 26, 2024 by Pulumi
gcp.storage.getTransferProjectServiceAccount
Explore with Pulumi AI
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);
import pulumi
import pulumi_gcp as gcp
default = gcp.storage.get_transfer_project_service_account()
pulumi.export("defaultAccount", default.email)
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v7/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, nil, nil)
if err != nil {
return err
}
ctx.Export("defaultAccount", _default.Email)
return nil
})
}
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)),
};
});
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());
}
}
variables:
default:
fn::invoke:
Function: gcp:storage:getTransferProjectServiceAccount
Arguments: {}
outputs:
defaultAccount: ${default.email}
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>
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]
func GetTransferProjectServiceAccount(ctx *Context, args *GetTransferProjectServiceAccountArgs, opts ...InvokeOption) (*GetTransferProjectServiceAccountResult, error)
func GetTransferProjectServiceAccountOutput(ctx *Context, args *GetTransferProjectServiceAccountOutputArgs, opts ...InvokeOption) GetTransferProjectServiceAccountResultOutput
> 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)
}
public static CompletableFuture<GetTransferProjectServiceAccountResult> getTransferProjectServiceAccount(GetTransferProjectServiceAccountArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: gcp:storage/getTransferProjectServiceAccount:getTransferProjectServiceAccount
arguments:
# arguments dictionary
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
- Subject
Id 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
- Subject
Id 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
- subject
Id 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
- subject
Id 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
- subject
Id 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.