pub struct AssignDropletsByTagDomainsItem {
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 AssignDropletsByTagDomainsItem
impl Clone for AssignDropletsByTagDomainsItem
Source§fn clone(&self) -> AssignDropletsByTagDomainsItem
fn clone(&self) -> AssignDropletsByTagDomainsItem
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 AssignDropletsByTagDomainsItem
impl<'de> Deserialize<'de> for AssignDropletsByTagDomainsItem
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<&AssignDropletsByTagDomainsItem> for AssignDropletsByTagDomainsItem
impl From<&AssignDropletsByTagDomainsItem> for AssignDropletsByTagDomainsItem
Source§fn from(value: &AssignDropletsByTagDomainsItem) -> Self
fn from(value: &AssignDropletsByTagDomainsItem) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AssignDropletsByTagDomainsItem
impl RefUnwindSafe for AssignDropletsByTagDomainsItem
impl Send for AssignDropletsByTagDomainsItem
impl Sync for AssignDropletsByTagDomainsItem
impl Unpin for AssignDropletsByTagDomainsItem
impl UnsafeUnpin for AssignDropletsByTagDomainsItem
impl UnwindSafe for AssignDropletsByTagDomainsItem
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