pub struct AssignDropletsByIdDomainsItem {
pub certificate_id: Option<String>,
pub is_managed: Option<bool>,
pub name: Option<String>,
}Expand description
An object specifying domain configurations for a Global load balancer.
JSON schema
{
"description": "An object specifying domain configurations for a Global load balancer.",
"type": "object",
"properties": {
"certificate_id": {
"description": "The ID of the TLS certificate used for SSL termination.",
"examples": [
"892071a0-bb95-49bc-8021-3afd67a210bf"
],
"type": "string"
},
"is_managed": {
"description": "A boolean value indicating if the domain is already managed by DigitalOcean. If true, all A and AAAA records required to enable Global load balancers will be automatically added.",
"examples": [
true
],
"type": "boolean"
},
"name": {
"description": "FQDN to associate with a Global load balancer.",
"examples": [
"example.com"
],
"type": "string"
}
}
}Fields§
§certificate_id: Option<String>The ID of the TLS certificate used for SSL termination.
is_managed: Option<bool>A boolean value indicating if the domain is already managed by DigitalOcean. If true, all A and AAAA records required to enable Global load balancers will be automatically added.
name: Option<String>FQDN to associate with a Global load balancer.
Trait Implementations§
Source§impl Clone for AssignDropletsByIdDomainsItem
impl Clone for AssignDropletsByIdDomainsItem
Source§fn clone(&self) -> AssignDropletsByIdDomainsItem
fn clone(&self) -> AssignDropletsByIdDomainsItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AssignDropletsByIdDomainsItem
impl<'de> Deserialize<'de> for AssignDropletsByIdDomainsItem
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 From<&AssignDropletsByIdDomainsItem> for AssignDropletsByIdDomainsItem
impl From<&AssignDropletsByIdDomainsItem> for AssignDropletsByIdDomainsItem
Source§fn from(value: &AssignDropletsByIdDomainsItem) -> Self
fn from(value: &AssignDropletsByIdDomainsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssignDropletsByIdDomainsItem
impl RefUnwindSafe for AssignDropletsByIdDomainsItem
impl Send for AssignDropletsByIdDomainsItem
impl Sync for AssignDropletsByIdDomainsItem
impl Unpin for AssignDropletsByIdDomainsItem
impl UnsafeUnpin for AssignDropletsByIdDomainsItem
impl UnwindSafe for AssignDropletsByIdDomainsItem
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