Skip to content

Commit b3863cb

Browse files
chore: Add trailing punctuation (#1623)
Add background task for cleaning up expired state records. Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 7c827ac commit b3863cb

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

openstack_cli/src/identity/v4/federation/identity_provider/create.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ struct IdentityProvider {
125125
#[arg(action=clap::ArgAction::Append, help_heading = "Body parameters", long)]
126126
oidc_response_types: Option<Vec<String>>,
127127

128-
/// Additional special provider specific configuration
128+
/// Additional special provider specific configuration.
129129
#[arg(help_heading = "Body parameters", long, value_name="key=value", value_parser=parse_key_val::<String, Value>)]
130130
provider_config: Option<Vec<(String, Value)>>,
131131
}

openstack_cli/src/identity/v4/federation/mapping/list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ struct QueryParameters {
7070
#[arg(help_heading = "Query parameters", long)]
7171
idp_id: Option<String>,
7272

73-
/// Limit number of entries on the single response page (Maximal 100)
73+
/// Limit number of entries on the single response page (Maximal 100).
7474
#[arg(
7575
help_heading = "Query parameters",
7676
long("page-size"),

openstack_sdk/src/api/identity/v4/federation/identity_provider/create.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,14 @@ pub struct IdentityProvider<'a> {
103103
#[builder(default, setter(into))]
104104
pub(crate) oidc_response_types: Option<Vec<Cow<'a, str>>>,
105105

106-
/// Additional special provider specific configuration
106+
/// Additional special provider specific configuration.
107107
#[serde(skip_serializing_if = "Option::is_none")]
108108
#[builder(default, private, setter(into, name = "_provider_config"))]
109109
pub(crate) provider_config: Option<BTreeMap<Cow<'a, str>, Value>>,
110110
}
111111

112112
impl<'a> IdentityProviderBuilder<'a> {
113-
/// Additional special provider specific configuration
113+
/// Additional special provider specific configuration.
114114
pub fn provider_config<I, K, V>(&mut self, iter: I) -> &mut Self
115115
where
116116
I: Iterator<Item = (K, V)>,

openstack_sdk/src/api/identity/v4/federation/mapping/list.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub struct Request<'a> {
4545
#[builder(default, setter(into))]
4646
idp_id: Option<Cow<'a, str>>,
4747

48-
/// Limit number of entries on the single response page (Maximal 100)
48+
/// Limit number of entries on the single response page (Maximal 100).
4949
#[builder(default)]
5050
limit: Option<u32>,
5151

openstack_sdk/src/api/identity/v4/user/passkey/register_finish.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use serde::Deserialize;
2424
use serde::Serialize;
2525
use std::borrow::Cow;
2626

27-
/// <https://www.w3.org/TR/webauthn-3/#sctn-authenticator-credential-properties-extension>
27+
/// <https://www.w3.org/TR/webauthn-3/#sctn-authenticator-credential-properties-extension>.
2828
#[derive(Builder, Debug, Deserialize, Clone, Serialize)]
2929
#[builder(setter(strip_option))]
3030
pub struct CredProps {
@@ -50,7 +50,7 @@ pub enum CredProtect {
5050
}
5151

5252
/// <https://w3c.github.io/webauthn/#dictdef-authenticationextensionsclientoutputs>
53-
/// The default option here for Options are None, so it can be derived
53+
/// The default option here for Options are None, so it can be derived.
5454
#[derive(Builder, Debug, Deserialize, Clone, Serialize)]
5555
#[builder(setter(strip_option))]
5656
pub struct Extensions {
@@ -59,12 +59,12 @@ pub struct Extensions {
5959
#[builder(default, setter(into))]
6060
pub(crate) appid: Option<bool>,
6161

62-
/// <https://www.w3.org/TR/webauthn-3/#sctn-authenticator-credential-properties-extension>
62+
/// <https://www.w3.org/TR/webauthn-3/#sctn-authenticator-credential-properties-extension>.
6363
#[serde(skip_serializing_if = "Option::is_none")]
6464
#[builder(default, setter(into))]
6565
pub(crate) cred_props: Option<CredProps>,
6666

67-
/// Valid credential protection policies
67+
/// Valid credential protection policies.
6868
#[serde(skip_serializing_if = "Option::is_none")]
6969
#[builder(default)]
7070
pub(crate) cred_protect: Option<CredProtect>,
@@ -98,7 +98,7 @@ pub enum Transports {
9898
Usb,
9999
}
100100

101-
/// <https://w3c.github.io/webauthn/#authenticatorattestationresponse>
101+
/// <https://w3c.github.io/webauthn/#authenticatorattestationresponse>.
102102
#[derive(Builder, Debug, Deserialize, Clone, Serialize)]
103103
#[builder(setter(strip_option))]
104104
pub struct Response<'a> {
@@ -126,7 +126,7 @@ pub struct Request<'a> {
126126
pub(crate) description: Option<Cow<'a, str>>,
127127

128128
/// <https://w3c.github.io/webauthn/#dictdef-authenticationextensionsclientoutputs>
129-
/// The default option here for Options are None, so it can be derived
129+
/// The default option here for Options are None, so it can be derived.
130130
#[builder(setter(into))]
131131
pub(crate) extensions: Extensions,
132132

@@ -144,7 +144,7 @@ pub struct Request<'a> {
144144
#[builder(setter(into))]
145145
pub(crate) raw_id: Cow<'a, str>,
146146

147-
/// <https://w3c.github.io/webauthn/#authenticatorattestationresponse>
147+
/// <https://w3c.github.io/webauthn/#authenticatorattestationresponse>.
148148
#[builder(setter(into))]
149149
pub(crate) response: Response<'a>,
150150

openstack_sdk/src/api/identity/v4/user/passkey/register_start.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use std::borrow::Cow;
3232
#[derive(Builder, Debug, Deserialize, Clone, Serialize)]
3333
#[builder(setter(strip_option))]
3434
pub struct Passkey<'a> {
35-
/// Passkey description
35+
/// Passkey description.
3636
#[serde(skip_serializing_if = "Option::is_none")]
3737
#[builder(default, setter(into))]
3838
pub(crate) description: Option<Cow<'a, str>>,

openstack_types/src/identity/v4/user/passkey/response/register_start.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use structable::{StructTable, StructTableOptions};
2222
/// RegisterStart response representation
2323
#[derive(Clone, Deserialize, Serialize, StructTable)]
2424
pub struct RegisterStartResponse {
25-
/// <https://www.w3.org/TR/webauthn/#enumdef-attestationconveyancepreference>
25+
/// <https://www.w3.org/TR/webauthn/#enumdef-attestationconveyancepreference>.
2626
#[serde(default)]
2727
#[structable(optional, serialize)]
2828
pub attestation: Option<Attestation>,
@@ -32,7 +32,7 @@ pub struct RegisterStartResponse {
3232
#[structable(optional, serialize)]
3333
pub attestation_formats: Option<Vec<AttestationFormats>>,
3434

35-
/// <https://www.w3.org/TR/webauthn/#dictdef-authenticatorselectioncriteria>
35+
/// <https://www.w3.org/TR/webauthn/#dictdef-authenticatorselectioncriteria>.
3636
#[serde(default)]
3737
#[structable(optional, serialize)]
3838
pub authenticator_selection: Option<AuthenticatorSelection>,
@@ -226,7 +226,7 @@ impl std::str::FromStr for UserVerification {
226226
}
227227
}
228228

229-
/// <https://www.w3.org/TR/webauthn/#dictdef-authenticatorselectioncriteria>
229+
/// <https://www.w3.org/TR/webauthn/#dictdef-authenticatorselectioncriteria>.
230230
/// `AuthenticatorSelection` type
231231
#[derive(Clone, Debug, Deserialize, Serialize)]
232232
pub struct AuthenticatorSelection {
@@ -285,7 +285,7 @@ impl std::str::FromStr for Transports {
285285
}
286286
}
287287

288-
/// <https://www.w3.org/TR/webauthn/#dictdef-publickeycredentialdescriptor>
288+
/// <https://www.w3.org/TR/webauthn/#dictdef-publickeycredentialdescriptor>.
289289
/// `ExcludeCredentials` type
290290
#[derive(Clone, Debug, Deserialize, Serialize)]
291291
pub struct ExcludeCredentials {
@@ -322,9 +322,9 @@ impl std::str::FromStr for CredentialProtectionPolicy {
322322
}
323323
}
324324

325-
/// The desired options for the client's use of the credProtect extension
325+
/// The desired options for the client's use of the credProtect extension.
326326
///
327-
/// <https://fidoalliance.org/specs/fido-v2.1-rd-20210309/fido-client-to-authenticator-protocol-v2.1-rd-20210309.html#sctn-credProtect-extension>
327+
/// <https://fidoalliance.org/specs/fido-v2.1-rd-20210309/fido-client-to-authenticator-protocol-v2.1-rd-20210309.html#sctn-credProtect-extension>.
328328
/// `CredProtect` type
329329
#[derive(Clone, Debug, Deserialize, Serialize)]
330330
pub struct CredProtect {
@@ -378,7 +378,7 @@ impl std::str::FromStr for Hints {
378378
}
379379
}
380380

381-
/// Public key cryptographic parameters
381+
/// Public key cryptographic parameters.
382382
/// `PubKeyCredParams` type
383383
#[derive(Clone, Debug, Deserialize, Serialize)]
384384
pub struct PubKeyCredParams {

0 commit comments

Comments
 (0)