#[non_exhaustive]pub struct DeleteMigrationJobRequest {
pub name: String,
pub request_id: String,
pub force: bool,
/* private fields */
}Expand description
Request message for ‘DeleteMigrationJob’ 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 migration job 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: boolThe destination CloudSQL connection profile is always deleted with the migration job. In case of force delete, the destination CloudSQL replica database is also deleted.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteMigrationJobRequest
impl Clone for DeleteMigrationJobRequest
Source§fn clone(&self) -> DeleteMigrationJobRequest
fn clone(&self) -> DeleteMigrationJobRequest
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 Debug for DeleteMigrationJobRequest
impl Debug for DeleteMigrationJobRequest
Source§impl Default for DeleteMigrationJobRequest
impl Default for DeleteMigrationJobRequest
Source§fn default() -> DeleteMigrationJobRequest
fn default() -> DeleteMigrationJobRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteMigrationJobRequest
impl Message for DeleteMigrationJobRequest
impl StructuralPartialEq for DeleteMigrationJobRequest
Auto Trait Implementations§
impl Freeze for DeleteMigrationJobRequest
impl RefUnwindSafe for DeleteMigrationJobRequest
impl Send for DeleteMigrationJobRequest
impl Sync for DeleteMigrationJobRequest
impl Unpin for DeleteMigrationJobRequest
impl UnwindSafe for DeleteMigrationJobRequest
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