#[non_exhaustive]pub struct DeleteAutonomousDatabaseRequest {
pub name: String,
pub request_id: String,
/* private fields */
}
Expand description
The request for AutonomousDatabase.Delete
.
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: String
Required. The name of the resource in the following format: projects/{project}/locations/{location}/autonomousDatabases/{autonomous_database}.
request_id: String
Optional. An optional ID to identify the request. This value is used to identify duplicate requests. If you make a request with the same request ID and the original request is still in progress or completed, the server ignores the second request. This prevents clients from accidentally creating duplicate commitments.
The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
Implementations§
Trait Implementations§
Source§impl Clone for DeleteAutonomousDatabaseRequest
impl Clone for DeleteAutonomousDatabaseRequest
Source§fn clone(&self) -> DeleteAutonomousDatabaseRequest
fn clone(&self) -> DeleteAutonomousDatabaseRequest
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 DeleteAutonomousDatabaseRequest
impl Default for DeleteAutonomousDatabaseRequest
Source§fn default() -> DeleteAutonomousDatabaseRequest
fn default() -> DeleteAutonomousDatabaseRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteAutonomousDatabaseRequest
impl PartialEq for DeleteAutonomousDatabaseRequest
Source§fn eq(&self, other: &DeleteAutonomousDatabaseRequest) -> bool
fn eq(&self, other: &DeleteAutonomousDatabaseRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteAutonomousDatabaseRequest
Auto Trait Implementations§
impl Freeze for DeleteAutonomousDatabaseRequest
impl RefUnwindSafe for DeleteAutonomousDatabaseRequest
impl Send for DeleteAutonomousDatabaseRequest
impl Sync for DeleteAutonomousDatabaseRequest
impl Unpin for DeleteAutonomousDatabaseRequest
impl UnwindSafe for DeleteAutonomousDatabaseRequest
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