1. Packages
  2. Onelogin Provider
  3. API Docs
  4. Apps
onelogin 0.5.4 published on Wednesday, Apr 30, 2025 by onelogin

onelogin.Apps

Explore with Pulumi AI

onelogin logo
onelogin 0.5.4 published on Wednesday, Apr 30, 2025 by onelogin

    Create Apps Resource

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

    Constructor syntax

    new Apps(name: string, args: AppsArgs, opts?: CustomResourceOptions);
    @overload
    def Apps(resource_name: str,
             args: AppsArgs,
             opts: Optional[ResourceOptions] = None)
    
    @overload
    def Apps(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             connector_id: Optional[float] = None,
             allow_assumed_signin: Optional[bool] = None,
             apps_id: Optional[str] = None,
             brand_id: Optional[float] = None,
             description: Optional[str] = None,
             name: Optional[str] = None,
             notes: Optional[str] = None,
             parameters: Optional[Sequence[AppsParameterArgs]] = None,
             provisioning: Optional[Mapping[str, bool]] = None,
             visible: Optional[bool] = None)
    func NewApps(ctx *Context, name string, args AppsArgs, opts ...ResourceOption) (*Apps, error)
    public Apps(string name, AppsArgs args, CustomResourceOptions? opts = null)
    public Apps(String name, AppsArgs args)
    public Apps(String name, AppsArgs args, CustomResourceOptions options)
    
    type: onelogin:Apps
    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 AppsArgs
    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 AppsArgs
    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 AppsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppsArgs
    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 appsResource = new Onelogin.Apps("appsResource", new()
    {
        ConnectorId = 0,
        AllowAssumedSignin = false,
        AppsId = "string",
        BrandId = 0,
        Description = "string",
        Name = "string",
        Notes = "string",
        Parameters = new[]
        {
            new Onelogin.Inputs.AppsParameterArgs
            {
                ParamKeyName = "string",
                AttributesTransformations = "string",
                DefaultValues = "string",
                IncludeInSamlAssertion = false,
                Label = "string",
                ParamId = 0,
                ProvisionedEntitlements = false,
                SafeEntitlementsEnabled = false,
                SkipIfBlank = false,
                UserAttributeMacros = "string",
                UserAttributeMappings = "string",
                Values = "string",
            },
        },
        Provisioning = 
        {
            { "string", false },
        },
        Visible = false,
    });
    
    example, err := onelogin.NewApps(ctx, "appsResource", &onelogin.AppsArgs{
    	ConnectorId:        pulumi.Float64(0),
    	AllowAssumedSignin: pulumi.Bool(false),
    	AppsId:             pulumi.String("string"),
    	BrandId:            pulumi.Float64(0),
    	Description:        pulumi.String("string"),
    	Name:               pulumi.String("string"),
    	Notes:              pulumi.String("string"),
    	Parameters: onelogin.AppsParameterArray{
    		&onelogin.AppsParameterArgs{
    			ParamKeyName:              pulumi.String("string"),
    			AttributesTransformations: pulumi.String("string"),
    			DefaultValues:             pulumi.String("string"),
    			IncludeInSamlAssertion:    pulumi.Bool(false),
    			Label:                     pulumi.String("string"),
    			ParamId:                   pulumi.Float64(0),
    			ProvisionedEntitlements:   pulumi.Bool(false),
    			SafeEntitlementsEnabled:   pulumi.Bool(false),
    			SkipIfBlank:               pulumi.Bool(false),
    			UserAttributeMacros:       pulumi.String("string"),
    			UserAttributeMappings:     pulumi.String("string"),
    			Values:                    pulumi.String("string"),
    		},
    	},
    	Provisioning: pulumi.BoolMap{
    		"string": pulumi.Bool(false),
    	},
    	Visible: pulumi.Bool(false),
    })
    
    var appsResource = new Apps("appsResource", AppsArgs.builder()
        .connectorId(0)
        .allowAssumedSignin(false)
        .appsId("string")
        .brandId(0)
        .description("string")
        .name("string")
        .notes("string")
        .parameters(AppsParameterArgs.builder()
            .paramKeyName("string")
            .attributesTransformations("string")
            .defaultValues("string")
            .includeInSamlAssertion(false)
            .label("string")
            .paramId(0)
            .provisionedEntitlements(false)
            .safeEntitlementsEnabled(false)
            .skipIfBlank(false)
            .userAttributeMacros("string")
            .userAttributeMappings("string")
            .values("string")
            .build())
        .provisioning(Map.of("string", false))
        .visible(false)
        .build());
    
    apps_resource = onelogin.Apps("appsResource",
        connector_id=0,
        allow_assumed_signin=False,
        apps_id="string",
        brand_id=0,
        description="string",
        name="string",
        notes="string",
        parameters=[{
            "param_key_name": "string",
            "attributes_transformations": "string",
            "default_values": "string",
            "include_in_saml_assertion": False,
            "label": "string",
            "param_id": 0,
            "provisioned_entitlements": False,
            "safe_entitlements_enabled": False,
            "skip_if_blank": False,
            "user_attribute_macros": "string",
            "user_attribute_mappings": "string",
            "values": "string",
        }],
        provisioning={
            "string": False,
        },
        visible=False)
    
    const appsResource = new onelogin.Apps("appsResource", {
        connectorId: 0,
        allowAssumedSignin: false,
        appsId: "string",
        brandId: 0,
        description: "string",
        name: "string",
        notes: "string",
        parameters: [{
            paramKeyName: "string",
            attributesTransformations: "string",
            defaultValues: "string",
            includeInSamlAssertion: false,
            label: "string",
            paramId: 0,
            provisionedEntitlements: false,
            safeEntitlementsEnabled: false,
            skipIfBlank: false,
            userAttributeMacros: "string",
            userAttributeMappings: "string",
            values: "string",
        }],
        provisioning: {
            string: false,
        },
        visible: false,
    });
    
    type: onelogin:Apps
    properties:
        allowAssumedSignin: false
        appsId: string
        brandId: 0
        connectorId: 0
        description: string
        name: string
        notes: string
        parameters:
            - attributesTransformations: string
              defaultValues: string
              includeInSamlAssertion: false
              label: string
              paramId: 0
              paramKeyName: string
              provisionedEntitlements: false
              safeEntitlementsEnabled: false
              skipIfBlank: false
              userAttributeMacros: string
              userAttributeMappings: string
              values: string
        provisioning:
            string: false
        visible: false
    

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

    ConnectorId double
    AllowAssumedSignin bool
    AppsId string
    BrandId double
    Description string
    Name string
    Notes string
    Parameters List<AppsParameter>
    Provisioning Dictionary<string, bool>
    Visible bool
    connectorId Double
    allowAssumedSignin Boolean
    appsId String
    brandId Double
    description String
    name String
    notes String
    parameters List<AppsParameter>
    provisioning Map<String,Boolean>
    visible Boolean
    connectorId number
    allowAssumedSignin boolean
    appsId string
    brandId number
    description string
    name string
    notes string
    parameters AppsParameter[]
    provisioning {[key: string]: boolean}
    visible boolean

    Outputs

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

    AuthMethod double
    CreatedAt string
    IconUrl string
    Id string
    The provider-assigned unique ID for this managed resource.
    PolicyId double
    TabId double
    UpdatedAt string
    AuthMethod float64
    CreatedAt string
    IconUrl string
    Id string
    The provider-assigned unique ID for this managed resource.
    PolicyId float64
    TabId float64
    UpdatedAt string
    authMethod Double
    createdAt String
    iconUrl String
    id String
    The provider-assigned unique ID for this managed resource.
    policyId Double
    tabId Double
    updatedAt String
    authMethod number
    createdAt string
    iconUrl string
    id string
    The provider-assigned unique ID for this managed resource.
    policyId number
    tabId number
    updatedAt string
    auth_method float
    created_at str
    icon_url str
    id str
    The provider-assigned unique ID for this managed resource.
    policy_id float
    tab_id float
    updated_at str
    authMethod Number
    createdAt String
    iconUrl String
    id String
    The provider-assigned unique ID for this managed resource.
    policyId Number
    tabId Number
    updatedAt String

    Look up Existing Apps Resource

    Get an existing Apps resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AppsState, opts?: CustomResourceOptions): Apps
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_assumed_signin: Optional[bool] = None,
            apps_id: Optional[str] = None,
            auth_method: Optional[float] = None,
            brand_id: Optional[float] = None,
            connector_id: Optional[float] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            icon_url: Optional[str] = None,
            name: Optional[str] = None,
            notes: Optional[str] = None,
            parameters: Optional[Sequence[AppsParameterArgs]] = None,
            policy_id: Optional[float] = None,
            provisioning: Optional[Mapping[str, bool]] = None,
            tab_id: Optional[float] = None,
            updated_at: Optional[str] = None,
            visible: Optional[bool] = None) -> Apps
    func GetApps(ctx *Context, name string, id IDInput, state *AppsState, opts ...ResourceOption) (*Apps, error)
    public static Apps Get(string name, Input<string> id, AppsState? state, CustomResourceOptions? opts = null)
    public static Apps get(String name, Output<String> id, AppsState state, CustomResourceOptions options)
    resources:  _:    type: onelogin:Apps    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AllowAssumedSignin bool
    AppsId string
    AuthMethod double
    BrandId double
    ConnectorId double
    CreatedAt string
    Description string
    IconUrl string
    Name string
    Notes string
    Parameters List<AppsParameter>
    PolicyId double
    Provisioning Dictionary<string, bool>
    TabId double
    UpdatedAt string
    Visible bool
    AllowAssumedSignin bool
    AppsId string
    AuthMethod float64
    BrandId float64
    ConnectorId float64
    CreatedAt string
    Description string
    IconUrl string
    Name string
    Notes string
    Parameters []AppsParameterArgs
    PolicyId float64
    Provisioning map[string]bool
    TabId float64
    UpdatedAt string
    Visible bool
    allowAssumedSignin Boolean
    appsId String
    authMethod Double
    brandId Double
    connectorId Double
    createdAt String
    description String
    iconUrl String
    name String
    notes String
    parameters List<AppsParameter>
    policyId Double
    provisioning Map<String,Boolean>
    tabId Double
    updatedAt String
    visible Boolean
    allowAssumedSignin boolean
    appsId string
    authMethod number
    brandId number
    connectorId number
    createdAt string
    description string
    iconUrl string
    name string
    notes string
    parameters AppsParameter[]
    policyId number
    provisioning {[key: string]: boolean}
    tabId number
    updatedAt string
    visible boolean
    allowAssumedSignin Boolean
    appsId String
    authMethod Number
    brandId Number
    connectorId Number
    createdAt String
    description String
    iconUrl String
    name String
    notes String
    parameters List<Property Map>
    policyId Number
    provisioning Map<Boolean>
    tabId Number
    updatedAt String
    visible Boolean

    Supporting Types

    AppsParameter, AppsParameterArgs

    Package Details

    Repository
    onelogin onelogin/terraform-provider-onelogin
    License
    Notes
    This Pulumi package is based on the onelogin Terraform Provider.
    onelogin logo
    onelogin 0.5.4 published on Wednesday, Apr 30, 2025 by onelogin