Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dragonfly-api"
version = "2.2.11"
version = "2.2.12"
authors = ["Gaius <gaius.qi@gmail.com>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
184 changes: 105 additions & 79 deletions pkg/apis/common/v2/common.pb.go

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions pkg/apis/common/v2/common.pb.validate.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions pkg/apis/common/v2/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -724,6 +724,10 @@ message ObjectStorage {
min_len: 1
ignore_empty: true
}];
// Insecure skip verify indicates whether to skip verifying the server's certificate chain.
optional bool insecure_skip_verify = 9;
// Plain http indicates whether to use plain HTTP for downloading.
optional bool plain_http = 10;
}

// HDFS related information.
Expand Down
4 changes: 4 additions & 0 deletions proto/common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -648,6 +648,10 @@ message ObjectStorage {
optional string predefined_acl = 7;
// Temporary STS security token for accessing OSS.
optional string security_token = 8;
// Insecure skip verify indicates whether to skip verifying the server's certificate chain.
optional bool insecure_skip_verify = 9;
// Plain http indicates whether to use plain HTTP for downloading.
optional bool plain_http = 10;
}

// HDFS related information.
Expand Down
6 changes: 6 additions & 0 deletions src/common.v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -768,6 +768,12 @@ pub struct ObjectStorage {
/// Temporary STS security token for accessing OSS.
#[prost(string, optional, tag = "8")]
pub security_token: ::core::option::Option<::prost::alloc::string::String>,
/// Insecure skip verify indicates whether to skip verifying the server's certificate chain.
#[prost(bool, optional, tag = "9")]
pub insecure_skip_verify: ::core::option::Option<bool>,
/// Plain http indicates whether to use plain HTTP for downloading.
#[prost(bool, optional, tag = "10")]
pub plain_http: ::core::option::Option<bool>,
}
/// HDFS related information.
#[derive(serde::Serialize, serde::Deserialize)]
Expand Down
Binary file modified src/descriptor.bin
Binary file not shown.