pub struct OperationalizationClusterCredentials {
pub storage_account: Option<StorageAccountCredentials>,
pub container_registry: Option<ContainerRegistryCredentials>,
pub container_service: Option<ContainerServiceCredentials>,
pub app_insights: Option<AppInsightsCredentials>,
pub service_auth_configuration: Option<ServiceAuthConfiguration>,
pub ssl_configuration: Option<SslConfiguration>,
}Expand description
Credentials to resources in the cluster.
Fields§
§storage_account: Option<StorageAccountCredentials>Access information for the storage account.
container_registry: Option<ContainerRegistryCredentials>Information about the Azure Container Registry which contains the images deployed to the cluster.
container_service: Option<ContainerServiceCredentials>Information about the Azure Container Registry which contains the images deployed to the cluster.
app_insights: Option<AppInsightsCredentials>AppInsights credentials.
service_auth_configuration: Option<ServiceAuthConfiguration>Global service auth configuration properties. These are the data-plane authorization keys and are used if a service doesn’t define it’s own.
ssl_configuration: Option<SslConfiguration>SSL configuration. If configured data-plane calls to user services will be exposed over SSL only.
Implementations§
Trait Implementations§
Source§impl Clone for OperationalizationClusterCredentials
impl Clone for OperationalizationClusterCredentials
Source§fn clone(&self) -> OperationalizationClusterCredentials
fn clone(&self) -> OperationalizationClusterCredentials
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 Default for OperationalizationClusterCredentials
impl Default for OperationalizationClusterCredentials
Source§fn default() -> OperationalizationClusterCredentials
fn default() -> OperationalizationClusterCredentials
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OperationalizationClusterCredentials
impl<'de> Deserialize<'de> for OperationalizationClusterCredentials
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 PartialEq for OperationalizationClusterCredentials
impl PartialEq for OperationalizationClusterCredentials
Source§fn eq(&self, other: &OperationalizationClusterCredentials) -> bool
fn eq(&self, other: &OperationalizationClusterCredentials) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OperationalizationClusterCredentials
Auto Trait Implementations§
impl Freeze for OperationalizationClusterCredentials
impl RefUnwindSafe for OperationalizationClusterCredentials
impl Send for OperationalizationClusterCredentials
impl Sync for OperationalizationClusterCredentials
impl Unpin for OperationalizationClusterCredentials
impl UnsafeUnpin for OperationalizationClusterCredentials
impl UnwindSafe for OperationalizationClusterCredentials
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