Quota

Struct Quota 

Source
pub struct Quota {
Show 26 fields pub dns_keys_per_managed_zone: Option<i32>, pub gke_clusters_per_managed_zone: Option<i32>, pub gke_clusters_per_policy: Option<i32>, pub gke_clusters_per_response_policy: Option<i32>, pub internet_health_checks_per_managed_zone: Option<i32>, pub items_per_routing_policy: Option<i32>, pub kind: Option<String>, pub managed_zones: Option<i32>, pub managed_zones_per_gke_cluster: Option<i32>, pub managed_zones_per_network: Option<i32>, pub nameservers_per_delegation: Option<i32>, pub networks_per_managed_zone: Option<i32>, pub networks_per_policy: Option<i32>, pub networks_per_response_policy: Option<i32>, pub peering_zones_per_target_network: Option<i32>, pub policies: Option<i32>, pub resource_records_per_rrset: Option<i32>, pub response_policies: Option<i32>, pub response_policy_rules_per_response_policy: Option<i32>, pub rrset_additions_per_change: Option<i32>, pub rrset_deletions_per_change: Option<i32>, pub rrsets_per_managed_zone: Option<i32>, pub target_name_servers_per_managed_zone: Option<i32>, pub target_name_servers_per_policy: Option<i32>, pub total_rrdata_size_per_change: Option<i32>, pub whitelisted_key_specs: Option<Vec<DnsKeySpec>>,
}
Expand description

Limits associated with a Project.

This type is not used in any activity, and only used as part of another schema.

Fields§

§dns_keys_per_managed_zone: Option<i32>

Maximum allowed number of DnsKeys per ManagedZone.

§gke_clusters_per_managed_zone: Option<i32>

Maximum allowed number of GKE clusters to which a privately scoped zone can be attached.

§gke_clusters_per_policy: Option<i32>

Maximum allowed number of GKE clusters per policy.

§gke_clusters_per_response_policy: Option<i32>

Maximum allowed number of GKE clusters per response policy.

§internet_health_checks_per_managed_zone: Option<i32>

no description provided

§items_per_routing_policy: Option<i32>

Maximum allowed number of items per routing policy.

§kind: Option<String>

no description provided

§managed_zones: Option<i32>

Maximum allowed number of managed zones in the project.

§managed_zones_per_gke_cluster: Option<i32>

Maximum allowed number of managed zones which can be attached to a GKE cluster.

§managed_zones_per_network: Option<i32>

Maximum allowed number of managed zones which can be attached to a network.

§nameservers_per_delegation: Option<i32>

Maximum number of nameservers per delegation, meant to prevent abuse

§networks_per_managed_zone: Option<i32>

Maximum allowed number of networks to which a privately scoped zone can be attached.

§networks_per_policy: Option<i32>

Maximum allowed number of networks per policy.

§networks_per_response_policy: Option<i32>

Maximum allowed number of networks per response policy.

§peering_zones_per_target_network: Option<i32>

Maximum allowed number of consumer peering zones per target network owned by this producer project

§policies: Option<i32>

Maximum allowed number of policies per project.

§resource_records_per_rrset: Option<i32>

Maximum allowed number of ResourceRecords per ResourceRecordSet.

§response_policies: Option<i32>

Maximum allowed number of response policies per project.

§response_policy_rules_per_response_policy: Option<i32>

Maximum allowed number of rules per response policy.

§rrset_additions_per_change: Option<i32>

Maximum allowed number of ResourceRecordSets to add per ChangesCreateRequest.

§rrset_deletions_per_change: Option<i32>

Maximum allowed number of ResourceRecordSets to delete per ChangesCreateRequest.

§rrsets_per_managed_zone: Option<i32>

Maximum allowed number of ResourceRecordSets per zone in the project.

§target_name_servers_per_managed_zone: Option<i32>

Maximum allowed number of target name servers per managed forwarding zone.

§target_name_servers_per_policy: Option<i32>

Maximum allowed number of alternative target name servers per policy.

§total_rrdata_size_per_change: Option<i32>

Maximum allowed size for total rrdata in one ChangesCreateRequest in bytes.

§whitelisted_key_specs: Option<Vec<DnsKeySpec>>

DNSSEC algorithm and key length types that can be used for DnsKeys.

Trait Implementations§

Source§

impl Clone for Quota

Source§

fn clone(&self) -> Quota

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Quota

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Quota

Source§

fn default() -> Quota

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Quota

Source§

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 Serialize for Quota

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Part for Quota

Auto Trait Implementations§

§

impl Freeze for Quota

§

impl RefUnwindSafe for Quota

§

impl Send for Quota

§

impl Sync for Quota

§

impl Unpin for Quota

§

impl UnwindSafe for Quota

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

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