pub struct UpdateServiceUpdate {
pub base: Option<ResourceUpdate>,
pub service_enabled: Option<Boolean>,
pub http_push_uri_targets: Option<Vec<String>>,
pub http_push_uri_targets_busy: Option<Boolean>,
pub http_push_uri_options: Option<HttpPushUriOptionsUpdate>,
pub http_push_uri_options_busy: Option<Boolean>,
pub verify_remote_server_certificate: Option<Boolean>,
pub verify_remote_server_ssh_key: Option<Boolean>,
}Expand description
Update struct corresponding to UpdateService
Fields§
§base: Option<ResourceUpdate>§service_enabled: Option<Boolean>§http_push_uri_targets: Option<Vec<String>>§http_push_uri_targets_busy: Option<Boolean>§http_push_uri_options: Option<HttpPushUriOptionsUpdate>§http_push_uri_options_busy: Option<Boolean>§verify_remote_server_certificate: Option<Boolean>§verify_remote_server_ssh_key: Option<Boolean>Implementations§
Source§impl UpdateServiceUpdate
impl UpdateServiceUpdate
pub fn builder() -> Self
pub const fn build(self) -> Self
pub fn with_base(self, v: ResourceUpdate) -> Self
pub fn with_service_enabled(self, v: Boolean) -> Self
pub fn with_http_push_uri_targets(self, v: Vec<String>) -> Self
pub fn with_http_push_uri_targets_busy(self, v: Boolean) -> Self
pub fn with_http_push_uri_options(self, v: HttpPushUriOptionsUpdate) -> Self
pub fn with_http_push_uri_options_busy(self, v: Boolean) -> Self
pub fn with_verify_remote_server_certificate(self, v: Boolean) -> Self
pub fn with_verify_remote_server_ssh_key(self, v: Boolean) -> Self
Trait Implementations§
Source§impl Debug for UpdateServiceUpdate
impl Debug for UpdateServiceUpdate
Source§impl Default for UpdateServiceUpdate
impl Default for UpdateServiceUpdate
Source§fn default() -> UpdateServiceUpdate
fn default() -> UpdateServiceUpdate
Returns the “default value” for a type. Read more
Source§impl Serialize for UpdateServiceUpdate
impl Serialize for UpdateServiceUpdate
Auto Trait Implementations§
impl Freeze for UpdateServiceUpdate
impl RefUnwindSafe for UpdateServiceUpdate
impl Send for UpdateServiceUpdate
impl Sync for UpdateServiceUpdate
impl Unpin for UpdateServiceUpdate
impl UnsafeUnpin for UpdateServiceUpdate
impl UnwindSafe for UpdateServiceUpdate
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