pub struct RemoteAzureClientConfig {
pub credentials: RemoteAzureCredentials,
pub region: Option<String>,
pub subscription_id: String,
pub tenant_id: String,
}Expand description
Response-safe Azure client configuration containing one storage-audience access token for the stack’s Remote Bindings identity.
JSON schema
{
"description": "Response-safe Azure client configuration containing one storage-audience\naccess token for the stack's Remote Bindings identity.",
"type": "object",
"required": [
"credentials",
"subscriptionId",
"tenantId"
],
"properties": {
"credentials": {
"$ref": "#/components/schemas/RemoteAzureCredentials"
},
"region": {
"description": "Azure region configured for the deployment.",
"type": [
"string",
"null"
]
},
"subscriptionId": {
"description": "Azure subscription containing the storage account.",
"type": "string"
},
"tenantId": {
"description": "Azure tenant owning the identity.",
"type": "string"
}
},
"additionalProperties": false
}Fields§
§credentials: RemoteAzureCredentials§region: Option<String>Azure region configured for the deployment.
subscription_id: StringAzure subscription containing the storage account.
tenant_id: StringAzure tenant owning the identity.
Implementations§
Source§impl RemoteAzureClientConfig
impl RemoteAzureClientConfig
pub fn builder() -> RemoteAzureClientConfig
Trait Implementations§
Source§impl Clone for RemoteAzureClientConfig
impl Clone for RemoteAzureClientConfig
Source§fn clone(&self) -> RemoteAzureClientConfig
fn clone(&self) -> RemoteAzureClientConfig
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 Debug for RemoteAzureClientConfig
impl Debug for RemoteAzureClientConfig
Source§impl<'de> Deserialize<'de> for RemoteAzureClientConfig
impl<'de> Deserialize<'de> for RemoteAzureClientConfig
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 From<&RemoteAzureClientConfig> for RemoteAzureClientConfig
impl From<&RemoteAzureClientConfig> for RemoteAzureClientConfig
Source§fn from(value: &RemoteAzureClientConfig) -> Self
fn from(value: &RemoteAzureClientConfig) -> Self
Converts to this type from the input type.
Source§impl From<RemoteAzureClientConfig> for RemoteAzureClientConfig
impl From<RemoteAzureClientConfig> for RemoteAzureClientConfig
Source§fn from(value: RemoteAzureClientConfig) -> Self
fn from(value: RemoteAzureClientConfig) -> Self
Converts to this type from the input type.
Source§impl Serialize for RemoteAzureClientConfig
impl Serialize for RemoteAzureClientConfig
Source§impl TryFrom<RemoteAzureClientConfig> for RemoteAzureClientConfig
impl TryFrom<RemoteAzureClientConfig> for RemoteAzureClientConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: RemoteAzureClientConfig) -> Result<Self, ConversionError>
fn try_from(value: RemoteAzureClientConfig) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for RemoteAzureClientConfig
impl RefUnwindSafe for RemoteAzureClientConfig
impl Send for RemoteAzureClientConfig
impl Sync for RemoteAzureClientConfig
impl Unpin for RemoteAzureClientConfig
impl UnsafeUnpin for RemoteAzureClientConfig
impl UnwindSafe for RemoteAzureClientConfig
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