pub struct AzureContainerRegistryHeartbeatData {Show 27 fields
pub admin_user_enabled: bool,
pub anonymous_pull_enabled: bool,
pub creation_date: Option<String>,
pub data_endpoint_enabled: Option<bool>,
pub data_endpoint_host_names: Vec<String>,
pub encryption_key_identifier_present: bool,
pub encryption_key_vault_uri_present: bool,
pub encryption_status: Option<String>,
pub ip_rule_count: i32,
pub location: String,
pub login_server: Option<String>,
pub managed_tag_count: i32,
pub name: String,
pub network_rule_bypass_options: String,
pub network_rule_default_action: Option<String>,
pub policies_present: bool,
pub policy_count: i32,
pub private_endpoint_connection_count: i32,
pub provisioning_state: Option<String>,
pub public_network_access: String,
pub resource_group: String,
pub resource_id: Option<String>,
pub sku_name: String,
pub sku_tier: Option<String>,
pub status: ArtifactRegistryHeartbeatStatus,
pub type_: Option<String>,
pub zone_redundancy: String,
}Expand description
AzureContainerRegistryHeartbeatData
JSON schema
{
"type": "object",
"required": [
"adminUserEnabled",
"anonymousPullEnabled",
"dataEndpointHostNames",
"encryptionKeyIdentifierPresent",
"encryptionKeyVaultUriPresent",
"ipRuleCount",
"location",
"managedTagCount",
"name",
"networkRuleBypassOptions",
"policiesPresent",
"policyCount",
"privateEndpointConnectionCount",
"publicNetworkAccess",
"resourceGroup",
"skuName",
"status",
"zoneRedundancy"
],
"properties": {
"adminUserEnabled": {
"type": "boolean"
},
"anonymousPullEnabled": {
"type": "boolean"
},
"creationDate": {
"type": [
"string",
"null"
]
},
"dataEndpointEnabled": {
"type": [
"boolean",
"null"
]
},
"dataEndpointHostNames": {
"type": "array",
"items": {
"type": "string"
}
},
"encryptionKeyIdentifierPresent": {
"type": "boolean"
},
"encryptionKeyVaultUriPresent": {
"type": "boolean"
},
"encryptionStatus": {
"type": [
"string",
"null"
]
},
"ipRuleCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"location": {
"type": "string"
},
"loginServer": {
"type": [
"string",
"null"
]
},
"managedTagCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"name": {
"type": "string"
},
"networkRuleBypassOptions": {
"type": "string"
},
"networkRuleDefaultAction": {
"type": [
"string",
"null"
]
},
"policiesPresent": {
"type": "boolean"
},
"policyCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"privateEndpointConnectionCount": {
"type": "integer",
"format": "int32",
"minimum": 0.0
},
"provisioningState": {
"type": [
"string",
"null"
]
},
"publicNetworkAccess": {
"type": "string"
},
"resourceGroup": {
"type": "string"
},
"resourceId": {
"type": [
"string",
"null"
]
},
"skuName": {
"type": "string"
},
"skuTier": {
"type": [
"string",
"null"
]
},
"status": {
"$ref": "#/components/schemas/ArtifactRegistryHeartbeatStatus"
},
"type": {
"type": [
"string",
"null"
]
},
"zoneRedundancy": {
"type": "string"
}
}
}Fields§
§admin_user_enabled: bool§anonymous_pull_enabled: bool§creation_date: Option<String>§data_endpoint_enabled: Option<bool>§data_endpoint_host_names: Vec<String>§encryption_key_identifier_present: bool§encryption_key_vault_uri_present: bool§encryption_status: Option<String>§ip_rule_count: i32§location: String§login_server: Option<String>§managed_tag_count: i32§name: String§network_rule_bypass_options: String§network_rule_default_action: Option<String>§policies_present: bool§policy_count: i32§private_endpoint_connection_count: i32§provisioning_state: Option<String>§public_network_access: String§resource_group: String§resource_id: Option<String>§sku_name: String§sku_tier: Option<String>§status: ArtifactRegistryHeartbeatStatus§type_: Option<String>§zone_redundancy: StringImplementations§
Trait Implementations§
Source§impl Clone for AzureContainerRegistryHeartbeatData
impl Clone for AzureContainerRegistryHeartbeatData
Source§fn clone(&self) -> AzureContainerRegistryHeartbeatData
fn clone(&self) -> AzureContainerRegistryHeartbeatData
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<'de> Deserialize<'de> for AzureContainerRegistryHeartbeatData
impl<'de> Deserialize<'de> for AzureContainerRegistryHeartbeatData
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<&AzureContainerRegistryHeartbeatData> for AzureContainerRegistryHeartbeatData
impl From<&AzureContainerRegistryHeartbeatData> for AzureContainerRegistryHeartbeatData
Source§fn from(value: &AzureContainerRegistryHeartbeatData) -> Self
fn from(value: &AzureContainerRegistryHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl From<AzureContainerRegistryHeartbeatData> for AzureContainerRegistryHeartbeatData
impl From<AzureContainerRegistryHeartbeatData> for AzureContainerRegistryHeartbeatData
Source§fn from(value: AzureContainerRegistryHeartbeatData) -> Self
fn from(value: AzureContainerRegistryHeartbeatData) -> Self
Converts to this type from the input type.
Source§impl TryFrom<AzureContainerRegistryHeartbeatData> for AzureContainerRegistryHeartbeatData
impl TryFrom<AzureContainerRegistryHeartbeatData> for AzureContainerRegistryHeartbeatData
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: AzureContainerRegistryHeartbeatData,
) -> Result<Self, ConversionError>
fn try_from( value: AzureContainerRegistryHeartbeatData, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AzureContainerRegistryHeartbeatData
impl RefUnwindSafe for AzureContainerRegistryHeartbeatData
impl Send for AzureContainerRegistryHeartbeatData
impl Sync for AzureContainerRegistryHeartbeatData
impl Unpin for AzureContainerRegistryHeartbeatData
impl UnsafeUnpin for AzureContainerRegistryHeartbeatData
impl UnwindSafe for AzureContainerRegistryHeartbeatData
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