pub struct TargetUpdateAzure {Show 18 fields
pub azure_cloud: Option<String>,
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub connection_type: Option<String>,
pub description: Option<String>,
pub json: Option<bool>,
pub keep_prev_version: Option<String>,
pub key: Option<String>,
pub max_versions: Option<String>,
pub name: String,
pub new_name: Option<String>,
pub resource_group_name: Option<String>,
pub resource_name: Option<String>,
pub subscription_id: Option<String>,
pub tenant_id: Option<String>,
pub token: Option<String>,
pub uid_token: Option<String>,
pub use_gw_cloud_identity: Option<bool>,
}Fields§
§azure_cloud: Option<String>Azure cloud environment to use. Values: AzureCloud (default), AzureUSGovernment, AzureChinaCloud.
client_id: Option<String>Azure client/application id
client_secret: Option<String>Azure client secret
connection_type: Option<String>Type of connection [credentials/cloud-identity]
description: Option<String>Description of the object
json: Option<bool>Set output format to JSON
keep_prev_version: Option<String>Whether to keep previous version [true/false]. If not set, use default according to account settings
key: Option<String>The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
max_versions: Option<String>Set the maximum number of versions, limited by the account settings defaults.
name: StringTarget name
new_name: Option<String>New target name
resource_group_name: Option<String>The Resource Group name in your Azure subscription
resource_name: Option<String>The name of the relevant Resource
subscription_id: Option<String>Azure Subscription Id
tenant_id: Option<String>Azure tenant id
token: Option<String>Authentication token (see /auth and /configure)
uid_token: Option<String>The universal identity token, Required only for universal_identity authentication
use_gw_cloud_identity: Option<bool>Use the GW’s Cloud IAM [Deprecated: Use connection-type=cloud-identity]
Implementations§
Source§impl TargetUpdateAzure
impl TargetUpdateAzure
pub fn new(name: String) -> TargetUpdateAzure
Trait Implementations§
Source§impl Clone for TargetUpdateAzure
impl Clone for TargetUpdateAzure
Source§fn clone(&self) -> TargetUpdateAzure
fn clone(&self) -> TargetUpdateAzure
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for TargetUpdateAzure
impl Debug for TargetUpdateAzure
Source§impl Default for TargetUpdateAzure
impl Default for TargetUpdateAzure
Source§fn default() -> TargetUpdateAzure
fn default() -> TargetUpdateAzure
Source§impl<'de> Deserialize<'de> for TargetUpdateAzure
impl<'de> Deserialize<'de> for TargetUpdateAzure
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 PartialEq for TargetUpdateAzure
impl PartialEq for TargetUpdateAzure
Source§fn eq(&self, other: &TargetUpdateAzure) -> bool
fn eq(&self, other: &TargetUpdateAzure) -> bool
self and other values to be equal, and is used by ==.