oci-rust-sdk 0.4.4

Unofficial Oracle OCI SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use serde::{Deserialize, Serialize};

/// Name of OS vendor.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum VendorName {
    #[serde(rename = "ORACLE")]
    Oracle,

    #[serde(rename = "MICROSOFT")]
    Microsoft,

    /// This value is used if a service returns a value for this enum that is not recognized by this version of the SDK.
    #[serde(other)]
    UnknownValue,
}