pub struct PscEndpointUpdateRequest {
pub subscription_id: i32,
pub psc_service_id: i32,
pub endpoint_id: i32,
pub gcp_project_id: Option<String>,
pub gcp_vpc_name: Option<String>,
pub gcp_vpc_subnet_name: Option<String>,
pub endpoint_connection_name: Option<String>,
}
Expand description
Private Service Connect endpoint update request
Fields§
§subscription_id: i32
§psc_service_id: i32
§endpoint_id: i32
§gcp_project_id: Option<String>
Google Cloud project ID
gcp_vpc_name: Option<String>
Name of the Google Cloud VPC that hosts your application
gcp_vpc_subnet_name: Option<String>
Name of your VPC’s subnet of IP address ranges
endpoint_connection_name: Option<String>
Prefix used to create PSC endpoints in the consumer application VPC
Trait Implementations§
Source§impl Clone for PscEndpointUpdateRequest
impl Clone for PscEndpointUpdateRequest
Source§fn clone(&self) -> PscEndpointUpdateRequest
fn clone(&self) -> PscEndpointUpdateRequest
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 PscEndpointUpdateRequest
impl Debug for PscEndpointUpdateRequest
Source§impl<'de> Deserialize<'de> for PscEndpointUpdateRequest
impl<'de> Deserialize<'de> for PscEndpointUpdateRequest
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
Auto Trait Implementations§
impl Freeze for PscEndpointUpdateRequest
impl RefUnwindSafe for PscEndpointUpdateRequest
impl Send for PscEndpointUpdateRequest
impl Sync for PscEndpointUpdateRequest
impl Unpin for PscEndpointUpdateRequest
impl UnwindSafe for PscEndpointUpdateRequest
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