Skip to content

Commit

Permalink
Change status to Development
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-laterman committed Oct 16, 2024
1 parent a174175 commit 7849fe0
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions proto/opamp.proto
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,11 @@ message OpAMPConnectionSettings {
map<string, string> other_settings = 5;

// Optional connection specific TLS settings.
// Status: [Development]
TLSConnectionSettings tls = 6;

// Optional connection specific proxy settings.
// Status: [Development]
ProxyConnectionSettings proxy = 7;
}

Expand Down Expand Up @@ -319,9 +321,11 @@ message TelemetryConnectionSettings {
map<string, string> other_settings = 4;

// Optional connection specific TLS settings.
// Status: [Development]
TLSConnectionSettings tls = 5;

// Optional connection specific proxy settings.
// Status: [Development]
ProxyConnectionSettings proxy = 6;
}

Expand Down Expand Up @@ -370,13 +374,15 @@ message OtherConnectionSettings {
map<string, string> other_settings = 4;

// Optional connection specific TLS settings.
// Status: [Development]
TLSConnectionSettings tls = 5;

// Optional connection specific proxy settings.
// Status: [Development]
ProxyConnectionSettings proxy = 6;
}

// Status: [Beta]
// Status: [Development]
message TLSConnectionSettings {
// Insecure is false by default, if true TLS will be disabled for the connection.
bool insecure = 1;
Expand All @@ -403,7 +409,7 @@ message TLSConnectionSettings {
repeated string cipher_suites = 8;
}

// Status: [Beta]
// Status: [Development]
message ProxyConnectionSettings {
// disable using a proxy for the connection.
// If true configured settings, and environment variables are ignored for the connection.
Expand Down Expand Up @@ -432,6 +438,7 @@ message ProxyConnectionSettings {
map<string, string> other_settings = 5;

// Connection specific TLS settings.
// Status: [Development]
TLSConnectionSettings tls = 6;
}

Expand Down

0 comments on commit 7849fe0

Please sign in to comment.