pub struct Domain {Show 13 fields
pub admin: Option<String>,
pub audit_logs_enabled: Option<bool>,
pub authorized_networks: Option<Vec<String>>,
pub create_time: Option<DateTime<Utc>>,
pub fqdn: Option<String>,
pub labels: Option<HashMap<String, String>>,
pub locations: Option<Vec<String>>,
pub name: Option<String>,
pub reserved_ip_range: Option<String>,
pub state: Option<String>,
pub status_message: Option<String>,
pub trusts: Option<Vec<Trust>>,
pub update_time: Option<DateTime<Utc>>,
}Expand description
Represents a managed Microsoft Active Directory domain. If the domain is being changed, it will be placed into the UPDATING state, which indicates that the resource is being reconciled. At this point, Get will reflect an intermediate state.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- locations global domains create projects (request)
- locations global domains get projects (response)
- locations global domains patch projects (request)
Fields§
§admin: Option<String>Optional. The name of delegated administrator account used to perform Active Directory operations. If not specified, setupadmin will be used.
audit_logs_enabled: Option<bool>Optional. Configuration for audit logs. True if audit logs are enabled, else false. Default is audit logs disabled.
Optional. The full names of the Google Compute Engine networks the domain instance is connected to. Networks can be added using UpdateDomain. The domain is only available on networks listed in authorized_networks. If CIDR subnets overlap between networks, domain creation will fail.
create_time: Option<DateTime<Utc>>Output only. The time the instance was created.
fqdn: Option<String>Output only. The fully-qualified domain name of the exposed domain used by clients to connect to the service. Similar to what would be chosen for an Active Directory set up on an internal network.
labels: Option<HashMap<String, String>>Optional. Resource labels that can contain user-provided metadata.
locations: Option<Vec<String>>Required. Locations where domain needs to be provisioned. The locations can be specified according to https://cloud.google.com/compute/docs/regions-zones, such as us-west1 or us-east4. Each domain supports up to 4 locations, separated by commas. Each location will use a /26 block.
name: Option<String>Required. The unique name of the domain using the form: projects/{project_id}/locations/global/domains/{domain_name}.
reserved_ip_range: Option<String>Required. The CIDR range of internal addresses that are reserved for this domain. Reserved networks must be /24 or larger. Ranges must be unique and non-overlapping with existing subnets in Domain.[authorized_networks].
state: Option<String>Output only. The current state of this domain.
status_message: Option<String>Output only. Additional information about the current status of this domain, if available.
trusts: Option<Vec<Trust>>Output only. The current trusts associated with the domain.
update_time: Option<DateTime<Utc>>Output only. The last update time.