#[non_exhaustive]pub struct DeleteConnectionProfileRequest {
pub name: String,
pub request_id: String,
pub force: bool,
/* private fields */
}Expand description
Request message for ‘DeleteConnectionProfile’ request.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. Name of the connection profile resource to delete.
request_id: StringA unique ID used to identify the request. If the server receives two requests with the same ID, then the second request is ignored.
It is recommended to always set this value to a UUID.
The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
force: boolIn case of force delete, the CloudSQL replica database is also deleted (only for CloudSQL connection profile).
Implementations§
Trait Implementations§
Source§impl Clone for DeleteConnectionProfileRequest
impl Clone for DeleteConnectionProfileRequest
Source§fn clone(&self) -> DeleteConnectionProfileRequest
fn clone(&self) -> DeleteConnectionProfileRequest
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 DeleteConnectionProfileRequest
impl Default for DeleteConnectionProfileRequest
Source§fn default() -> DeleteConnectionProfileRequest
fn default() -> DeleteConnectionProfileRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteConnectionProfileRequest
impl PartialEq for DeleteConnectionProfileRequest
Source§fn eq(&self, other: &DeleteConnectionProfileRequest) -> bool
fn eq(&self, other: &DeleteConnectionProfileRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteConnectionProfileRequest
Auto Trait Implementations§
impl Freeze for DeleteConnectionProfileRequest
impl RefUnwindSafe for DeleteConnectionProfileRequest
impl Send for DeleteConnectionProfileRequest
impl Sync for DeleteConnectionProfileRequest
impl Unpin for DeleteConnectionProfileRequest
impl UnwindSafe for DeleteConnectionProfileRequest
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