@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 551 B
TypeScript
/** A SAML 2.0 requested attribute that should be added to SAML requests when using this provider */
export interface ProviderRequestedAttributes {
/** Expresses that this RequestedAttribute is mandatory (remains advisory) */
isRequired: boolean;
/** Name of the SAML RequestedAttribute */
name: string;
/** NameFormat of the SAML RequestedAttribute */
nameFormat?: string;
/** List of AttributeValues allowed for this RequestedAttribute */
values?: string[];
}
//# sourceMappingURL=ProviderRequestedAttributes.d.ts.map