pub enum UserCreateRequestAction {
AutoCreate,
Create,
CustCreate,
SsoCreate,
Noop,
FallthroughString,
}
Expand description
Specify how to create the new user: create
- User will get an email sent from Zoom. There is a confirmation link in this email. The user will then need to use the link to activate their Zoom account. The user can then set or change their password.autoCreate
- This action is provided for the enterprise customer who has a managed domain. This feature is disabled by default because of the security risk involved in creating a user who does not belong to your domain.custCreate
- Users created via this option do not have passwords and will not have the ability to log into the Zoom Web Portal or the Zoom Client. These users can still host and join meetings using the start_url
and join_url
respectively. To use this option, you must contact the ISV Platform Sales team at isv@zoom.us.ssoCreate
- This action is provided for the enabled “Pre-provisioning SSO User” option. A user created in this way has no password. If not a basic user, a personal vanity URL using the user name (no domain) of the provisioning email will be generated. If the user name or PMI is invalid or occupied, it will use a random number or random personal vanity URL.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for UserCreateRequestAction
impl Clone for UserCreateRequestAction
Source§fn clone(&self) -> UserCreateRequestAction
fn clone(&self) -> UserCreateRequestAction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for UserCreateRequestAction
impl Debug for UserCreateRequestAction
Source§impl Default for UserCreateRequestAction
impl Default for UserCreateRequestAction
Source§fn default() -> UserCreateRequestAction
fn default() -> UserCreateRequestAction
Source§impl<'de> Deserialize<'de> for UserCreateRequestAction
impl<'de> Deserialize<'de> for UserCreateRequestAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Display for UserCreateRequestAction
impl Display for UserCreateRequestAction
Source§impl JsonSchema for UserCreateRequestAction
impl JsonSchema for UserCreateRequestAction
Source§fn schema_name() -> String
fn schema_name() -> String
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moreSource§impl PartialEq for UserCreateRequestAction
impl PartialEq for UserCreateRequestAction
Source§impl Serialize for UserCreateRequestAction
impl Serialize for UserCreateRequestAction
impl StructuralPartialEq for UserCreateRequestAction
Auto Trait Implementations§
impl Freeze for UserCreateRequestAction
impl RefUnwindSafe for UserCreateRequestAction
impl Send for UserCreateRequestAction
impl Sync for UserCreateRequestAction
impl Unpin for UserCreateRequestAction
impl UnwindSafe for UserCreateRequestAction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.