1. Packages
  2. Google Cloud Native
  3. API Docs
  4. cloudbuild
  5. cloudbuild/v1
  6. GitLabConfig

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.cloudbuild/v1.GitLabConfig

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    Creates a new GitLabConfig. This API is experimental

    Create GitLabConfig Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new GitLabConfig(name: string, args: GitLabConfigArgs, opts?: CustomResourceOptions);
    @overload
    def GitLabConfig(resource_name: str,
                     args: GitLabConfigArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def GitLabConfig(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     secrets: Optional[GitLabSecretsArgs] = None,
                     connected_repositories: Optional[Sequence[GitLabRepositoryIdArgs]] = None,
                     enterprise_config: Optional[GitLabEnterpriseConfigArgs] = None,
                     gitlab_config_id: Optional[str] = None,
                     location: Optional[str] = None,
                     name: Optional[str] = None,
                     project: Optional[str] = None,
                     username: Optional[str] = None)
    func NewGitLabConfig(ctx *Context, name string, args GitLabConfigArgs, opts ...ResourceOption) (*GitLabConfig, error)
    public GitLabConfig(string name, GitLabConfigArgs args, CustomResourceOptions? opts = null)
    public GitLabConfig(String name, GitLabConfigArgs args)
    public GitLabConfig(String name, GitLabConfigArgs args, CustomResourceOptions options)
    
    type: google-native:cloudbuild/v1:GitLabConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args GitLabConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args GitLabConfigArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args GitLabConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GitLabConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GitLabConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var gitLabConfigResource = new GoogleNative.CloudBuild.V1.GitLabConfig("gitLabConfigResource", new()
    {
        Secrets = new GoogleNative.CloudBuild.V1.Inputs.GitLabSecretsArgs
        {
            ApiAccessTokenVersion = "string",
            ApiKeyVersion = "string",
            ReadAccessTokenVersion = "string",
            WebhookSecretVersion = "string",
        },
        ConnectedRepositories = new[]
        {
            new GoogleNative.CloudBuild.V1.Inputs.GitLabRepositoryIdArgs
            {
                Id = "string",
            },
        },
        EnterpriseConfig = new GoogleNative.CloudBuild.V1.Inputs.GitLabEnterpriseConfigArgs
        {
            HostUri = "string",
            ServiceDirectoryConfig = new GoogleNative.CloudBuild.V1.Inputs.ServiceDirectoryConfigArgs
            {
                Service = "string",
            },
            SslCa = "string",
        },
        GitlabConfigId = "string",
        Location = "string",
        Name = "string",
        Project = "string",
        Username = "string",
    });
    
    example, err := cloudbuild.NewGitLabConfig(ctx, "gitLabConfigResource", &cloudbuild.GitLabConfigArgs{
    Secrets: &cloudbuild.GitLabSecretsArgs{
    ApiAccessTokenVersion: pulumi.String("string"),
    ApiKeyVersion: pulumi.String("string"),
    ReadAccessTokenVersion: pulumi.String("string"),
    WebhookSecretVersion: pulumi.String("string"),
    },
    ConnectedRepositories: cloudbuild.GitLabRepositoryIdArray{
    &cloudbuild.GitLabRepositoryIdArgs{
    Id: pulumi.String("string"),
    },
    },
    EnterpriseConfig: &cloudbuild.GitLabEnterpriseConfigArgs{
    HostUri: pulumi.String("string"),
    ServiceDirectoryConfig: &cloudbuild.ServiceDirectoryConfigArgs{
    Service: pulumi.String("string"),
    },
    SslCa: pulumi.String("string"),
    },
    GitlabConfigId: pulumi.String("string"),
    Location: pulumi.String("string"),
    Name: pulumi.String("string"),
    Project: pulumi.String("string"),
    Username: pulumi.String("string"),
    })
    
    var gitLabConfigResource = new GitLabConfig("gitLabConfigResource", GitLabConfigArgs.builder()        
        .secrets(GitLabSecretsArgs.builder()
            .apiAccessTokenVersion("string")
            .apiKeyVersion("string")
            .readAccessTokenVersion("string")
            .webhookSecretVersion("string")
            .build())
        .connectedRepositories(GitLabRepositoryIdArgs.builder()
            .id("string")
            .build())
        .enterpriseConfig(GitLabEnterpriseConfigArgs.builder()
            .hostUri("string")
            .serviceDirectoryConfig(ServiceDirectoryConfigArgs.builder()
                .service("string")
                .build())
            .sslCa("string")
            .build())
        .gitlabConfigId("string")
        .location("string")
        .name("string")
        .project("string")
        .username("string")
        .build());
    
    git_lab_config_resource = google_native.cloudbuild.v1.GitLabConfig("gitLabConfigResource",
        secrets=google_native.cloudbuild.v1.GitLabSecretsArgs(
            api_access_token_version="string",
            api_key_version="string",
            read_access_token_version="string",
            webhook_secret_version="string",
        ),
        connected_repositories=[google_native.cloudbuild.v1.GitLabRepositoryIdArgs(
            id="string",
        )],
        enterprise_config=google_native.cloudbuild.v1.GitLabEnterpriseConfigArgs(
            host_uri="string",
            service_directory_config=google_native.cloudbuild.v1.ServiceDirectoryConfigArgs(
                service="string",
            ),
            ssl_ca="string",
        ),
        gitlab_config_id="string",
        location="string",
        name="string",
        project="string",
        username="string")
    
    const gitLabConfigResource = new google_native.cloudbuild.v1.GitLabConfig("gitLabConfigResource", {
        secrets: {
            apiAccessTokenVersion: "string",
            apiKeyVersion: "string",
            readAccessTokenVersion: "string",
            webhookSecretVersion: "string",
        },
        connectedRepositories: [{
            id: "string",
        }],
        enterpriseConfig: {
            hostUri: "string",
            serviceDirectoryConfig: {
                service: "string",
            },
            sslCa: "string",
        },
        gitlabConfigId: "string",
        location: "string",
        name: "string",
        project: "string",
        username: "string",
    });
    
    type: google-native:cloudbuild/v1:GitLabConfig
    properties:
        connectedRepositories:
            - id: string
        enterpriseConfig:
            hostUri: string
            serviceDirectoryConfig:
                service: string
            sslCa: string
        gitlabConfigId: string
        location: string
        name: string
        project: string
        secrets:
            apiAccessTokenVersion: string
            apiKeyVersion: string
            readAccessTokenVersion: string
            webhookSecretVersion: string
        username: string
    

    GitLabConfig Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The GitLabConfig resource accepts the following input properties:

    Secrets Pulumi.GoogleNative.CloudBuild.V1.Inputs.GitLabSecrets
    Secret Manager secrets needed by the config.
    ConnectedRepositories List<Pulumi.GoogleNative.CloudBuild.V1.Inputs.GitLabRepositoryId>
    Connected GitLab.com or GitLabEnterprise repositories for this config.
    EnterpriseConfig Pulumi.GoogleNative.CloudBuild.V1.Inputs.GitLabEnterpriseConfig
    Optional. GitLabEnterprise config.
    GitlabConfigId string
    Optional. The ID to use for the GitLabConfig, which will become the final component of the GitLabConfig’s resource name. gitlab_config_id must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character
    Location string
    Name string
    The resource name for the config.
    Project string
    Username string
    Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
    Secrets GitLabSecretsArgs
    Secret Manager secrets needed by the config.
    ConnectedRepositories []GitLabRepositoryIdArgs
    Connected GitLab.com or GitLabEnterprise repositories for this config.
    EnterpriseConfig GitLabEnterpriseConfigArgs
    Optional. GitLabEnterprise config.
    GitlabConfigId string
    Optional. The ID to use for the GitLabConfig, which will become the final component of the GitLabConfig’s resource name. gitlab_config_id must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character
    Location string
    Name string
    The resource name for the config.
    Project string
    Username string
    Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
    secrets GitLabSecrets
    Secret Manager secrets needed by the config.
    connectedRepositories List<GitLabRepositoryId>
    Connected GitLab.com or GitLabEnterprise repositories for this config.
    enterpriseConfig GitLabEnterpriseConfig
    Optional. GitLabEnterprise config.
    gitlabConfigId String
    Optional. The ID to use for the GitLabConfig, which will become the final component of the GitLabConfig’s resource name. gitlab_config_id must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character
    location String
    name String
    The resource name for the config.
    project String
    username String
    Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
    secrets GitLabSecrets
    Secret Manager secrets needed by the config.
    connectedRepositories GitLabRepositoryId[]
    Connected GitLab.com or GitLabEnterprise repositories for this config.
    enterpriseConfig GitLabEnterpriseConfig
    Optional. GitLabEnterprise config.
    gitlabConfigId string
    Optional. The ID to use for the GitLabConfig, which will become the final component of the GitLabConfig’s resource name. gitlab_config_id must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character
    location string
    name string
    The resource name for the config.
    project string
    username string
    Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
    secrets GitLabSecretsArgs
    Secret Manager secrets needed by the config.
    connected_repositories Sequence[GitLabRepositoryIdArgs]
    Connected GitLab.com or GitLabEnterprise repositories for this config.
    enterprise_config GitLabEnterpriseConfigArgs
    Optional. GitLabEnterprise config.
    gitlab_config_id str
    Optional. The ID to use for the GitLabConfig, which will become the final component of the GitLabConfig’s resource name. gitlab_config_id must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character
    location str
    name str
    The resource name for the config.
    project str
    username str
    Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.
    secrets Property Map
    Secret Manager secrets needed by the config.
    connectedRepositories List<Property Map>
    Connected GitLab.com or GitLabEnterprise repositories for this config.
    enterpriseConfig Property Map
    Optional. GitLabEnterprise config.
    gitlabConfigId String
    Optional. The ID to use for the GitLabConfig, which will become the final component of the GitLabConfig’s resource name. gitlab_config_id must meet the following requirements: + They must contain only alphanumeric characters and dashes. + They can be 1-64 characters long. + They must begin and end with an alphanumeric character
    location String
    name String
    The resource name for the config.
    project String
    username String
    Username of the GitLab.com or GitLab Enterprise account Cloud Build will use.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the GitLabConfig resource produces the following output properties:

    CreateTime string
    Time when the config was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    WebhookKey string
    UUID included in webhook requests. The UUID is used to look up the corresponding config.
    CreateTime string
    Time when the config was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    WebhookKey string
    UUID included in webhook requests. The UUID is used to look up the corresponding config.
    createTime String
    Time when the config was created.
    id String
    The provider-assigned unique ID for this managed resource.
    webhookKey String
    UUID included in webhook requests. The UUID is used to look up the corresponding config.
    createTime string
    Time when the config was created.
    id string
    The provider-assigned unique ID for this managed resource.
    webhookKey string
    UUID included in webhook requests. The UUID is used to look up the corresponding config.
    create_time str
    Time when the config was created.
    id str
    The provider-assigned unique ID for this managed resource.
    webhook_key str
    UUID included in webhook requests. The UUID is used to look up the corresponding config.
    createTime String
    Time when the config was created.
    id String
    The provider-assigned unique ID for this managed resource.
    webhookKey String
    UUID included in webhook requests. The UUID is used to look up the corresponding config.

    Supporting Types

    GitLabEnterpriseConfig, GitLabEnterpriseConfigArgs

    HostUri string
    Immutable. The URI of the GitlabEnterprise host.
    ServiceDirectoryConfig Pulumi.GoogleNative.CloudBuild.V1.Inputs.ServiceDirectoryConfig
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    SslCa string
    The SSL certificate to use in requests to GitLab Enterprise instances.
    HostUri string
    Immutable. The URI of the GitlabEnterprise host.
    ServiceDirectoryConfig ServiceDirectoryConfig
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    SslCa string
    The SSL certificate to use in requests to GitLab Enterprise instances.
    hostUri String
    Immutable. The URI of the GitlabEnterprise host.
    serviceDirectoryConfig ServiceDirectoryConfig
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    sslCa String
    The SSL certificate to use in requests to GitLab Enterprise instances.
    hostUri string
    Immutable. The URI of the GitlabEnterprise host.
    serviceDirectoryConfig ServiceDirectoryConfig
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    sslCa string
    The SSL certificate to use in requests to GitLab Enterprise instances.
    host_uri str
    Immutable. The URI of the GitlabEnterprise host.
    service_directory_config ServiceDirectoryConfig
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    ssl_ca str
    The SSL certificate to use in requests to GitLab Enterprise instances.
    hostUri String
    Immutable. The URI of the GitlabEnterprise host.
    serviceDirectoryConfig Property Map
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    sslCa String
    The SSL certificate to use in requests to GitLab Enterprise instances.

    GitLabEnterpriseConfigResponse, GitLabEnterpriseConfigResponseArgs

    HostUri string
    Immutable. The URI of the GitlabEnterprise host.
    ServiceDirectoryConfig Pulumi.GoogleNative.CloudBuild.V1.Inputs.ServiceDirectoryConfigResponse
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    SslCa string
    The SSL certificate to use in requests to GitLab Enterprise instances.
    HostUri string
    Immutable. The URI of the GitlabEnterprise host.
    ServiceDirectoryConfig ServiceDirectoryConfigResponse
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    SslCa string
    The SSL certificate to use in requests to GitLab Enterprise instances.
    hostUri String
    Immutable. The URI of the GitlabEnterprise host.
    serviceDirectoryConfig ServiceDirectoryConfigResponse
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    sslCa String
    The SSL certificate to use in requests to GitLab Enterprise instances.
    hostUri string
    Immutable. The URI of the GitlabEnterprise host.
    serviceDirectoryConfig ServiceDirectoryConfigResponse
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    sslCa string
    The SSL certificate to use in requests to GitLab Enterprise instances.
    host_uri str
    Immutable. The URI of the GitlabEnterprise host.
    service_directory_config ServiceDirectoryConfigResponse
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    ssl_ca str
    The SSL certificate to use in requests to GitLab Enterprise instances.
    hostUri String
    Immutable. The URI of the GitlabEnterprise host.
    serviceDirectoryConfig Property Map
    The Service Directory configuration to be used when reaching out to the GitLab Enterprise instance.
    sslCa String
    The SSL certificate to use in requests to GitLab Enterprise instances.

    GitLabRepositoryId, GitLabRepositoryIdArgs

    Id string
    Identifier for the repository. example: "namespace/project-slug", namespace is usually the username or group ID
    Id string
    Identifier for the repository. example: "namespace/project-slug", namespace is usually the username or group ID
    id String
    Identifier for the repository. example: "namespace/project-slug", namespace is usually the username or group ID
    id string
    Identifier for the repository. example: "namespace/project-slug", namespace is usually the username or group ID
    id str
    Identifier for the repository. example: "namespace/project-slug", namespace is usually the username or group ID
    id String
    Identifier for the repository. example: "namespace/project-slug", namespace is usually the username or group ID

    GitLabRepositoryIdResponse, GitLabRepositoryIdResponseArgs

    WebhookId int
    The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
    WebhookId int
    The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
    webhookId Integer
    The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
    webhookId number
    The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
    webhook_id int
    The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.
    webhookId Number
    The ID of the webhook that was created for receiving events from this repo. We only create and manage a single webhook for each repo.

    GitLabSecrets, GitLabSecretsArgs

    ApiAccessTokenVersion string
    The resource name for the api access token’s secret version
    ApiKeyVersion string
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    ReadAccessTokenVersion string
    The resource name for the read access token’s secret version
    WebhookSecretVersion string
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    ApiAccessTokenVersion string
    The resource name for the api access token’s secret version
    ApiKeyVersion string
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    ReadAccessTokenVersion string
    The resource name for the read access token’s secret version
    WebhookSecretVersion string
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    apiAccessTokenVersion String
    The resource name for the api access token’s secret version
    apiKeyVersion String
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    readAccessTokenVersion String
    The resource name for the read access token’s secret version
    webhookSecretVersion String
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    apiAccessTokenVersion string
    The resource name for the api access token’s secret version
    apiKeyVersion string
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    readAccessTokenVersion string
    The resource name for the read access token’s secret version
    webhookSecretVersion string
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    api_access_token_version str
    The resource name for the api access token’s secret version
    api_key_version str
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    read_access_token_version str
    The resource name for the read access token’s secret version
    webhook_secret_version str
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    apiAccessTokenVersion String
    The resource name for the api access token’s secret version
    apiKeyVersion String
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    readAccessTokenVersion String
    The resource name for the read access token’s secret version
    webhookSecretVersion String
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.

    GitLabSecretsResponse, GitLabSecretsResponseArgs

    ApiAccessTokenVersion string
    The resource name for the api access token’s secret version
    ApiKeyVersion string
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    ReadAccessTokenVersion string
    The resource name for the read access token’s secret version
    WebhookSecretVersion string
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    ApiAccessTokenVersion string
    The resource name for the api access token’s secret version
    ApiKeyVersion string
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    ReadAccessTokenVersion string
    The resource name for the read access token’s secret version
    WebhookSecretVersion string
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    apiAccessTokenVersion String
    The resource name for the api access token’s secret version
    apiKeyVersion String
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    readAccessTokenVersion String
    The resource name for the read access token’s secret version
    webhookSecretVersion String
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    apiAccessTokenVersion string
    The resource name for the api access token’s secret version
    apiKeyVersion string
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    readAccessTokenVersion string
    The resource name for the read access token’s secret version
    webhookSecretVersion string
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    api_access_token_version str
    The resource name for the api access token’s secret version
    api_key_version str
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    read_access_token_version str
    The resource name for the read access token’s secret version
    webhook_secret_version str
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.
    apiAccessTokenVersion String
    The resource name for the api access token’s secret version
    apiKeyVersion String
    Immutable. API Key that will be attached to webhook requests from GitLab to Cloud Build.
    readAccessTokenVersion String
    The resource name for the read access token’s secret version
    webhookSecretVersion String
    Immutable. The resource name for the webhook secret’s secret version. Once this field has been set, it cannot be changed. If you need to change it, please create another GitLabConfig.

    ServiceDirectoryConfig, ServiceDirectoryConfigArgs

    Service string
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    Service string
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service String
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service string
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service str
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service String
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.

    ServiceDirectoryConfigResponse, ServiceDirectoryConfigResponseArgs

    Service string
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    Service string
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service String
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service string
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service str
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.
    service String
    The Service Directory service name. Format: projects/{project}/locations/{location}/namespaces/{namespace}/services/{service}.

    Package Details

    Repository
    Google Cloud Native pulumi/pulumi-google-native
    License
    Apache-2.0
    google-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi