k8s_openapi/v1_35/apimachinery/pkg/apis/meta/v1/api_resource_list.rs
1// Generated from definition io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList
2
3/// APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.
4#[derive(Clone, Debug, Default, PartialEq)]
5pub struct APIResourceList {
6 /// groupVersion is the group and version this APIResourceList is for.
7 pub group_version: std::string::String,
8
9 /// resources contains the name of the resources and if they are namespaced.
10 pub resources: std::vec::Vec<crate::apimachinery::pkg::apis::meta::v1::APIResource>,
11}
12
13