UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

148 lines (147 loc) 4.98 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = new meraki.organizations.SamlRoles("example", { * networks: [{ * access: "full", * id: "N_24329156", * }], * orgAccess: "none", * organizationId: "string", * role: "myrole", * tags: [{ * access: "read-only", * tag: "west", * }], * }); * export const merakiOrganizationsSamlRolesExample = example; * ``` * * ## Import * * ```sh * $ pulumi import meraki:organizations/samlRoles:SamlRoles example "organization_id,saml_role_id" * ``` */ export declare class SamlRoles extends pulumi.CustomResource { /** * Get an existing SamlRoles resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SamlRolesState, opts?: pulumi.CustomResourceOptions): SamlRoles; /** * Returns true if the given object is an instance of SamlRoles. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is SamlRoles; /** * The list of camera access privileges for SAML administrator */ readonly cameras: pulumi.Output<outputs.organizations.SamlRolesCamera[]>; /** * The list of networks that the SAML administrator has privileges on */ readonly networks: pulumi.Output<outputs.organizations.SamlRolesNetwork[]>; /** * The privilege of the SAML administrator on the organization */ readonly orgAccess: pulumi.Output<string>; /** * organizationId path parameter. Organization ID */ readonly organizationId: pulumi.Output<string>; /** * The role of the SAML administrator */ readonly role: pulumi.Output<string>; /** * samlRoleId path parameter. Saml role ID */ readonly samlRoleId: pulumi.Output<string | undefined>; /** * The list of tags that the SAML administrator has privleges on */ readonly tags: pulumi.Output<outputs.organizations.SamlRolesTag[]>; /** * Create a SamlRoles resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: SamlRolesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SamlRoles resources. */ export interface SamlRolesState { /** * The list of camera access privileges for SAML administrator */ cameras?: pulumi.Input<pulumi.Input<inputs.organizations.SamlRolesCamera>[]>; /** * The list of networks that the SAML administrator has privileges on */ networks?: pulumi.Input<pulumi.Input<inputs.organizations.SamlRolesNetwork>[]>; /** * The privilege of the SAML administrator on the organization */ orgAccess?: pulumi.Input<string>; /** * organizationId path parameter. Organization ID */ organizationId?: pulumi.Input<string>; /** * The role of the SAML administrator */ role?: pulumi.Input<string>; /** * samlRoleId path parameter. Saml role ID */ samlRoleId?: pulumi.Input<string>; /** * The list of tags that the SAML administrator has privleges on */ tags?: pulumi.Input<pulumi.Input<inputs.organizations.SamlRolesTag>[]>; } /** * The set of arguments for constructing a SamlRoles resource. */ export interface SamlRolesArgs { /** * The list of networks that the SAML administrator has privileges on */ networks?: pulumi.Input<pulumi.Input<inputs.organizations.SamlRolesNetwork>[]>; /** * The privilege of the SAML administrator on the organization */ orgAccess?: pulumi.Input<string>; /** * organizationId path parameter. Organization ID */ organizationId: pulumi.Input<string>; /** * The role of the SAML administrator */ role?: pulumi.Input<string>; /** * samlRoleId path parameter. Saml role ID */ samlRoleId?: pulumi.Input<string>; /** * The list of tags that the SAML administrator has privleges on */ tags?: pulumi.Input<pulumi.Input<inputs.organizations.SamlRolesTag>[]>; }