pub struct FunctionAppCreateOrUpdateProperties {
pub server_farm_id: Option<String>,
pub site_config: Option<FunctionAppSiteConfig>,
}Expand description
Properties for creating or updating a Function App.
Azure API: functions.v1.FunctionAppCreateOrUpdateProperties
Reference: https://learn.microsoft.com/en-us/rest/api/appservice//FunctionAppCreateOrUpdateProperties
Fields§
§server_farm_id: Option<String>Resource ID of the App Service Plan (hosting plan)
site_config: Option<FunctionAppSiteConfig>Configuration of the app
Trait Implementations§
Source§impl Clone for FunctionAppCreateOrUpdateProperties
impl Clone for FunctionAppCreateOrUpdateProperties
Source§fn clone(&self) -> FunctionAppCreateOrUpdateProperties
fn clone(&self) -> FunctionAppCreateOrUpdateProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for FunctionAppCreateOrUpdateProperties
impl Default for FunctionAppCreateOrUpdateProperties
Source§fn default() -> FunctionAppCreateOrUpdateProperties
fn default() -> FunctionAppCreateOrUpdateProperties
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FunctionAppCreateOrUpdateProperties
impl<'de> Deserialize<'de> for FunctionAppCreateOrUpdateProperties
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FunctionAppCreateOrUpdateProperties
impl RefUnwindSafe for FunctionAppCreateOrUpdateProperties
impl Send for FunctionAppCreateOrUpdateProperties
impl Sync for FunctionAppCreateOrUpdateProperties
impl Unpin for FunctionAppCreateOrUpdateProperties
impl UnsafeUnpin for FunctionAppCreateOrUpdateProperties
impl UnwindSafe for FunctionAppCreateOrUpdateProperties
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
Mutably borrows from an owned value. Read more