Skip to content

Enhance the GetAllConfigsRequest to accept multiple resource_names #13

@avinashkolluru

Description

@avinashkolluru

Current schema:

message GetAllConfigsRequest {
  // required - name of the resource associated with the config
  string resource_name = 1;

  // required - namespace with which the config resource is associated
  string resource_namespace = 2;
}

This should be enhanced to something like the below:

message GetAllConfigsRequest {
  repeated ResourceIdentity = 1;
}

message ResourceIdentity {
 // required - name of the resource associated with the config
  string resource_name = 1;

  // required - namespace with which the config resource is associated
  string resource_namespace = 2;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions