1. Packages
  2. Google Cloud Native
  3. API Docs
  4. cloudidentity
  5. cloudidentity/v1beta1
  6. InboundSamlSsoProfile

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.cloudidentity/v1beta1.InboundSamlSsoProfile

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

Creates an InboundSamlSsoProfile for a customer. Auto-naming is currently not supported for this resource.

Create InboundSamlSsoProfile Resource

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

Constructor syntax

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

@overload
def InboundSamlSsoProfile(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          customer: Optional[str] = None,
                          display_name: Optional[str] = None,
                          idp_config: Optional[SamlIdpConfigArgs] = None,
                          sp_config: Optional[SamlSpConfigArgs] = None)
func NewInboundSamlSsoProfile(ctx *Context, name string, args *InboundSamlSsoProfileArgs, opts ...ResourceOption) (*InboundSamlSsoProfile, error)
public InboundSamlSsoProfile(string name, InboundSamlSsoProfileArgs? args = null, CustomResourceOptions? opts = null)
public InboundSamlSsoProfile(String name, InboundSamlSsoProfileArgs args)
public InboundSamlSsoProfile(String name, InboundSamlSsoProfileArgs args, CustomResourceOptions options)
type: google-native:cloudidentity/v1beta1:InboundSamlSsoProfile
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 InboundSamlSsoProfileArgs
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 InboundSamlSsoProfileArgs
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 InboundSamlSsoProfileArgs
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 InboundSamlSsoProfileArgs
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. InboundSamlSsoProfileArgs
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 google_nativeInboundSamlSsoProfileResource = new GoogleNative.CloudIdentity.V1Beta1.InboundSamlSsoProfile("google-nativeInboundSamlSsoProfileResource", new()
{
    Customer = "string",
    DisplayName = "string",
    IdpConfig = new GoogleNative.CloudIdentity.V1Beta1.Inputs.SamlIdpConfigArgs
    {
        EntityId = "string",
        SingleSignOnServiceUri = "string",
        ChangePasswordUri = "string",
        LogoutRedirectUri = "string",
    },
    SpConfig = null,
});
Copy
example, err := cloudidentityv1beta1.NewInboundSamlSsoProfile(ctx, "google-nativeInboundSamlSsoProfileResource", &cloudidentityv1beta1.InboundSamlSsoProfileArgs{
	Customer:    pulumi.String("string"),
	DisplayName: pulumi.String("string"),
	IdpConfig: &cloudidentity.SamlIdpConfigArgs{
		EntityId:               pulumi.String("string"),
		SingleSignOnServiceUri: pulumi.String("string"),
		ChangePasswordUri:      pulumi.String("string"),
		LogoutRedirectUri:      pulumi.String("string"),
	},
	SpConfig: &cloudidentity.SamlSpConfigArgs{},
})
Copy
var google_nativeInboundSamlSsoProfileResource = new InboundSamlSsoProfile("google-nativeInboundSamlSsoProfileResource", InboundSamlSsoProfileArgs.builder()
    .customer("string")
    .displayName("string")
    .idpConfig(SamlIdpConfigArgs.builder()
        .entityId("string")
        .singleSignOnServiceUri("string")
        .changePasswordUri("string")
        .logoutRedirectUri("string")
        .build())
    .spConfig()
    .build());
Copy
google_native_inbound_saml_sso_profile_resource = google_native.cloudidentity.v1beta1.InboundSamlSsoProfile("google-nativeInboundSamlSsoProfileResource",
    customer="string",
    display_name="string",
    idp_config={
        "entity_id": "string",
        "single_sign_on_service_uri": "string",
        "change_password_uri": "string",
        "logout_redirect_uri": "string",
    },
    sp_config={})
Copy
const google_nativeInboundSamlSsoProfileResource = new google_native.cloudidentity.v1beta1.InboundSamlSsoProfile("google-nativeInboundSamlSsoProfileResource", {
    customer: "string",
    displayName: "string",
    idpConfig: {
        entityId: "string",
        singleSignOnServiceUri: "string",
        changePasswordUri: "string",
        logoutRedirectUri: "string",
    },
    spConfig: {},
});
Copy
type: google-native:cloudidentity/v1beta1:InboundSamlSsoProfile
properties:
    customer: string
    displayName: string
    idpConfig:
        changePasswordUri: string
        entityId: string
        logoutRedirectUri: string
        singleSignOnServiceUri: string
    spConfig: {}
Copy

InboundSamlSsoProfile 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 InboundSamlSsoProfile resource accepts the following input properties:

Customer string
Immutable. The customer. For example: customers/C0123abc.
DisplayName string
Human-readable name of the SAML SSO profile.
IdpConfig Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.SamlIdpConfig
SAML identity provider configuration.
SpConfig Pulumi.GoogleNative.CloudIdentity.V1Beta1.Inputs.SamlSpConfig
SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider.
Customer string
Immutable. The customer. For example: customers/C0123abc.
DisplayName string
Human-readable name of the SAML SSO profile.
IdpConfig SamlIdpConfigArgs
SAML identity provider configuration.
SpConfig SamlSpConfigArgs
SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider.
customer String
Immutable. The customer. For example: customers/C0123abc.
displayName String
Human-readable name of the SAML SSO profile.
idpConfig SamlIdpConfig
SAML identity provider configuration.
spConfig SamlSpConfig
SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider.
customer string
Immutable. The customer. For example: customers/C0123abc.
displayName string
Human-readable name of the SAML SSO profile.
idpConfig SamlIdpConfig
SAML identity provider configuration.
spConfig SamlSpConfig
SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider.
customer str
Immutable. The customer. For example: customers/C0123abc.
display_name str
Human-readable name of the SAML SSO profile.
idp_config SamlIdpConfigArgs
SAML identity provider configuration.
sp_config SamlSpConfigArgs
SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider.
customer String
Immutable. The customer. For example: customers/C0123abc.
displayName String
Human-readable name of the SAML SSO profile.
idpConfig Property Map
SAML identity provider configuration.
spConfig Property Map
SAML service provider configuration for this SAML SSO profile. These are the service provider details provided by Google that should be configured on the corresponding identity provider.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name of the SAML SSO profile.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name of the SAML SSO profile.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name of the SAML SSO profile.
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name of the SAML SSO profile.
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name of the SAML SSO profile.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name of the SAML SSO profile.

Supporting Types

SamlIdpConfig
, SamlIdpConfigArgs

EntityId This property is required. string
The SAML Entity ID of the identity provider.
SingleSignOnServiceUri This property is required. string
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
ChangePasswordUri string
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
LogoutRedirectUri string
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
EntityId This property is required. string
The SAML Entity ID of the identity provider.
SingleSignOnServiceUri This property is required. string
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
ChangePasswordUri string
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
LogoutRedirectUri string
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
entityId This property is required. String
The SAML Entity ID of the identity provider.
singleSignOnServiceUri This property is required. String
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
changePasswordUri String
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
logoutRedirectUri String
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
entityId This property is required. string
The SAML Entity ID of the identity provider.
singleSignOnServiceUri This property is required. string
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
changePasswordUri string
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
logoutRedirectUri string
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
entity_id This property is required. str
The SAML Entity ID of the identity provider.
single_sign_on_service_uri This property is required. str
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
change_password_uri str
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
logout_redirect_uri str
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
entityId This property is required. String
The SAML Entity ID of the identity provider.
singleSignOnServiceUri This property is required. String
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
changePasswordUri String
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
logoutRedirectUri String
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.

SamlIdpConfigResponse
, SamlIdpConfigResponseArgs

ChangePasswordUri This property is required. string
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
EntityId This property is required. string
The SAML Entity ID of the identity provider.
LogoutRedirectUri This property is required. string
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
SingleSignOnServiceUri This property is required. string
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
ChangePasswordUri This property is required. string
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
EntityId This property is required. string
The SAML Entity ID of the identity provider.
LogoutRedirectUri This property is required. string
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
SingleSignOnServiceUri This property is required. string
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
changePasswordUri This property is required. String
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
entityId This property is required. String
The SAML Entity ID of the identity provider.
logoutRedirectUri This property is required. String
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
singleSignOnServiceUri This property is required. String
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
changePasswordUri This property is required. string
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
entityId This property is required. string
The SAML Entity ID of the identity provider.
logoutRedirectUri This property is required. string
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
singleSignOnServiceUri This property is required. string
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
change_password_uri This property is required. str
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
entity_id This property is required. str
The SAML Entity ID of the identity provider.
logout_redirect_uri This property is required. str
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
single_sign_on_service_uri This property is required. str
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.
changePasswordUri This property is required. String
The Change Password URL of the identity provider. Users will be sent to this URL when changing their passwords at myaccount.google.com. This takes precedence over the change password URL configured at customer-level. Must use HTTPS.
entityId This property is required. String
The SAML Entity ID of the identity provider.
logoutRedirectUri This property is required. String
The Logout Redirect URL (sign-out page URL) of the identity provider. When a user clicks the sign-out link on a Google page, they will be redirected to this URL. This is a pure redirect with no attached SAML LogoutRequest i.e. SAML single logout is not supported. Must use HTTPS.
singleSignOnServiceUri This property is required. String
The SingleSignOnService endpoint location (sign-in page URL) of the identity provider. This is the URL where the AuthnRequest will be sent. Must use HTTPS. Assumed to accept the HTTP-Redirect binding.

SamlSpConfigResponse
, SamlSpConfigResponseArgs

AssertionConsumerServiceUri This property is required. string
The SAML Assertion Consumer Service (ACS) URL to be used for the IDP-initiated login. Assumed to accept response messages via the HTTP-POST binding.
EntityId This property is required. string
The SAML Entity ID for this service provider.
AssertionConsumerServiceUri This property is required. string
The SAML Assertion Consumer Service (ACS) URL to be used for the IDP-initiated login. Assumed to accept response messages via the HTTP-POST binding.
EntityId This property is required. string
The SAML Entity ID for this service provider.
assertionConsumerServiceUri This property is required. String
The SAML Assertion Consumer Service (ACS) URL to be used for the IDP-initiated login. Assumed to accept response messages via the HTTP-POST binding.
entityId This property is required. String
The SAML Entity ID for this service provider.
assertionConsumerServiceUri This property is required. string
The SAML Assertion Consumer Service (ACS) URL to be used for the IDP-initiated login. Assumed to accept response messages via the HTTP-POST binding.
entityId This property is required. string
The SAML Entity ID for this service provider.
assertion_consumer_service_uri This property is required. str
The SAML Assertion Consumer Service (ACS) URL to be used for the IDP-initiated login. Assumed to accept response messages via the HTTP-POST binding.
entity_id This property is required. str
The SAML Entity ID for this service provider.
assertionConsumerServiceUri This property is required. String
The SAML Assertion Consumer Service (ACS) URL to be used for the IDP-initiated login. Assumed to accept response messages via the HTTP-POST binding.
entityId This property is required. String
The SAML Entity ID for this service provider.

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