We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The example needs to specifiy some options. We should look into the options and see if there should be default values.
use azure_identity::DefaultAzureCredential; use azure_security_keyvault_keys::{models::KeyCreateParameters, KeyClient}; use azure_security_keyvault_keys:: models::JsonWebKeyType; #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { let credential = DefaultAzureCredential::new()?; let client = KeyClient::new( "https://<val>.vault.azure.net", credential.clone(), None, )?; // Create an RSA key. let body = KeyCreateParameters { kty: Some(JsonWebKeyType::RSA), key_size: Some(2048), ..Default::default() }; let key = client .create_key("<key-name>", body.try_into()?, None) .await? .into_body() .await?; println!("Created key: {:?}", key); Ok(()) }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example needs to specifiy some options. We should look into the options and see if there should be default values.
The text was updated successfully, but these errors were encountered: