1. Packages
  2. Google Cloud Native
  3. API Docs
  4. iap
  5. iap/v1
  6. Brand

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.iap/v1.Brand

Explore with Pulumi AI

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

Constructs a new OAuth brand for the project if one does not exist. The created brand is “internal only”, meaning that OAuth clients created under it only accept requests from users who belong to the same Google Workspace organization as the project. The brand is created in an un-reviewed status. NOTE: The “internal only” status can be manually changed in the Google Cloud Console. Requires that a brand does not already exist for the project, and that the specified support email is owned by the caller. Auto-naming is currently not supported for this resource. Note - this resource’s API doesn’t support deletion. When deleted, the resource will persist on Google Cloud even though it will be deleted from Pulumi state.

Create Brand Resource

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

Constructor syntax

new Brand(name: string, args?: BrandArgs, opts?: CustomResourceOptions);
@overload
def Brand(resource_name: str,
          args: Optional[BrandArgs] = None,
          opts: Optional[ResourceOptions] = None)

@overload
def Brand(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          application_title: Optional[str] = None,
          project: Optional[str] = None,
          support_email: Optional[str] = None)
func NewBrand(ctx *Context, name string, args *BrandArgs, opts ...ResourceOption) (*Brand, error)
public Brand(string name, BrandArgs? args = null, CustomResourceOptions? opts = null)
public Brand(String name, BrandArgs args)
public Brand(String name, BrandArgs args, CustomResourceOptions options)
type: google-native:iap/v1:Brand
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

Constructor example

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

var brandResource = new GoogleNative.Iap.V1.Brand("brandResource", new()
{
    ApplicationTitle = "string",
    Project = "string",
    SupportEmail = "string",
});
Copy
example, err := iap.NewBrand(ctx, "brandResource", &iap.BrandArgs{
	ApplicationTitle: pulumi.String("string"),
	Project:          pulumi.String("string"),
	SupportEmail:     pulumi.String("string"),
})
Copy
var brandResource = new Brand("brandResource", BrandArgs.builder()
    .applicationTitle("string")
    .project("string")
    .supportEmail("string")
    .build());
Copy
brand_resource = google_native.iap.v1.Brand("brandResource",
    application_title="string",
    project="string",
    support_email="string")
Copy
const brandResource = new google_native.iap.v1.Brand("brandResource", {
    applicationTitle: "string",
    project: "string",
    supportEmail: "string",
});
Copy
type: google-native:iap/v1:Brand
properties:
    applicationTitle: string
    project: string
    supportEmail: string
Copy

Brand Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Brand resource accepts the following input properties:

ApplicationTitle string
Application name displayed on OAuth consent screen.
Project Changes to this property will trigger replacement. string
SupportEmail string
Support email displayed on the OAuth consent screen.
ApplicationTitle string
Application name displayed on OAuth consent screen.
Project Changes to this property will trigger replacement. string
SupportEmail string
Support email displayed on the OAuth consent screen.
applicationTitle String
Application name displayed on OAuth consent screen.
project Changes to this property will trigger replacement. String
supportEmail String
Support email displayed on the OAuth consent screen.
applicationTitle string
Application name displayed on OAuth consent screen.
project Changes to this property will trigger replacement. string
supportEmail string
Support email displayed on the OAuth consent screen.
application_title str
Application name displayed on OAuth consent screen.
project Changes to this property will trigger replacement. str
support_email str
Support email displayed on the OAuth consent screen.
applicationTitle String
Application name displayed on OAuth consent screen.
project Changes to this property will trigger replacement. String
supportEmail String
Support email displayed on the OAuth consent screen.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created.
OrgInternalOnly bool
Whether the brand is only intended for usage inside the G Suite organization only.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created.
OrgInternalOnly bool
Whether the brand is only intended for usage inside the G Suite organization only.
id String
The provider-assigned unique ID for this managed resource.
name String
Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created.
orgInternalOnly Boolean
Whether the brand is only intended for usage inside the G Suite organization only.
id string
The provider-assigned unique ID for this managed resource.
name string
Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created.
orgInternalOnly boolean
Whether the brand is only intended for usage inside the G Suite organization only.
id str
The provider-assigned unique ID for this managed resource.
name str
Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created.
org_internal_only bool
Whether the brand is only intended for usage inside the G Suite organization only.
id String
The provider-assigned unique ID for this managed resource.
name String
Identifier of the brand. NOTE: GCP project number achieves the same brand identification purpose as only one brand per project can be created.
orgInternalOnly Boolean
Whether the brand is only intended for usage inside the G Suite organization only.

Package Details

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

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