generated.proto 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. Copyright The Kubernetes Authors.
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. // This file was autogenerated by go-to-protobuf. Do not edit it manually!
  14. syntax = "proto2";
  15. package k8s.io.apimachinery.pkg.apis.meta.v1beta1;
  16. import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
  17. import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
  18. // Package-wide variables from generator "generated".
  19. option go_package = "k8s.io/apimachinery/pkg/apis/meta/v1beta1";
  20. // PartialObjectMetadataList contains a list of objects containing only their metadata.
  21. // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
  22. message PartialObjectMetadataList {
  23. // Standard list metadata.
  24. // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
  25. // +optional
  26. optional k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 2;
  27. // items contains each of the included items.
  28. repeated k8s.io.apimachinery.pkg.apis.meta.v1.PartialObjectMetadata items = 1;
  29. }