Skip to content

Commit

Permalink
Merge pull request #347 from Daiki48/fix/doc
Browse files Browse the repository at this point in the history
Fix link to documentation
  • Loading branch information
yoshidan authored Feb 5, 2025
2 parents 3049bf9 + 41ebdb0 commit 127ebcd
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions storage/src/http/buckets/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ pub struct Bucket {
/// bucket are stored and determines the SLA and the cost of storage.
/// If this value is not specified when the bucket is created, it will default
/// to `STANDARD`. For more information, see
/// <https://developers.google.com/storage/docs/storage-classes.>
/// <https://developers.google.com/storage/docs/storage-classes>.
pub storage_class: String,
/// HTTP 1.1 \[<https://tools.ietf.org/html/rfc7232#section-2.3"\]Entity> tag]
/// for the bucket.
Expand Down Expand Up @@ -141,8 +141,8 @@ pub struct Billing {
}
/// Cross-Origin Response sharing (CORS) properties for a bucket.
/// For more on GCS and CORS, see
/// <https://cloud.google.com/storage/docs/cross-origin.>
/// For more on CORS in general, see <https://tools.ietf.org/html/rfc6454.>
/// <https://cloud.google.com/storage/docs/cross-origin>.
/// For more on CORS in general, see <https://tools.ietf.org/html/rfc6454>.
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct Cors {
Expand Down Expand Up @@ -211,7 +211,7 @@ pub mod iam_configuration {
}
}
/// Lifecycle properties of a bucket.
/// For more information, see <https://cloud.google.com/storage/docs/lifecycle.>
/// For more information, see <https://cloud.google.com/storage/docs/lifecycle>.
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct Lifecycle {
Expand Down Expand Up @@ -302,7 +302,7 @@ pub struct RetentionPolicy {
}
/// Properties of a bucket related to versioning.
/// For more on GCS versioning, see
/// <https://cloud.google.com/storage/docs/object-versioning.>
/// <https://cloud.google.com/storage/docs/object-versioning>.
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct Versioning {
Expand All @@ -311,7 +311,7 @@ pub struct Versioning {
}
/// Properties of a bucket related to accessing the contents as a static
/// website. For more on hosting a static website via GCS, see
/// <https://cloud.google.com/storage/docs/hosting-static-website.>
/// <https://cloud.google.com/storage/docs/hosting-static-website>.
#[derive(Clone, PartialEq, Eq, serde::Deserialize, serde::Serialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct Website {
Expand Down

0 comments on commit 127ebcd

Please sign in to comment.