pub struct ServiceActivationBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> ServiceActivationBuilder<S>
impl<S: State> ServiceActivationBuilder<S>
Sourcepub fn build(self) -> ServiceActivationwhere
S: IsComplete,
pub fn build(self) -> ServiceActivationwhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn service_name(
self,
value: String,
) -> ServiceActivationBuilder<SetServiceName<S>>where
S::ServiceName: IsUnset,
pub fn service_name(
self,
value: String,
) -> ServiceActivationBuilder<SetServiceName<S>>where
S::ServiceName: IsUnset,
Required.
The service identifier to activate.
- For GCP: service name (e.g., “iam.googleapis.com”, “compute.googleapis.com”)
- For Azure: resource provider namespace (e.g., “Microsoft.DocumentDB”, “Microsoft.Storage”)
Auto Trait Implementations§
impl<S> Freeze for ServiceActivationBuilder<S>
impl<S> RefUnwindSafe for ServiceActivationBuilder<S>
impl<S> Send for ServiceActivationBuilder<S>
impl<S> Sync for ServiceActivationBuilder<S>
impl<S> Unpin for ServiceActivationBuilder<S>
impl<S> UnsafeUnpin for ServiceActivationBuilder<S>
impl<S> UnwindSafe for ServiceActivationBuilder<S>
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