1. Packages
  2. Cisco Meraki Provider
  3. API Docs
  4. organizations
  5. Saml
Cisco Meraki v0.4.1 published on Saturday, Mar 15, 2025 by Pulumi

meraki.organizations.Saml

Explore with Pulumi AI

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as meraki from "@pulumi/meraki";

const example = new meraki.organizations.Saml("example", {
    enabled: true,
    organizationId: "string",
});
export const merakiOrganizationsSamlExample = example;
Copy
import pulumi
import pulumi_meraki as meraki

example = meraki.organizations.Saml("example",
    enabled=True,
    organization_id="string")
pulumi.export("merakiOrganizationsSamlExample", example)
Copy
package main

import (
	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := organizations.NewSaml(ctx, "example", &organizations.SamlArgs{
			Enabled:        pulumi.Bool(true),
			OrganizationId: pulumi.String("string"),
		})
		if err != nil {
			return err
		}
		ctx.Export("merakiOrganizationsSamlExample", example)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Meraki = Pulumi.Meraki;

return await Deployment.RunAsync(() => 
{
    var example = new Meraki.Organizations.Saml("example", new()
    {
        Enabled = true,
        OrganizationId = "string",
    });

    return new Dictionary<string, object?>
    {
        ["merakiOrganizationsSamlExample"] = example,
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.organizations.Saml;
import com.pulumi.meraki.organizations.SamlArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new Saml("example", SamlArgs.builder()
            .enabled(true)
            .organizationId("string")
            .build());

        ctx.export("merakiOrganizationsSamlExample", example);
    }
}
Copy
resources:
  example:
    type: meraki:organizations:Saml
    properties:
      enabled: true
      organizationId: string
outputs:
  merakiOrganizationsSamlExample: ${example}
Copy

Create Saml Resource

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

Constructor syntax

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

@overload
def Saml(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         organization_id: Optional[str] = None,
         enabled: Optional[bool] = None)
func NewSaml(ctx *Context, name string, args SamlArgs, opts ...ResourceOption) (*Saml, error)
public Saml(string name, SamlArgs args, CustomResourceOptions? opts = null)
public Saml(String name, SamlArgs args)
public Saml(String name, SamlArgs args, CustomResourceOptions options)
type: meraki:organizations:Saml
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 This property is required. SamlArgs
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 This property is required. SamlArgs
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 This property is required. SamlArgs
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 This property is required. SamlArgs
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. SamlArgs
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 samlResource = new Meraki.Organizations.Saml("samlResource", new()
{
    OrganizationId = "string",
    Enabled = false,
});
Copy
example, err := organizations.NewSaml(ctx, "samlResource", &organizations.SamlArgs{
	OrganizationId: pulumi.String("string"),
	Enabled:        pulumi.Bool(false),
})
Copy
var samlResource = new Saml("samlResource", SamlArgs.builder()
    .organizationId("string")
    .enabled(false)
    .build());
Copy
saml_resource = meraki.organizations.Saml("samlResource",
    organization_id="string",
    enabled=False)
Copy
const samlResource = new meraki.organizations.Saml("samlResource", {
    organizationId: "string",
    enabled: false,
});
Copy
type: meraki:organizations:Saml
properties:
    enabled: false
    organizationId: string
Copy

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

OrganizationId This property is required. string
organizationId path parameter. Organization ID
Enabled bool
Toggle depicting if SAML SSO settings are enabled
OrganizationId This property is required. string
organizationId path parameter. Organization ID
Enabled bool
Toggle depicting if SAML SSO settings are enabled
organizationId This property is required. String
organizationId path parameter. Organization ID
enabled Boolean
Toggle depicting if SAML SSO settings are enabled
organizationId This property is required. string
organizationId path parameter. Organization ID
enabled boolean
Toggle depicting if SAML SSO settings are enabled
organization_id This property is required. str
organizationId path parameter. Organization ID
enabled bool
Toggle depicting if SAML SSO settings are enabled
organizationId This property is required. String
organizationId path parameter. Organization ID
enabled Boolean
Toggle depicting if SAML SSO settings are enabled

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Saml Resource

Get an existing Saml 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?: SamlState, opts?: CustomResourceOptions): Saml
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        enabled: Optional[bool] = None,
        organization_id: Optional[str] = None) -> Saml
func GetSaml(ctx *Context, name string, id IDInput, state *SamlState, opts ...ResourceOption) (*Saml, error)
public static Saml Get(string name, Input<string> id, SamlState? state, CustomResourceOptions? opts = null)
public static Saml get(String name, Output<String> id, SamlState state, CustomResourceOptions options)
resources:  _:    type: meraki:organizations:Saml    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Enabled bool
Toggle depicting if SAML SSO settings are enabled
OrganizationId string
organizationId path parameter. Organization ID
Enabled bool
Toggle depicting if SAML SSO settings are enabled
OrganizationId string
organizationId path parameter. Organization ID
enabled Boolean
Toggle depicting if SAML SSO settings are enabled
organizationId String
organizationId path parameter. Organization ID
enabled boolean
Toggle depicting if SAML SSO settings are enabled
organizationId string
organizationId path parameter. Organization ID
enabled bool
Toggle depicting if SAML SSO settings are enabled
organization_id str
organizationId path parameter. Organization ID
enabled Boolean
Toggle depicting if SAML SSO settings are enabled
organizationId String
organizationId path parameter. Organization ID

Import

$ pulumi import meraki:organizations/saml:Saml example "organization_id"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
meraki pulumi/pulumi-meraki
License
Apache-2.0
Notes
This Pulumi package is based on the meraki Terraform Provider.