Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.iap/v1.Brand
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
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)
type: google-native:iap/v1:Brand
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 BrandArgs
- 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 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 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 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 String
- The unique name of the resource.
- args 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",
});
example, err := iap.NewBrand(ctx, "brandResource", &iap.BrandArgs{
ApplicationTitle: pulumi.String("string"),
Project: pulumi.String("string"),
SupportEmail: pulumi.String("string"),
})
var brandResource = new Brand("brandResource", BrandArgs.builder()
.applicationTitle("string")
.project("string")
.supportEmail("string")
.build());
brand_resource = google_native.iap.v1.Brand("brandResource",
application_title="string",
project="string",
support_email="string")
const brandResource = new google_native.iap.v1.Brand("brandResource", {
applicationTitle: "string",
project: "string",
supportEmail: "string",
});
type: google-native:iap/v1:Brand
properties:
applicationTitle: string
project: string
supportEmail: string
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
The Brand resource accepts the following input properties:
- Application
Title string - Application name displayed on OAuth consent screen.
- Project string
- Support
Email string - Support email displayed on the OAuth consent screen.
- Application
Title string - Application name displayed on OAuth consent screen.
- Project string
- Support
Email string - Support email displayed on the OAuth consent screen.
- application
Title String - Application name displayed on OAuth consent screen.
- project String
- support
Email String - Support email displayed on the OAuth consent screen.
- application
Title string - Application name displayed on OAuth consent screen.
- project string
- support
Email string - Support email displayed on the OAuth consent screen.
- application_
title str - Application name displayed on OAuth consent screen.
- project str
- support_
email str - Support email displayed on the OAuth consent screen.
- application
Title String - Application name displayed on OAuth consent screen.
- project String
- support
Email 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.
- Org
Internal boolOnly - 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.
- Org
Internal boolOnly - 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.
- org
Internal BooleanOnly - 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.
- org
Internal booleanOnly - 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_ boolonly - 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.
- org
Internal BooleanOnly - 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.