pub struct SqlIntegration {
pub create_time: Option<DateTime<Utc>>,
pub name: Option<String>,
pub sql_instance: Option<String>,
pub state: Option<String>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Represents the SQL instance integrated with Managed AD.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§create_time: Option<DateTime<Utc>>Output only. The time the SQL integration was created.
name: Option<String>The unique name of the SQL integration in the form of projects/{project_id}/locations/global/domains/{domain_name}/sqlIntegrations/{sql_integration}
sql_instance: Option<String>The full resource name of an integrated SQL instance
state: Option<String>Output only. The current state of the SQL integration.
update_time: Option<DateTime<Utc>>Output only. The time the SQL integration was updated.
Trait Implementations§
Source§impl Clone for SqlIntegration
impl Clone for SqlIntegration
Source§fn clone(&self) -> SqlIntegration
fn clone(&self) -> SqlIntegration
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 SqlIntegration
impl Debug for SqlIntegration
Source§impl Default for SqlIntegration
impl Default for SqlIntegration
Source§fn default() -> SqlIntegration
fn default() -> SqlIntegration
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SqlIntegration
impl<'de> Deserialize<'de> for SqlIntegration
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
Source§impl Serialize for SqlIntegration
impl Serialize for SqlIntegration
impl ResponseResult for SqlIntegration
Auto Trait Implementations§
impl Freeze for SqlIntegration
impl RefUnwindSafe for SqlIntegration
impl Send for SqlIntegration
impl Sync for SqlIntegration
impl Unpin for SqlIntegration
impl UnwindSafe for SqlIntegration
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