Class ResourceAttributesArgs
ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Inputs.Authorization.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class ResourceAttributesArgs : ResourceArgs
Properties
View SourceGroup
Group is the API Group of the Resource. "*" means all.
Declaration
public Input<string> Group { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Name
Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Namespace
Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces "" (empty) is defaulted for LocalSubjectAccessReviews "" (empty) is empty for cluster-scoped resources "" (empty) means "all" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview
Declaration
public Input<string> Namespace { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Resource
Resource is one of the existing resource types. "*" means all.
Declaration
public Input<string> Resource { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Subresource
Subresource is one of the existing resource types. "" means none.
Declaration
public Input<string> Subresource { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Verb
Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. "*" means all.
Declaration
public Input<string> Verb { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Version
Version is the API Version of the Resource. "*" means all.
Declaration
public Input<string> Version { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |