pub struct DatacenterConnector {Show 14 fields
pub appliance_infrastructure_version: Option<String>,
pub appliance_software_version: Option<String>,
pub available_versions: Option<AvailableUpdates>,
pub bucket: Option<String>,
pub create_time: Option<DateTime<Utc>>,
pub error: Option<Status>,
pub name: Option<String>,
pub registration_id: Option<String>,
pub service_account: Option<String>,
pub state: Option<String>,
pub state_time: Option<DateTime<Utc>>,
pub update_time: Option<DateTime<Utc>>,
pub upgrade_status: Option<UpgradeStatus>,
pub version: Option<String>,
}Expand description
DatacenterConnector message describes a connector between the Source and Google Cloud, which is installed on a vmware datacenter (an OVA vm installed by the user) to connect the Datacenter to Google Cloud and support vm migration data transfer.
§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§
§appliance_infrastructure_version: Option<String>Output only. Appliance OVA version. This is the OVA which is manually installed by the user and contains the infrastructure for the automatically updatable components on the appliance.
appliance_software_version: Option<String>Output only. Appliance last installed update bundle version. This is the version of the automatically updatable components on the appliance.
available_versions: Option<AvailableUpdates>Output only. The available versions for updating this appliance.
bucket: Option<String>Output only. The communication channel between the datacenter connector and Google Cloud.
create_time: Option<DateTime<Utc>>Output only. The time the connector was created (as an API call, not when it was actually installed).
error: Option<Status>Output only. Provides details on the state of the Datacenter Connector in case of an error.
name: Option<String>Output only. The connector’s name.
registration_id: Option<String>Immutable. A unique key for this connector. This key is internal to the OVA connector and is supplied with its creation during the registration process and can not be modified.
service_account: Option<String>The service account to use in the connector when communicating with the cloud.
state: Option<String>Output only. State of the DatacenterConnector, as determined by the health checks.
state_time: Option<DateTime<Utc>>Output only. The time the state was last set.
update_time: Option<DateTime<Utc>>Output only. The last time the connector was updated with an API call.
upgrade_status: Option<UpgradeStatus>Output only. The status of the current / last upgradeAppliance operation.
version: Option<String>The version running in the DatacenterConnector. This is supplied by the OVA connector during the registration process and can not be modified.
Trait Implementations§
Source§impl Clone for DatacenterConnector
impl Clone for DatacenterConnector
Source§fn clone(&self) -> DatacenterConnector
fn clone(&self) -> DatacenterConnector
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DatacenterConnector
impl Debug for DatacenterConnector
Source§impl Default for DatacenterConnector
impl Default for DatacenterConnector
Source§fn default() -> DatacenterConnector
fn default() -> DatacenterConnector
Source§impl<'de> Deserialize<'de> for DatacenterConnector
impl<'de> Deserialize<'de> for DatacenterConnector
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>,
Source§impl Serialize for DatacenterConnector
impl Serialize for DatacenterConnector
impl RequestValue for DatacenterConnector
impl ResponseResult for DatacenterConnector
Auto Trait Implementations§
impl Freeze for DatacenterConnector
impl RefUnwindSafe for DatacenterConnector
impl Send for DatacenterConnector
impl Sync for DatacenterConnector
impl Unpin for DatacenterConnector
impl UnwindSafe for DatacenterConnector
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more