All Downloads are FREE. Search and download functionalities are using the official Maven repository.

envoy.service.discovery.v3alpha.sds.proto Maven / Gradle / Ivy

There is a newer version: 1.0.46
Show newest version
syntax = "proto3";

package envoy.service.discovery.v3alpha;

option java_outer_classname = "SdsProto";
option java_multiple_files = true;
option java_package = "io.envoyproxy.envoy.service.discovery.v3alpha";

import "envoy/api/v3alpha/discovery.proto";

import "google/api/annotations.proto";

// [#not-implemented-hide:] Not configuration. Workaround c++ protobuf issue with importing
// services: https://github.com/google/protobuf/issues/4221
message SdsDummy {
}

service SecretDiscoveryService {
  rpc DeltaSecrets(stream envoy.api.v3alpha.DeltaDiscoveryRequest)
      returns (stream envoy.api.v3alpha.DeltaDiscoveryResponse) {
  }

  rpc StreamSecrets(stream envoy.api.v3alpha.DiscoveryRequest)
      returns (stream envoy.api.v3alpha.DiscoveryResponse) {
  }

  rpc FetchSecrets(envoy.api.v3alpha.DiscoveryRequest)
      returns (envoy.api.v3alpha.DiscoveryResponse) {
    option (google.api.http) = {
      post: "/v3alpha/discovery:secrets"
      body: "*"
    };
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy