#[non_exhaustive]pub enum EditionConfig {
Unspecified,
Inherit,
Disabled,
Standard,
Trial,
UnknownValue(UnknownValue),
}Expand description
The edition configuration of the IntelligenceConfig resource. This
signifies the edition used for configuring the IntelligenceConfig
resource and can only take the following values:
EDITION_CONFIG_UNSPECIFIED, INHERIT, DISABLED, STANDARD and
TRIAL.
§Working with unknown values
This enum is defined as #[non_exhaustive] because Google Cloud may add
additional enum variants at any time. Adding new variants is not considered
a breaking change. Applications should write their code in anticipation of:
- New values appearing in future releases of the client library, and
- New values received dynamically, without application changes.
Please consult the Working with enums section in the user guide for some guidelines.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Unspecified
This is an unknown edition of the resource.
Inherit
The inherited edition from the parent and filters. This is the default
edition when there is no IntelligenceConfig setup for a GCP resource.
Disabled
The edition configuration is disabled for the IntelligenceConfig
resource and its children. Filters are not applicable.
Standard
The IntelligenceConfig resource is of STANDARD edition.
Trial
The IntelligenceConfig resource is available in TRIAL edition. During
the trial period, Cloud Storage does not charge for Storage Intelligence
usage. You can specify the buckets to include in the trial period by
using filters. At the end of the trial period, the IntelligenceConfig
resource is upgraded to STANDARD edition.
UnknownValue(UnknownValue)
If set, the enum was initialized with an unknown value.
Applications can examine the value using EditionConfig::value or EditionConfig::name.
Implementations§
Trait Implementations§
Source§impl Clone for EditionConfig
impl Clone for EditionConfig
Source§fn clone(&self) -> EditionConfig
fn clone(&self) -> EditionConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for EditionConfig
impl Debug for EditionConfig
Source§impl Default for EditionConfig
impl Default for EditionConfig
Source§impl<'de> Deserialize<'de> for EditionConfig
impl<'de> Deserialize<'de> for EditionConfig
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>,
Source§impl Display for EditionConfig
impl Display for EditionConfig
Source§impl From<&str> for EditionConfig
impl From<&str> for EditionConfig
Source§impl From<i32> for EditionConfig
impl From<i32> for EditionConfig
Source§impl PartialEq for EditionConfig
impl PartialEq for EditionConfig
Source§impl Serialize for EditionConfig
impl Serialize for EditionConfig
impl StructuralPartialEq for EditionConfig
Auto Trait Implementations§
impl Freeze for EditionConfig
impl RefUnwindSafe for EditionConfig
impl Send for EditionConfig
impl Sync for EditionConfig
impl Unpin for EditionConfig
impl UnwindSafe for EditionConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::RequestSource§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.