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 b8770b8
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 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 All @@ -446,7 +453,7 @@ message Header {
string value = 2;
}

// Status: [Beta]
// Status: [Development]
message TLSCertificate {
// The (cert,private_key) pair should be issued and signed by a Certificate
// Authority (CA) that the destination Server recognizes.
Expand Down Expand Up @@ -476,7 +483,7 @@ message TLSCertificate {
bytes ca_cert = 3;
}

// Status: [Beta]
// Status: [Development]
message ConnectionSettingsOffers {
// Hash of all settings, including settings that may be omitted from this message
// because they are unchanged.
Expand Down

0 comments on commit b8770b8

Please sign in to comment.