Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.iap/v1.IdentityAwareProxyClient
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates an Identity Aware Proxy (IAP) OAuth client. The client is owned by IAP. Requires that the brand for the project exists and that it is set for internal-only use. Auto-naming is currently not supported for this resource.
Create IdentityAwareProxyClient Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IdentityAwareProxyClient(name: string, args: IdentityAwareProxyClientArgs, opts?: CustomResourceOptions);
@overload
def IdentityAwareProxyClient(resource_name: str,
args: IdentityAwareProxyClientArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IdentityAwareProxyClient(resource_name: str,
opts: Optional[ResourceOptions] = None,
brand_id: Optional[str] = None,
display_name: Optional[str] = None,
project: Optional[str] = None)
func NewIdentityAwareProxyClient(ctx *Context, name string, args IdentityAwareProxyClientArgs, opts ...ResourceOption) (*IdentityAwareProxyClient, error)
public IdentityAwareProxyClient(string name, IdentityAwareProxyClientArgs args, CustomResourceOptions? opts = null)
public IdentityAwareProxyClient(String name, IdentityAwareProxyClientArgs args)
public IdentityAwareProxyClient(String name, IdentityAwareProxyClientArgs args, CustomResourceOptions options)
type: google-native:iap/v1:IdentityAwareProxyClient
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 IdentityAwareProxyClientArgs
- 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 IdentityAwareProxyClientArgs
- 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 IdentityAwareProxyClientArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IdentityAwareProxyClientArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IdentityAwareProxyClientArgs
- 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 identityAwareProxyClientResource = new GoogleNative.Iap.V1.IdentityAwareProxyClient("identityAwareProxyClientResource", new()
{
BrandId = "string",
DisplayName = "string",
Project = "string",
});
example, err := iap.NewIdentityAwareProxyClient(ctx, "identityAwareProxyClientResource", &iap.IdentityAwareProxyClientArgs{
BrandId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Project: pulumi.String("string"),
})
var identityAwareProxyClientResource = new IdentityAwareProxyClient("identityAwareProxyClientResource", IdentityAwareProxyClientArgs.builder()
.brandId("string")
.displayName("string")
.project("string")
.build());
identity_aware_proxy_client_resource = google_native.iap.v1.IdentityAwareProxyClient("identityAwareProxyClientResource",
brand_id="string",
display_name="string",
project="string")
const identityAwareProxyClientResource = new google_native.iap.v1.IdentityAwareProxyClient("identityAwareProxyClientResource", {
brandId: "string",
displayName: "string",
project: "string",
});
type: google-native:iap/v1:IdentityAwareProxyClient
properties:
brandId: string
displayName: string
project: string
IdentityAwareProxyClient 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 IdentityAwareProxyClient resource accepts the following input properties:
- Brand
Id string - Display
Name string - Human-friendly name given to the OAuth client.
- Project string
- Brand
Id string - Display
Name string - Human-friendly name given to the OAuth client.
- Project string
- brand
Id String - display
Name String - Human-friendly name given to the OAuth client.
- project String
- brand
Id string - display
Name string - Human-friendly name given to the OAuth client.
- project string
- brand_
id str - display_
name str - Human-friendly name given to the OAuth client.
- project str
- brand
Id String - display
Name String - Human-friendly name given to the OAuth client.
- project String
Outputs
All input properties are implicitly available as output properties. Additionally, the IdentityAwareProxyClient resource produces the following output properties:
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.