argo-cd/server/applicationset/applicationset.proto
Peter Jiang 19b41b9d31
feat: ApplicationSet watch API (#26409)
Signed-off-by: nitishfy <justnitish06@gmail.com>
Signed-off-by: Peter Jiang <peterjiang823@gmail.com>
Co-authored-by: nitishfy <justnitish06@gmail.com>
2026-02-26 10:07:00 -05:00

124 lines
4.2 KiB
Protocol Buffer

syntax = "proto3";
option go_package = "github.com/argoproj/argo-cd/v3/pkg/apiclient/applicationset";
// ApplicationSet Service
//
// ApplicationSet Service API performs CRUD actions against applicationset resources
package applicationset;
import "google/api/annotations.proto";
import "k8s.io/api/core/v1/generated.proto";
import "github.com/argoproj/argo-cd/v3/pkg/apis/application/v1alpha1/generated.proto";
// ApplicationSetGetQuery is a query for applicationset resources
message ApplicationSetGetQuery {
// the applicationsets's name
string name = 1;
// The application set namespace. Default empty is argocd control plane namespace
string appsetNamespace = 2;
}
message ApplicationSetListQuery {
// the project names to restrict returned list applicationsets
repeated string projects = 1;
// the selector to restrict returned list to applications only with matched labels
string selector = 2;
// The application set namespace. Default empty is argocd control plane namespace
string appsetNamespace = 3;
}
message ApplicationSetWatchQuery {
string name = 1;
repeated string projects = 2;
string selector = 3;
string appSetNamespace = 4;
// when specified with a watch call, shows changes that occur after that particular version of a resource.
string resourceVersion = 5;
}
message ApplicationSetResponse {
string project = 1;
github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSet applicationset = 2;
}
message ApplicationSetCreateRequest {
github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSet applicationset = 1;
bool upsert = 2;
bool dryRun = 3;
}
message ApplicationSetDeleteRequest {
string name = 1;
// The application set namespace. Default empty is argocd control plane namespace
string appsetNamespace = 2;
}
message ApplicationSetTreeQuery {
string name = 1;
// The application set namespace. Default empty is argocd control plane namespace
string appsetNamespace = 2;
}
// ApplicationSetGetQuery is a query for applicationset resources
message ApplicationSetGenerateRequest {
// the applicationsets
github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSet applicationSet = 1;
}
// ApplicationSetGenerateResponse is a response for applicationset generate request
message ApplicationSetGenerateResponse {
repeated github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.Application applications = 1;
}
// ApplicationSetService
service ApplicationSetService {
// Get returns an applicationset by name
rpc Get (ApplicationSetGetQuery) returns (github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSet) {
option (google.api.http).get = "/api/v1/applicationsets/{name}";
}
// Generate generates
rpc Generate (ApplicationSetGenerateRequest) returns (ApplicationSetGenerateResponse) {
option (google.api.http) = {
post: "/api/v1/applicationsets/generate"
body: "*"
};
}
//List returns list of applicationset
rpc List (ApplicationSetListQuery) returns (github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSetList) {
option (google.api.http).get = "/api/v1/applicationsets";
}
//Create creates an applicationset
rpc Create (ApplicationSetCreateRequest) returns (github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSet) {
option (google.api.http) = {
post: "/api/v1/applicationsets"
body: "applicationset"
};
}
// Delete deletes an application set
rpc Delete(ApplicationSetDeleteRequest) returns (ApplicationSetResponse) {
option (google.api.http).delete = "/api/v1/applicationsets/{name}";
}
// ResourceTree returns resource tree
rpc ResourceTree(ApplicationSetTreeQuery) returns (github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSetTree) {
option (google.api.http).get = "/api/v1/applicationsets/{name}/resource-tree";
}
// ListResourceEvents returns a list of event resources
rpc ListResourceEvents(ApplicationSetGetQuery) returns (k8s.io.api.core.v1.EventList) {
option (google.api.http).get = "/api/v1/applicationsets/{name}/events";
}
rpc Watch (ApplicationSetWatchQuery) returns (stream github.com.argoproj.argo_cd.v3.pkg.apis.application.v1alpha1.ApplicationSetWatchEvent) {
option (google.api.http).get = "/api/v1/stream/applicationsets";
}
}