[][src]Struct aiven_rs::service::types_service::Service

pub struct Service {
    pub acl: Option<Vec<ACL>>,
    pub backups: Vec<Backup>,
    pub cloud_description: String,
    pub cloud_name: String,
    pub components: Vec<Component>,
    pub connection_info: HashMap<String, Value>,
    pub connection_pools: Option<Vec<ConnectionPool>>,
    pub create_time: String,
    pub disk_space_mb: i64,
    pub databases: Option<Vec<String>>,
    pub features: HashMap<String, Value>,
    pub group_list: Vec<String>,
    pub maintenance: Maintenance,
    pub metadata: HashMap<String, Value>,
    pub node_count: i32,
    pub node_cpu_count: i32,
    pub node_memory_mb: i32,
    pub node_states: Vec<NodeState>,
    pub plan: String,
    pub project_vpc_id: Option<String>,
    pub service_integrations: Vec<ServiceIntegration>,
    pub service_name: String,
    pub service_type: String,
    pub service_type_description: String,
    pub service_uri: String,
    pub service_uri_params: HashMap<String, Value>,
    pub state: String,
    pub termination_protection: bool,
    pub topics: Option<Vec<Topic>>,
    pub update_time: String,
    pub user_config: HashMap<String, Value>,
    pub users: Vec<User>,
}

Fields

acl: Option<Vec<ACL>>backups: Vec<Backup>cloud_description: Stringcloud_name: Stringcomponents: Vec<Component>connection_info: HashMap<String, Value>connection_pools: Option<Vec<ConnectionPool>>create_time: Stringdisk_space_mb: i64databases: Option<Vec<String>>features: HashMap<String, Value>group_list: Vec<String>maintenance: Maintenancemetadata: HashMap<String, Value>node_count: i32node_cpu_count: i32node_memory_mb: i32node_states: Vec<NodeState>plan: Stringproject_vpc_id: Option<String>service_integrations: Vec<ServiceIntegration>service_name: Stringservice_type: Stringservice_type_description: Stringservice_uri: Stringservice_uri_params: HashMap<String, Value>state: Stringtermination_protection: booltopics: Option<Vec<Topic>>update_time: Stringuser_config: HashMap<String, Value>users: Vec<User>

Trait Implementations

impl Debug for Service[src]

impl Default for Service[src]

impl<'de> Deserialize<'de> for Service[src]

impl Serialize for Service[src]

Auto Trait Implementations

impl RefUnwindSafe for Service

impl Send for Service

impl Sync for Service

impl Unpin for Service

impl UnwindSafe for Service

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,