azure_security_keyvault_secrets 1.0.0

Rust wrappers around Microsoft Azure REST APIs - Azure Key Vault Secrets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_cfg))]

mod authorizer;
pub mod clients;
#[allow(
    unused_imports,
    reason = "Publicly exported generated/clients are instead exported from clients"
)]
mod generated;
mod resource;

pub use clients::{SecretClient, SecretClientOptions};
pub use generated::models;
pub use resource::*;