v1

package
v2.9.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 12, 2021 License: Apache-2.0 Imports: 6 Imported by: 122

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type APIGroup

type APIGroup struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// name is the name of the group.
	Name string `pulumi:"name"`
	// preferredVersion is the version preferred by the API server, which probably is the storage version.
	PreferredVersion *GroupVersionForDiscovery `pulumi:"preferredVersion"`
	// a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
	ServerAddressByClientCIDRs []ServerAddressByClientCIDR `pulumi:"serverAddressByClientCIDRs"`
	// versions are the versions supported in this group.
	Versions []GroupVersionForDiscovery `pulumi:"versions"`
}

APIGroup contains the name, the supported versions, and the preferred version of a group.

type APIGroupArgs

type APIGroupArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// name is the name of the group.
	Name pulumi.StringInput `pulumi:"name"`
	// preferredVersion is the version preferred by the API server, which probably is the storage version.
	PreferredVersion GroupVersionForDiscoveryPtrInput `pulumi:"preferredVersion"`
	// a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
	ServerAddressByClientCIDRs ServerAddressByClientCIDRArrayInput `pulumi:"serverAddressByClientCIDRs"`
	// versions are the versions supported in this group.
	Versions GroupVersionForDiscoveryArrayInput `pulumi:"versions"`
}

APIGroup contains the name, the supported versions, and the preferred version of a group.

func (APIGroupArgs) ElementType

func (APIGroupArgs) ElementType() reflect.Type

func (APIGroupArgs) ToAPIGroupOutput

func (i APIGroupArgs) ToAPIGroupOutput() APIGroupOutput

func (APIGroupArgs) ToAPIGroupOutputWithContext

func (i APIGroupArgs) ToAPIGroupOutputWithContext(ctx context.Context) APIGroupOutput

type APIGroupArray

type APIGroupArray []APIGroupInput

func (APIGroupArray) ElementType

func (APIGroupArray) ElementType() reflect.Type

func (APIGroupArray) ToAPIGroupArrayOutput

func (i APIGroupArray) ToAPIGroupArrayOutput() APIGroupArrayOutput

func (APIGroupArray) ToAPIGroupArrayOutputWithContext

func (i APIGroupArray) ToAPIGroupArrayOutputWithContext(ctx context.Context) APIGroupArrayOutput

type APIGroupArrayInput

type APIGroupArrayInput interface {
	pulumi.Input

	ToAPIGroupArrayOutput() APIGroupArrayOutput
	ToAPIGroupArrayOutputWithContext(context.Context) APIGroupArrayOutput
}

APIGroupArrayInput is an input type that accepts APIGroupArray and APIGroupArrayOutput values. You can construct a concrete instance of `APIGroupArrayInput` via:

APIGroupArray{ APIGroupArgs{...} }

type APIGroupArrayOutput

type APIGroupArrayOutput struct{ *pulumi.OutputState }

func (APIGroupArrayOutput) ElementType

func (APIGroupArrayOutput) ElementType() reflect.Type

func (APIGroupArrayOutput) Index

func (APIGroupArrayOutput) ToAPIGroupArrayOutput

func (o APIGroupArrayOutput) ToAPIGroupArrayOutput() APIGroupArrayOutput

func (APIGroupArrayOutput) ToAPIGroupArrayOutputWithContext

func (o APIGroupArrayOutput) ToAPIGroupArrayOutputWithContext(ctx context.Context) APIGroupArrayOutput

type APIGroupInput

type APIGroupInput interface {
	pulumi.Input

	ToAPIGroupOutput() APIGroupOutput
	ToAPIGroupOutputWithContext(context.Context) APIGroupOutput
}

APIGroupInput is an input type that accepts APIGroupArgs and APIGroupOutput values. You can construct a concrete instance of `APIGroupInput` via:

APIGroupArgs{...}

type APIGroupList

type APIGroupList struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// groups is a list of APIGroup.
	Groups []APIGroup `pulumi:"groups"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
}

APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.

type APIGroupListArgs

type APIGroupListArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// groups is a list of APIGroup.
	Groups APIGroupArrayInput `pulumi:"groups"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
}

APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.

func (APIGroupListArgs) ElementType

func (APIGroupListArgs) ElementType() reflect.Type

func (APIGroupListArgs) ToAPIGroupListOutput

func (i APIGroupListArgs) ToAPIGroupListOutput() APIGroupListOutput

func (APIGroupListArgs) ToAPIGroupListOutputWithContext

func (i APIGroupListArgs) ToAPIGroupListOutputWithContext(ctx context.Context) APIGroupListOutput

type APIGroupListInput

type APIGroupListInput interface {
	pulumi.Input

	ToAPIGroupListOutput() APIGroupListOutput
	ToAPIGroupListOutputWithContext(context.Context) APIGroupListOutput
}

APIGroupListInput is an input type that accepts APIGroupListArgs and APIGroupListOutput values. You can construct a concrete instance of `APIGroupListInput` via:

APIGroupListArgs{...}

type APIGroupListOutput

type APIGroupListOutput struct{ *pulumi.OutputState }

APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.

func (APIGroupListOutput) ApiVersion

func (o APIGroupListOutput) ApiVersion() pulumi.StringPtrOutput

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (APIGroupListOutput) ElementType

func (APIGroupListOutput) ElementType() reflect.Type

func (APIGroupListOutput) Groups

groups is a list of APIGroup.

func (APIGroupListOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (APIGroupListOutput) ToAPIGroupListOutput

func (o APIGroupListOutput) ToAPIGroupListOutput() APIGroupListOutput

func (APIGroupListOutput) ToAPIGroupListOutputWithContext

func (o APIGroupListOutput) ToAPIGroupListOutputWithContext(ctx context.Context) APIGroupListOutput

type APIGroupOutput

type APIGroupOutput struct{ *pulumi.OutputState }

APIGroup contains the name, the supported versions, and the preferred version of a group.

func (APIGroupOutput) ApiVersion

func (o APIGroupOutput) ApiVersion() pulumi.StringPtrOutput

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (APIGroupOutput) ElementType

func (APIGroupOutput) ElementType() reflect.Type

func (APIGroupOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (APIGroupOutput) Name

name is the name of the group.

func (APIGroupOutput) PreferredVersion

preferredVersion is the version preferred by the API server, which probably is the storage version.

func (APIGroupOutput) ServerAddressByClientCIDRs

func (o APIGroupOutput) ServerAddressByClientCIDRs() ServerAddressByClientCIDRArrayOutput

a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.

func (APIGroupOutput) ToAPIGroupOutput

func (o APIGroupOutput) ToAPIGroupOutput() APIGroupOutput

func (APIGroupOutput) ToAPIGroupOutputWithContext

func (o APIGroupOutput) ToAPIGroupOutputWithContext(ctx context.Context) APIGroupOutput

func (APIGroupOutput) Versions

versions are the versions supported in this group.

type APIResource

type APIResource struct {
	// categories is a list of the grouped resources this resource belongs to (e.g. 'all')
	Categories []string `pulumi:"categories"`
	// group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".
	Group *string `pulumi:"group"`
	// kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')
	Kind string `pulumi:"kind"`
	// name is the plural name of the resource.
	Name string `pulumi:"name"`
	// namespaced indicates if a resource is namespaced or not.
	Namespaced bool `pulumi:"namespaced"`
	// shortNames is a list of suggested short names of the resource.
	ShortNames []string `pulumi:"shortNames"`
	// singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.
	SingularName string `pulumi:"singularName"`
	// The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.
	StorageVersionHash *string `pulumi:"storageVersionHash"`
	// verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)
	Verbs []string `pulumi:"verbs"`
	// version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
	Version *string `pulumi:"version"`
}

APIResource specifies the name of a resource and whether it is namespaced.

type APIResourceArgs

type APIResourceArgs struct {
	// categories is a list of the grouped resources this resource belongs to (e.g. 'all')
	Categories pulumi.StringArrayInput `pulumi:"categories"`
	// group is the preferred group of the resource.  Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".
	Group pulumi.StringPtrInput `pulumi:"group"`
	// kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')
	Kind pulumi.StringInput `pulumi:"kind"`
	// name is the plural name of the resource.
	Name pulumi.StringInput `pulumi:"name"`
	// namespaced indicates if a resource is namespaced or not.
	Namespaced pulumi.BoolInput `pulumi:"namespaced"`
	// shortNames is a list of suggested short names of the resource.
	ShortNames pulumi.StringArrayInput `pulumi:"shortNames"`
	// singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.
	SingularName pulumi.StringInput `pulumi:"singularName"`
	// The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.
	StorageVersionHash pulumi.StringPtrInput `pulumi:"storageVersionHash"`
	// verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)
	Verbs pulumi.StringArrayInput `pulumi:"verbs"`
	// version is the preferred version of the resource.  Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".
	Version pulumi.StringPtrInput `pulumi:"version"`
}

APIResource specifies the name of a resource and whether it is namespaced.

func (APIResourceArgs) ElementType

func (APIResourceArgs) ElementType() reflect.Type

func (APIResourceArgs) ToAPIResourceOutput

func (i APIResourceArgs) ToAPIResourceOutput() APIResourceOutput

func (APIResourceArgs) ToAPIResourceOutputWithContext

func (i APIResourceArgs) ToAPIResourceOutputWithContext(ctx context.Context) APIResourceOutput

type APIResourceArray

type APIResourceArray []APIResourceInput

func (APIResourceArray) ElementType

func (APIResourceArray) ElementType() reflect.Type

func (APIResourceArray) ToAPIResourceArrayOutput

func (i APIResourceArray) ToAPIResourceArrayOutput() APIResourceArrayOutput

func (APIResourceArray) ToAPIResourceArrayOutputWithContext

func (i APIResourceArray) ToAPIResourceArrayOutputWithContext(ctx context.Context) APIResourceArrayOutput

type APIResourceArrayInput

type APIResourceArrayInput interface {
	pulumi.Input

	ToAPIResourceArrayOutput() APIResourceArrayOutput
	ToAPIResourceArrayOutputWithContext(context.Context) APIResourceArrayOutput
}

APIResourceArrayInput is an input type that accepts APIResourceArray and APIResourceArrayOutput values. You can construct a concrete instance of `APIResourceArrayInput` via:

APIResourceArray{ APIResourceArgs{...} }

type APIResourceArrayOutput

type APIResourceArrayOutput struct{ *pulumi.OutputState }

func (APIResourceArrayOutput) ElementType

func (APIResourceArrayOutput) ElementType() reflect.Type

func (APIResourceArrayOutput) Index

func (APIResourceArrayOutput) ToAPIResourceArrayOutput

func (o APIResourceArrayOutput) ToAPIResourceArrayOutput() APIResourceArrayOutput

func (APIResourceArrayOutput) ToAPIResourceArrayOutputWithContext

func (o APIResourceArrayOutput) ToAPIResourceArrayOutputWithContext(ctx context.Context) APIResourceArrayOutput

type APIResourceInput

type APIResourceInput interface {
	pulumi.Input

	ToAPIResourceOutput() APIResourceOutput
	ToAPIResourceOutputWithContext(context.Context) APIResourceOutput
}

APIResourceInput is an input type that accepts APIResourceArgs and APIResourceOutput values. You can construct a concrete instance of `APIResourceInput` via:

APIResourceArgs{...}

type APIResourceList

type APIResourceList struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// groupVersion is the group and version this APIResourceList is for.
	GroupVersion string `pulumi:"groupVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// resources contains the name of the resources and if they are namespaced.
	Resources []APIResource `pulumi:"resources"`
}

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.

type APIResourceListArgs

type APIResourceListArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// groupVersion is the group and version this APIResourceList is for.
	GroupVersion pulumi.StringInput `pulumi:"groupVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// resources contains the name of the resources and if they are namespaced.
	Resources APIResourceArrayInput `pulumi:"resources"`
}

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.

func (APIResourceListArgs) ElementType

func (APIResourceListArgs) ElementType() reflect.Type

func (APIResourceListArgs) ToAPIResourceListOutput

func (i APIResourceListArgs) ToAPIResourceListOutput() APIResourceListOutput

func (APIResourceListArgs) ToAPIResourceListOutputWithContext

func (i APIResourceListArgs) ToAPIResourceListOutputWithContext(ctx context.Context) APIResourceListOutput

type APIResourceListInput

type APIResourceListInput interface {
	pulumi.Input

	ToAPIResourceListOutput() APIResourceListOutput
	ToAPIResourceListOutputWithContext(context.Context) APIResourceListOutput
}

APIResourceListInput is an input type that accepts APIResourceListArgs and APIResourceListOutput values. You can construct a concrete instance of `APIResourceListInput` via:

APIResourceListArgs{...}

type APIResourceListOutput

type APIResourceListOutput struct{ *pulumi.OutputState }

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.

func (APIResourceListOutput) ApiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (APIResourceListOutput) ElementType

func (APIResourceListOutput) ElementType() reflect.Type

func (APIResourceListOutput) GroupVersion

func (o APIResourceListOutput) GroupVersion() pulumi.StringOutput

groupVersion is the group and version this APIResourceList is for.

func (APIResourceListOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (APIResourceListOutput) Resources

resources contains the name of the resources and if they are namespaced.

func (APIResourceListOutput) ToAPIResourceListOutput

func (o APIResourceListOutput) ToAPIResourceListOutput() APIResourceListOutput

func (APIResourceListOutput) ToAPIResourceListOutputWithContext

func (o APIResourceListOutput) ToAPIResourceListOutputWithContext(ctx context.Context) APIResourceListOutput

type APIResourceOutput

type APIResourceOutput struct{ *pulumi.OutputState }

APIResource specifies the name of a resource and whether it is namespaced.

func (APIResourceOutput) Categories

categories is a list of the grouped resources this resource belongs to (e.g. 'all')

func (APIResourceOutput) ElementType

func (APIResourceOutput) ElementType() reflect.Type

func (APIResourceOutput) Group

group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale".

func (APIResourceOutput) Kind

kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')

func (APIResourceOutput) Name

name is the plural name of the resource.

func (APIResourceOutput) Namespaced

func (o APIResourceOutput) Namespaced() pulumi.BoolOutput

namespaced indicates if a resource is namespaced or not.

func (APIResourceOutput) ShortNames

shortNames is a list of suggested short names of the resource.

func (APIResourceOutput) SingularName

func (o APIResourceOutput) SingularName() pulumi.StringOutput

singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.

func (APIResourceOutput) StorageVersionHash

func (o APIResourceOutput) StorageVersionHash() pulumi.StringPtrOutput

The hash value of the storage version, the version this resource is converted to when written to the data store. Value must be treated as opaque by clients. Only equality comparison on the value is valid. This is an alpha feature and may change or be removed in the future. The field is populated by the apiserver only if the StorageVersionHash feature gate is enabled. This field will remain optional even if it graduates.

func (APIResourceOutput) ToAPIResourceOutput

func (o APIResourceOutput) ToAPIResourceOutput() APIResourceOutput

func (APIResourceOutput) ToAPIResourceOutputWithContext

func (o APIResourceOutput) ToAPIResourceOutputWithContext(ctx context.Context) APIResourceOutput

func (APIResourceOutput) Verbs

verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)

func (APIResourceOutput) Version

version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)".

type APIVersions

type APIVersions struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
	ServerAddressByClientCIDRs []ServerAddressByClientCIDR `pulumi:"serverAddressByClientCIDRs"`
	// versions are the api versions that are available.
	Versions []string `pulumi:"versions"`
}

APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.

type APIVersionsArgs

type APIVersionsArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
	ServerAddressByClientCIDRs ServerAddressByClientCIDRArrayInput `pulumi:"serverAddressByClientCIDRs"`
	// versions are the api versions that are available.
	Versions pulumi.StringArrayInput `pulumi:"versions"`
}

APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.

func (APIVersionsArgs) ElementType

func (APIVersionsArgs) ElementType() reflect.Type

func (APIVersionsArgs) ToAPIVersionsOutput

func (i APIVersionsArgs) ToAPIVersionsOutput() APIVersionsOutput

func (APIVersionsArgs) ToAPIVersionsOutputWithContext

func (i APIVersionsArgs) ToAPIVersionsOutputWithContext(ctx context.Context) APIVersionsOutput

type APIVersionsInput

type APIVersionsInput interface {
	pulumi.Input

	ToAPIVersionsOutput() APIVersionsOutput
	ToAPIVersionsOutputWithContext(context.Context) APIVersionsOutput
}

APIVersionsInput is an input type that accepts APIVersionsArgs and APIVersionsOutput values. You can construct a concrete instance of `APIVersionsInput` via:

APIVersionsArgs{...}

type APIVersionsOutput

type APIVersionsOutput struct{ *pulumi.OutputState }

APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.

func (APIVersionsOutput) ApiVersion

func (o APIVersionsOutput) ApiVersion() pulumi.StringPtrOutput

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (APIVersionsOutput) ElementType

func (APIVersionsOutput) ElementType() reflect.Type

func (APIVersionsOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (APIVersionsOutput) ServerAddressByClientCIDRs

func (o APIVersionsOutput) ServerAddressByClientCIDRs() ServerAddressByClientCIDRArrayOutput

a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.

func (APIVersionsOutput) ToAPIVersionsOutput

func (o APIVersionsOutput) ToAPIVersionsOutput() APIVersionsOutput

func (APIVersionsOutput) ToAPIVersionsOutputWithContext

func (o APIVersionsOutput) ToAPIVersionsOutputWithContext(ctx context.Context) APIVersionsOutput

func (APIVersionsOutput) Versions

versions are the api versions that are available.

type Condition added in v2.7.4

type Condition struct {
	// lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.
	LastTransitionTime string `pulumi:"lastTransitionTime"`
	// message is a human readable message indicating details about the transition. This may be an empty string.
	Message string `pulumi:"message"`
	// observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
	ObservedGeneration *int `pulumi:"observedGeneration"`
	// reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
	Reason string `pulumi:"reason"`
	// status of the condition, one of True, False, Unknown.
	Status string `pulumi:"status"`
	// type of condition in CamelCase or in foo.example.com/CamelCase.
	Type string `pulumi:"type"`
}

Condition contains details for one aspect of the current state of this API Resource.

type ConditionArgs added in v2.7.4

type ConditionArgs struct {
	// lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed.  If that is not known, then using the time when the API field changed is acceptable.
	LastTransitionTime pulumi.StringInput `pulumi:"lastTransitionTime"`
	// message is a human readable message indicating details about the transition. This may be an empty string.
	Message pulumi.StringInput `pulumi:"message"`
	// observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.
	ObservedGeneration pulumi.IntPtrInput `pulumi:"observedGeneration"`
	// reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.
	Reason pulumi.StringInput `pulumi:"reason"`
	// status of the condition, one of True, False, Unknown.
	Status pulumi.StringInput `pulumi:"status"`
	// type of condition in CamelCase or in foo.example.com/CamelCase.
	Type pulumi.StringInput `pulumi:"type"`
}

Condition contains details for one aspect of the current state of this API Resource.

func (ConditionArgs) ElementType added in v2.7.4

func (ConditionArgs) ElementType() reflect.Type

func (ConditionArgs) ToConditionOutput added in v2.7.4

func (i ConditionArgs) ToConditionOutput() ConditionOutput

func (ConditionArgs) ToConditionOutputWithContext added in v2.7.4

func (i ConditionArgs) ToConditionOutputWithContext(ctx context.Context) ConditionOutput

type ConditionArray added in v2.7.4

type ConditionArray []ConditionInput

func (ConditionArray) ElementType added in v2.7.4

func (ConditionArray) ElementType() reflect.Type

func (ConditionArray) ToConditionArrayOutput added in v2.7.4

func (i ConditionArray) ToConditionArrayOutput() ConditionArrayOutput

func (ConditionArray) ToConditionArrayOutputWithContext added in v2.7.4

func (i ConditionArray) ToConditionArrayOutputWithContext(ctx context.Context) ConditionArrayOutput

type ConditionArrayInput added in v2.7.4

type ConditionArrayInput interface {
	pulumi.Input

	ToConditionArrayOutput() ConditionArrayOutput
	ToConditionArrayOutputWithContext(context.Context) ConditionArrayOutput
}

ConditionArrayInput is an input type that accepts ConditionArray and ConditionArrayOutput values. You can construct a concrete instance of `ConditionArrayInput` via:

ConditionArray{ ConditionArgs{...} }

type ConditionArrayOutput added in v2.7.4

type ConditionArrayOutput struct{ *pulumi.OutputState }

func (ConditionArrayOutput) ElementType added in v2.7.4

func (ConditionArrayOutput) ElementType() reflect.Type

func (ConditionArrayOutput) Index added in v2.7.4

func (ConditionArrayOutput) ToConditionArrayOutput added in v2.7.4

func (o ConditionArrayOutput) ToConditionArrayOutput() ConditionArrayOutput

func (ConditionArrayOutput) ToConditionArrayOutputWithContext added in v2.7.4

func (o ConditionArrayOutput) ToConditionArrayOutputWithContext(ctx context.Context) ConditionArrayOutput

type ConditionInput added in v2.7.4

type ConditionInput interface {
	pulumi.Input

	ToConditionOutput() ConditionOutput
	ToConditionOutputWithContext(context.Context) ConditionOutput
}

ConditionInput is an input type that accepts ConditionArgs and ConditionOutput values. You can construct a concrete instance of `ConditionInput` via:

ConditionArgs{...}

type ConditionOutput added in v2.7.4

type ConditionOutput struct{ *pulumi.OutputState }

Condition contains details for one aspect of the current state of this API Resource.

func (ConditionOutput) ElementType added in v2.7.4

func (ConditionOutput) ElementType() reflect.Type

func (ConditionOutput) LastTransitionTime added in v2.7.4

func (o ConditionOutput) LastTransitionTime() pulumi.StringOutput

lastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.

func (ConditionOutput) Message added in v2.7.4

func (o ConditionOutput) Message() pulumi.StringOutput

message is a human readable message indicating details about the transition. This may be an empty string.

func (ConditionOutput) ObservedGeneration added in v2.7.4

func (o ConditionOutput) ObservedGeneration() pulumi.IntPtrOutput

observedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date with respect to the current state of the instance.

func (ConditionOutput) Reason added in v2.7.4

func (o ConditionOutput) Reason() pulumi.StringOutput

reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.

func (ConditionOutput) Status added in v2.7.4

func (o ConditionOutput) Status() pulumi.StringOutput

status of the condition, one of True, False, Unknown.

func (ConditionOutput) ToConditionOutput added in v2.7.4

func (o ConditionOutput) ToConditionOutput() ConditionOutput

func (ConditionOutput) ToConditionOutputWithContext added in v2.7.4

func (o ConditionOutput) ToConditionOutputWithContext(ctx context.Context) ConditionOutput

func (ConditionOutput) Type added in v2.7.4

type of condition in CamelCase or in foo.example.com/CamelCase.

type DeleteOptions

type DeleteOptions struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
	DryRun []string `pulumi:"dryRun"`
	// The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
	GracePeriodSeconds *int `pulumi:"gracePeriodSeconds"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
	OrphanDependents *bool `pulumi:"orphanDependents"`
	// Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.
	Preconditions *Preconditions `pulumi:"preconditions"`
	// Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
	PropagationPolicy *string `pulumi:"propagationPolicy"`
}

DeleteOptions may be provided when deleting an API object.

type DeleteOptionsArgs

type DeleteOptionsArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed
	DryRun pulumi.StringArrayInput `pulumi:"dryRun"`
	// The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.
	GracePeriodSeconds pulumi.IntPtrInput `pulumi:"gracePeriodSeconds"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.
	OrphanDependents pulumi.BoolPtrInput `pulumi:"orphanDependents"`
	// Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.
	Preconditions PreconditionsPtrInput `pulumi:"preconditions"`
	// Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.
	PropagationPolicy pulumi.StringPtrInput `pulumi:"propagationPolicy"`
}

DeleteOptions may be provided when deleting an API object.

func (DeleteOptionsArgs) ElementType

func (DeleteOptionsArgs) ElementType() reflect.Type

func (DeleteOptionsArgs) ToDeleteOptionsOutput

func (i DeleteOptionsArgs) ToDeleteOptionsOutput() DeleteOptionsOutput

func (DeleteOptionsArgs) ToDeleteOptionsOutputWithContext

func (i DeleteOptionsArgs) ToDeleteOptionsOutputWithContext(ctx context.Context) DeleteOptionsOutput

func (DeleteOptionsArgs) ToDeleteOptionsPtrOutput

func (i DeleteOptionsArgs) ToDeleteOptionsPtrOutput() DeleteOptionsPtrOutput

func (DeleteOptionsArgs) ToDeleteOptionsPtrOutputWithContext

func (i DeleteOptionsArgs) ToDeleteOptionsPtrOutputWithContext(ctx context.Context) DeleteOptionsPtrOutput

type DeleteOptionsInput

type DeleteOptionsInput interface {
	pulumi.Input

	ToDeleteOptionsOutput() DeleteOptionsOutput
	ToDeleteOptionsOutputWithContext(context.Context) DeleteOptionsOutput
}

DeleteOptionsInput is an input type that accepts DeleteOptionsArgs and DeleteOptionsOutput values. You can construct a concrete instance of `DeleteOptionsInput` via:

DeleteOptionsArgs{...}

type DeleteOptionsOutput

type DeleteOptionsOutput struct{ *pulumi.OutputState }

DeleteOptions may be provided when deleting an API object.

func (DeleteOptionsOutput) ApiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (DeleteOptionsOutput) DryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

func (DeleteOptionsOutput) ElementType

func (DeleteOptionsOutput) ElementType() reflect.Type

func (DeleteOptionsOutput) GracePeriodSeconds

func (o DeleteOptionsOutput) GracePeriodSeconds() pulumi.IntPtrOutput

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

func (DeleteOptionsOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (DeleteOptionsOutput) OrphanDependents deprecated

func (o DeleteOptionsOutput) OrphanDependents() pulumi.BoolPtrOutput

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

func (DeleteOptionsOutput) Preconditions

func (o DeleteOptionsOutput) Preconditions() PreconditionsPtrOutput

Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

func (DeleteOptionsOutput) PropagationPolicy

func (o DeleteOptionsOutput) PropagationPolicy() pulumi.StringPtrOutput

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.

func (DeleteOptionsOutput) ToDeleteOptionsOutput

func (o DeleteOptionsOutput) ToDeleteOptionsOutput() DeleteOptionsOutput

func (DeleteOptionsOutput) ToDeleteOptionsOutputWithContext

func (o DeleteOptionsOutput) ToDeleteOptionsOutputWithContext(ctx context.Context) DeleteOptionsOutput

func (DeleteOptionsOutput) ToDeleteOptionsPtrOutput

func (o DeleteOptionsOutput) ToDeleteOptionsPtrOutput() DeleteOptionsPtrOutput

func (DeleteOptionsOutput) ToDeleteOptionsPtrOutputWithContext

func (o DeleteOptionsOutput) ToDeleteOptionsPtrOutputWithContext(ctx context.Context) DeleteOptionsPtrOutput

type DeleteOptionsPtrInput

type DeleteOptionsPtrInput interface {
	pulumi.Input

	ToDeleteOptionsPtrOutput() DeleteOptionsPtrOutput
	ToDeleteOptionsPtrOutputWithContext(context.Context) DeleteOptionsPtrOutput
}

DeleteOptionsPtrInput is an input type that accepts DeleteOptionsArgs, DeleteOptionsPtr and DeleteOptionsPtrOutput values. You can construct a concrete instance of `DeleteOptionsPtrInput` via:

        DeleteOptionsArgs{...}

or:

        nil

type DeleteOptionsPtrOutput

type DeleteOptionsPtrOutput struct{ *pulumi.OutputState }

func (DeleteOptionsPtrOutput) ApiVersion

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (DeleteOptionsPtrOutput) DryRun

When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed

func (DeleteOptionsPtrOutput) Elem

func (DeleteOptionsPtrOutput) ElementType

func (DeleteOptionsPtrOutput) ElementType() reflect.Type

func (DeleteOptionsPtrOutput) GracePeriodSeconds

func (o DeleteOptionsPtrOutput) GracePeriodSeconds() pulumi.IntPtrOutput

The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.

func (DeleteOptionsPtrOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (DeleteOptionsPtrOutput) OrphanDependents deprecated

func (o DeleteOptionsPtrOutput) OrphanDependents() pulumi.BoolPtrOutput

Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the "orphan" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.

func (DeleteOptionsPtrOutput) Preconditions

Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.

func (DeleteOptionsPtrOutput) PropagationPolicy

func (o DeleteOptionsPtrOutput) PropagationPolicy() pulumi.StringPtrOutput

Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy. Acceptable values are: 'Orphan' - orphan the dependents; 'Background' - allow the garbage collector to delete the dependents in the background; 'Foreground' - a cascading policy that deletes all dependents in the foreground.

func (DeleteOptionsPtrOutput) ToDeleteOptionsPtrOutput

func (o DeleteOptionsPtrOutput) ToDeleteOptionsPtrOutput() DeleteOptionsPtrOutput

func (DeleteOptionsPtrOutput) ToDeleteOptionsPtrOutputWithContext

func (o DeleteOptionsPtrOutput) ToDeleteOptionsPtrOutputWithContext(ctx context.Context) DeleteOptionsPtrOutput

type GroupVersionForDiscovery

type GroupVersionForDiscovery struct {
	// groupVersion specifies the API group and version in the form "group/version"
	GroupVersion string `pulumi:"groupVersion"`
	// version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion.
	Version string `pulumi:"version"`
}

GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility.

type GroupVersionForDiscoveryArgs

type GroupVersionForDiscoveryArgs struct {
	// groupVersion specifies the API group and version in the form "group/version"
	GroupVersion pulumi.StringInput `pulumi:"groupVersion"`
	// version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion.
	Version pulumi.StringInput `pulumi:"version"`
}

GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility.

func (GroupVersionForDiscoveryArgs) ElementType

func (GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryOutput

func (i GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryOutput() GroupVersionForDiscoveryOutput

func (GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryOutputWithContext

func (i GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryOutputWithContext(ctx context.Context) GroupVersionForDiscoveryOutput

func (GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryPtrOutput

func (i GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryPtrOutput() GroupVersionForDiscoveryPtrOutput

func (GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryPtrOutputWithContext

func (i GroupVersionForDiscoveryArgs) ToGroupVersionForDiscoveryPtrOutputWithContext(ctx context.Context) GroupVersionForDiscoveryPtrOutput

type GroupVersionForDiscoveryArray

type GroupVersionForDiscoveryArray []GroupVersionForDiscoveryInput

func (GroupVersionForDiscoveryArray) ElementType

func (GroupVersionForDiscoveryArray) ToGroupVersionForDiscoveryArrayOutput

func (i GroupVersionForDiscoveryArray) ToGroupVersionForDiscoveryArrayOutput() GroupVersionForDiscoveryArrayOutput

func (GroupVersionForDiscoveryArray) ToGroupVersionForDiscoveryArrayOutputWithContext

func (i GroupVersionForDiscoveryArray) ToGroupVersionForDiscoveryArrayOutputWithContext(ctx context.Context) GroupVersionForDiscoveryArrayOutput

type GroupVersionForDiscoveryArrayInput

type GroupVersionForDiscoveryArrayInput interface {
	pulumi.Input

	ToGroupVersionForDiscoveryArrayOutput() GroupVersionForDiscoveryArrayOutput
	ToGroupVersionForDiscoveryArrayOutputWithContext(context.Context) GroupVersionForDiscoveryArrayOutput
}

GroupVersionForDiscoveryArrayInput is an input type that accepts GroupVersionForDiscoveryArray and GroupVersionForDiscoveryArrayOutput values. You can construct a concrete instance of `GroupVersionForDiscoveryArrayInput` via:

GroupVersionForDiscoveryArray{ GroupVersionForDiscoveryArgs{...} }

type GroupVersionForDiscoveryArrayOutput

type GroupVersionForDiscoveryArrayOutput struct{ *pulumi.OutputState }

func (GroupVersionForDiscoveryArrayOutput) ElementType

func (GroupVersionForDiscoveryArrayOutput) Index

func (GroupVersionForDiscoveryArrayOutput) ToGroupVersionForDiscoveryArrayOutput

func (o GroupVersionForDiscoveryArrayOutput) ToGroupVersionForDiscoveryArrayOutput() GroupVersionForDiscoveryArrayOutput

func (GroupVersionForDiscoveryArrayOutput) ToGroupVersionForDiscoveryArrayOutputWithContext

func (o GroupVersionForDiscoveryArrayOutput) ToGroupVersionForDiscoveryArrayOutputWithContext(ctx context.Context) GroupVersionForDiscoveryArrayOutput

type GroupVersionForDiscoveryInput

type GroupVersionForDiscoveryInput interface {
	pulumi.Input

	ToGroupVersionForDiscoveryOutput() GroupVersionForDiscoveryOutput
	ToGroupVersionForDiscoveryOutputWithContext(context.Context) GroupVersionForDiscoveryOutput
}

GroupVersionForDiscoveryInput is an input type that accepts GroupVersionForDiscoveryArgs and GroupVersionForDiscoveryOutput values. You can construct a concrete instance of `GroupVersionForDiscoveryInput` via:

GroupVersionForDiscoveryArgs{...}

type GroupVersionForDiscoveryOutput

type GroupVersionForDiscoveryOutput struct{ *pulumi.OutputState }

GroupVersion contains the "group/version" and "version" string of a version. It is made a struct to keep extensibility.

func (GroupVersionForDiscoveryOutput) ElementType

func (GroupVersionForDiscoveryOutput) GroupVersion

groupVersion specifies the API group and version in the form "group/version"

func (GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryOutput

func (o GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryOutput() GroupVersionForDiscoveryOutput

func (GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryOutputWithContext

func (o GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryOutputWithContext(ctx context.Context) GroupVersionForDiscoveryOutput

func (GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryPtrOutput

func (o GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryPtrOutput() GroupVersionForDiscoveryPtrOutput

func (GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryPtrOutputWithContext

func (o GroupVersionForDiscoveryOutput) ToGroupVersionForDiscoveryPtrOutputWithContext(ctx context.Context) GroupVersionForDiscoveryPtrOutput

func (GroupVersionForDiscoveryOutput) Version

version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion.

type GroupVersionForDiscoveryPtrInput

type GroupVersionForDiscoveryPtrInput interface {
	pulumi.Input

	ToGroupVersionForDiscoveryPtrOutput() GroupVersionForDiscoveryPtrOutput
	ToGroupVersionForDiscoveryPtrOutputWithContext(context.Context) GroupVersionForDiscoveryPtrOutput
}

GroupVersionForDiscoveryPtrInput is an input type that accepts GroupVersionForDiscoveryArgs, GroupVersionForDiscoveryPtr and GroupVersionForDiscoveryPtrOutput values. You can construct a concrete instance of `GroupVersionForDiscoveryPtrInput` via:

        GroupVersionForDiscoveryArgs{...}

or:

        nil

type GroupVersionForDiscoveryPtrOutput

type GroupVersionForDiscoveryPtrOutput struct{ *pulumi.OutputState }

func (GroupVersionForDiscoveryPtrOutput) Elem

func (GroupVersionForDiscoveryPtrOutput) ElementType

func (GroupVersionForDiscoveryPtrOutput) GroupVersion

groupVersion specifies the API group and version in the form "group/version"

func (GroupVersionForDiscoveryPtrOutput) ToGroupVersionForDiscoveryPtrOutput

func (o GroupVersionForDiscoveryPtrOutput) ToGroupVersionForDiscoveryPtrOutput() GroupVersionForDiscoveryPtrOutput

func (GroupVersionForDiscoveryPtrOutput) ToGroupVersionForDiscoveryPtrOutputWithContext

func (o GroupVersionForDiscoveryPtrOutput) ToGroupVersionForDiscoveryPtrOutputWithContext(ctx context.Context) GroupVersionForDiscoveryPtrOutput

func (GroupVersionForDiscoveryPtrOutput) Version

version specifies the version in the form of "version". This is to save the clients the trouble of splitting the GroupVersion.

type LabelSelector

type LabelSelector struct {
	// matchExpressions is a list of label selector requirements. The requirements are ANDed.
	MatchExpressions []LabelSelectorRequirement `pulumi:"matchExpressions"`
	// matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
	MatchLabels map[string]string `pulumi:"matchLabels"`
}

A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.

type LabelSelectorArgs

type LabelSelectorArgs struct {
	// matchExpressions is a list of label selector requirements. The requirements are ANDed.
	MatchExpressions LabelSelectorRequirementArrayInput `pulumi:"matchExpressions"`
	// matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
	MatchLabels pulumi.StringMapInput `pulumi:"matchLabels"`
}

A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.

func (LabelSelectorArgs) ElementType

func (LabelSelectorArgs) ElementType() reflect.Type

func (LabelSelectorArgs) ToLabelSelectorOutput

func (i LabelSelectorArgs) ToLabelSelectorOutput() LabelSelectorOutput

func (LabelSelectorArgs) ToLabelSelectorOutputWithContext

func (i LabelSelectorArgs) ToLabelSelectorOutputWithContext(ctx context.Context) LabelSelectorOutput

func (LabelSelectorArgs) ToLabelSelectorPtrOutput

func (i LabelSelectorArgs) ToLabelSelectorPtrOutput() LabelSelectorPtrOutput

func (LabelSelectorArgs) ToLabelSelectorPtrOutputWithContext

func (i LabelSelectorArgs) ToLabelSelectorPtrOutputWithContext(ctx context.Context) LabelSelectorPtrOutput

type LabelSelectorArray

type LabelSelectorArray []LabelSelectorInput

func (LabelSelectorArray) ElementType

func (LabelSelectorArray) ElementType() reflect.Type

func (LabelSelectorArray) ToLabelSelectorArrayOutput

func (i LabelSelectorArray) ToLabelSelectorArrayOutput() LabelSelectorArrayOutput

func (LabelSelectorArray) ToLabelSelectorArrayOutputWithContext

func (i LabelSelectorArray) ToLabelSelectorArrayOutputWithContext(ctx context.Context) LabelSelectorArrayOutput

type LabelSelectorArrayInput

type LabelSelectorArrayInput interface {
	pulumi.Input

	ToLabelSelectorArrayOutput() LabelSelectorArrayOutput
	ToLabelSelectorArrayOutputWithContext(context.Context) LabelSelectorArrayOutput
}

LabelSelectorArrayInput is an input type that accepts LabelSelectorArray and LabelSelectorArrayOutput values. You can construct a concrete instance of `LabelSelectorArrayInput` via:

LabelSelectorArray{ LabelSelectorArgs{...} }

type LabelSelectorArrayOutput

type LabelSelectorArrayOutput struct{ *pulumi.OutputState }

func (LabelSelectorArrayOutput) ElementType

func (LabelSelectorArrayOutput) ElementType() reflect.Type

func (LabelSelectorArrayOutput) Index

func (LabelSelectorArrayOutput) ToLabelSelectorArrayOutput

func (o LabelSelectorArrayOutput) ToLabelSelectorArrayOutput() LabelSelectorArrayOutput

func (LabelSelectorArrayOutput) ToLabelSelectorArrayOutputWithContext

func (o LabelSelectorArrayOutput) ToLabelSelectorArrayOutputWithContext(ctx context.Context) LabelSelectorArrayOutput

type LabelSelectorInput

type LabelSelectorInput interface {
	pulumi.Input

	ToLabelSelectorOutput() LabelSelectorOutput
	ToLabelSelectorOutputWithContext(context.Context) LabelSelectorOutput
}

LabelSelectorInput is an input type that accepts LabelSelectorArgs and LabelSelectorOutput values. You can construct a concrete instance of `LabelSelectorInput` via:

LabelSelectorArgs{...}

type LabelSelectorOutput

type LabelSelectorOutput struct{ *pulumi.OutputState }

A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.

func (LabelSelectorOutput) ElementType

func (LabelSelectorOutput) ElementType() reflect.Type

func (LabelSelectorOutput) MatchExpressions

matchExpressions is a list of label selector requirements. The requirements are ANDed.

func (LabelSelectorOutput) MatchLabels

func (o LabelSelectorOutput) MatchLabels() pulumi.StringMapOutput

matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

func (LabelSelectorOutput) ToLabelSelectorOutput

func (o LabelSelectorOutput) ToLabelSelectorOutput() LabelSelectorOutput

func (LabelSelectorOutput) ToLabelSelectorOutputWithContext

func (o LabelSelectorOutput) ToLabelSelectorOutputWithContext(ctx context.Context) LabelSelectorOutput

func (LabelSelectorOutput) ToLabelSelectorPtrOutput

func (o LabelSelectorOutput) ToLabelSelectorPtrOutput() LabelSelectorPtrOutput

func (LabelSelectorOutput) ToLabelSelectorPtrOutputWithContext

func (o LabelSelectorOutput) ToLabelSelectorPtrOutputWithContext(ctx context.Context) LabelSelectorPtrOutput

type LabelSelectorPtrInput

type LabelSelectorPtrInput interface {
	pulumi.Input

	ToLabelSelectorPtrOutput() LabelSelectorPtrOutput
	ToLabelSelectorPtrOutputWithContext(context.Context) LabelSelectorPtrOutput
}

LabelSelectorPtrInput is an input type that accepts LabelSelectorArgs, LabelSelectorPtr and LabelSelectorPtrOutput values. You can construct a concrete instance of `LabelSelectorPtrInput` via:

        LabelSelectorArgs{...}

or:

        nil

type LabelSelectorPtrOutput

type LabelSelectorPtrOutput struct{ *pulumi.OutputState }

func (LabelSelectorPtrOutput) Elem

func (LabelSelectorPtrOutput) ElementType

func (LabelSelectorPtrOutput) ElementType() reflect.Type

func (LabelSelectorPtrOutput) MatchExpressions

matchExpressions is a list of label selector requirements. The requirements are ANDed.

func (LabelSelectorPtrOutput) MatchLabels

matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

func (LabelSelectorPtrOutput) ToLabelSelectorPtrOutput

func (o LabelSelectorPtrOutput) ToLabelSelectorPtrOutput() LabelSelectorPtrOutput

func (LabelSelectorPtrOutput) ToLabelSelectorPtrOutputWithContext

func (o LabelSelectorPtrOutput) ToLabelSelectorPtrOutputWithContext(ctx context.Context) LabelSelectorPtrOutput

type LabelSelectorRequirement

type LabelSelectorRequirement struct {
	// key is the label key that the selector applies to.
	Key string `pulumi:"key"`
	// operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
	Operator string `pulumi:"operator"`
	// values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
	Values []string `pulumi:"values"`
}

A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

type LabelSelectorRequirementArgs

type LabelSelectorRequirementArgs struct {
	// key is the label key that the selector applies to.
	Key pulumi.StringInput `pulumi:"key"`
	// operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.
	Operator pulumi.StringInput `pulumi:"operator"`
	// values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
	Values pulumi.StringArrayInput `pulumi:"values"`
}

A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

func (LabelSelectorRequirementArgs) ElementType

func (LabelSelectorRequirementArgs) ToLabelSelectorRequirementOutput

func (i LabelSelectorRequirementArgs) ToLabelSelectorRequirementOutput() LabelSelectorRequirementOutput

func (LabelSelectorRequirementArgs) ToLabelSelectorRequirementOutputWithContext

func (i LabelSelectorRequirementArgs) ToLabelSelectorRequirementOutputWithContext(ctx context.Context) LabelSelectorRequirementOutput

type LabelSelectorRequirementArray

type LabelSelectorRequirementArray []LabelSelectorRequirementInput

func (LabelSelectorRequirementArray) ElementType

func (LabelSelectorRequirementArray) ToLabelSelectorRequirementArrayOutput

func (i LabelSelectorRequirementArray) ToLabelSelectorRequirementArrayOutput() LabelSelectorRequirementArrayOutput

func (LabelSelectorRequirementArray) ToLabelSelectorRequirementArrayOutputWithContext

func (i LabelSelectorRequirementArray) ToLabelSelectorRequirementArrayOutputWithContext(ctx context.Context) LabelSelectorRequirementArrayOutput

type LabelSelectorRequirementArrayInput

type LabelSelectorRequirementArrayInput interface {
	pulumi.Input

	ToLabelSelectorRequirementArrayOutput() LabelSelectorRequirementArrayOutput
	ToLabelSelectorRequirementArrayOutputWithContext(context.Context) LabelSelectorRequirementArrayOutput
}

LabelSelectorRequirementArrayInput is an input type that accepts LabelSelectorRequirementArray and LabelSelectorRequirementArrayOutput values. You can construct a concrete instance of `LabelSelectorRequirementArrayInput` via:

LabelSelectorRequirementArray{ LabelSelectorRequirementArgs{...} }

type LabelSelectorRequirementArrayOutput

type LabelSelectorRequirementArrayOutput struct{ *pulumi.OutputState }

func (LabelSelectorRequirementArrayOutput) ElementType

func (LabelSelectorRequirementArrayOutput) Index

func (LabelSelectorRequirementArrayOutput) ToLabelSelectorRequirementArrayOutput

func (o LabelSelectorRequirementArrayOutput) ToLabelSelectorRequirementArrayOutput() LabelSelectorRequirementArrayOutput

func (LabelSelectorRequirementArrayOutput) ToLabelSelectorRequirementArrayOutputWithContext

func (o LabelSelectorRequirementArrayOutput) ToLabelSelectorRequirementArrayOutputWithContext(ctx context.Context) LabelSelectorRequirementArrayOutput

type LabelSelectorRequirementInput

type LabelSelectorRequirementInput interface {
	pulumi.Input

	ToLabelSelectorRequirementOutput() LabelSelectorRequirementOutput
	ToLabelSelectorRequirementOutputWithContext(context.Context) LabelSelectorRequirementOutput
}

LabelSelectorRequirementInput is an input type that accepts LabelSelectorRequirementArgs and LabelSelectorRequirementOutput values. You can construct a concrete instance of `LabelSelectorRequirementInput` via:

LabelSelectorRequirementArgs{...}

type LabelSelectorRequirementOutput

type LabelSelectorRequirementOutput struct{ *pulumi.OutputState }

A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.

func (LabelSelectorRequirementOutput) ElementType

func (LabelSelectorRequirementOutput) Key

key is the label key that the selector applies to.

func (LabelSelectorRequirementOutput) Operator

operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.

func (LabelSelectorRequirementOutput) ToLabelSelectorRequirementOutput

func (o LabelSelectorRequirementOutput) ToLabelSelectorRequirementOutput() LabelSelectorRequirementOutput

func (LabelSelectorRequirementOutput) ToLabelSelectorRequirementOutputWithContext

func (o LabelSelectorRequirementOutput) ToLabelSelectorRequirementOutputWithContext(ctx context.Context) LabelSelectorRequirementOutput

func (LabelSelectorRequirementOutput) Values

values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

type ListMeta

type ListMeta struct {
	// continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.
	Continue *string `pulumi:"continue"`
	// remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.
	RemainingItemCount *int `pulumi:"remainingItemCount"`
	// String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
	ResourceVersion *string `pulumi:"resourceVersion"`
	// selfLink is a URL representing this object. Populated by the system. Read-only.
	//
	// DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.
	SelfLink *string `pulumi:"selfLink"`
}

ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

type ListMetaArgs

type ListMetaArgs struct {
	// continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.
	Continue pulumi.StringPtrInput `pulumi:"continue"`
	// remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.
	RemainingItemCount pulumi.IntPtrInput `pulumi:"remainingItemCount"`
	// String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
	ResourceVersion pulumi.StringPtrInput `pulumi:"resourceVersion"`
	// selfLink is a URL representing this object. Populated by the system. Read-only.
	//
	// DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.
	SelfLink pulumi.StringPtrInput `pulumi:"selfLink"`
}

ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

func (ListMetaArgs) ElementType

func (ListMetaArgs) ElementType() reflect.Type

func (ListMetaArgs) ToListMetaOutput

func (i ListMetaArgs) ToListMetaOutput() ListMetaOutput

func (ListMetaArgs) ToListMetaOutputWithContext

func (i ListMetaArgs) ToListMetaOutputWithContext(ctx context.Context) ListMetaOutput

func (ListMetaArgs) ToListMetaPtrOutput

func (i ListMetaArgs) ToListMetaPtrOutput() ListMetaPtrOutput

func (ListMetaArgs) ToListMetaPtrOutputWithContext

func (i ListMetaArgs) ToListMetaPtrOutputWithContext(ctx context.Context) ListMetaPtrOutput

type ListMetaInput

type ListMetaInput interface {
	pulumi.Input

	ToListMetaOutput() ListMetaOutput
	ToListMetaOutputWithContext(context.Context) ListMetaOutput
}

ListMetaInput is an input type that accepts ListMetaArgs and ListMetaOutput values. You can construct a concrete instance of `ListMetaInput` via:

ListMetaArgs{...}

type ListMetaOutput

type ListMetaOutput struct{ *pulumi.OutputState }

ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.

func (ListMetaOutput) Continue

func (o ListMetaOutput) Continue() pulumi.StringPtrOutput

continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.

func (ListMetaOutput) ElementType

func (ListMetaOutput) ElementType() reflect.Type

func (ListMetaOutput) RemainingItemCount

func (o ListMetaOutput) RemainingItemCount() pulumi.IntPtrOutput

remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.

func (ListMetaOutput) ResourceVersion

func (o ListMetaOutput) ResourceVersion() pulumi.StringPtrOutput

String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

func (o ListMetaOutput) SelfLink() pulumi.StringPtrOutput

selfLink is a URL representing this object. Populated by the system. Read-only.

DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.

func (ListMetaOutput) ToListMetaOutput

func (o ListMetaOutput) ToListMetaOutput() ListMetaOutput

func (ListMetaOutput) ToListMetaOutputWithContext

func (o ListMetaOutput) ToListMetaOutputWithContext(ctx context.Context) ListMetaOutput

func (ListMetaOutput) ToListMetaPtrOutput

func (o ListMetaOutput) ToListMetaPtrOutput() ListMetaPtrOutput

func (ListMetaOutput) ToListMetaPtrOutputWithContext

func (o ListMetaOutput) ToListMetaPtrOutputWithContext(ctx context.Context) ListMetaPtrOutput

type ListMetaPtrInput

type ListMetaPtrInput interface {
	pulumi.Input

	ToListMetaPtrOutput() ListMetaPtrOutput
	ToListMetaPtrOutputWithContext(context.Context) ListMetaPtrOutput
}

ListMetaPtrInput is an input type that accepts ListMetaArgs, ListMetaPtr and ListMetaPtrOutput values. You can construct a concrete instance of `ListMetaPtrInput` via:

        ListMetaArgs{...}

or:

        nil

func ListMetaPtr

func ListMetaPtr(v *ListMetaArgs) ListMetaPtrInput

type ListMetaPtrOutput

type ListMetaPtrOutput struct{ *pulumi.OutputState }

func (ListMetaPtrOutput) Continue

continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response, unless you have received this token from an error message.

func (ListMetaPtrOutput) Elem

func (ListMetaPtrOutput) ElementType

func (ListMetaPtrOutput) ElementType() reflect.Type

func (ListMetaPtrOutput) RemainingItemCount

func (o ListMetaPtrOutput) RemainingItemCount() pulumi.IntPtrOutput

remainingItemCount is the number of subsequent items in the list which are not included in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the size of a collection. Clients should not rely on the remainingItemCount to be set or to be exact.

func (ListMetaPtrOutput) ResourceVersion

func (o ListMetaPtrOutput) ResourceVersion() pulumi.StringPtrOutput

String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

selfLink is a URL representing this object. Populated by the system. Read-only.

DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.

func (ListMetaPtrOutput) ToListMetaPtrOutput

func (o ListMetaPtrOutput) ToListMetaPtrOutput() ListMetaPtrOutput

func (ListMetaPtrOutput) ToListMetaPtrOutputWithContext

func (o ListMetaPtrOutput) ToListMetaPtrOutputWithContext(ctx context.Context) ListMetaPtrOutput

type ManagedFieldsEntry

type ManagedFieldsEntry struct {
	// APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
	ApiVersion *string `pulumi:"apiVersion"`
	// FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
	FieldsType *string `pulumi:"fieldsType"`
	// FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
	FieldsV1 interface{} `pulumi:"fieldsV1"`
	// Manager is an identifier of the workflow managing these fields.
	Manager *string `pulumi:"manager"`
	// Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
	Operation *string `pulumi:"operation"`
	// Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'
	Time *string `pulumi:"time"`
}

ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.

type ManagedFieldsEntryArgs

type ManagedFieldsEntryArgs struct {
	// APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"
	FieldsType pulumi.StringPtrInput `pulumi:"fieldsType"`
	// FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.
	FieldsV1 pulumi.Input `pulumi:"fieldsV1"`
	// Manager is an identifier of the workflow managing these fields.
	Manager pulumi.StringPtrInput `pulumi:"manager"`
	// Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.
	Operation pulumi.StringPtrInput `pulumi:"operation"`
	// Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'
	Time pulumi.StringPtrInput `pulumi:"time"`
}

ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.

func (ManagedFieldsEntryArgs) ElementType

func (ManagedFieldsEntryArgs) ElementType() reflect.Type

func (ManagedFieldsEntryArgs) ToManagedFieldsEntryOutput

func (i ManagedFieldsEntryArgs) ToManagedFieldsEntryOutput() ManagedFieldsEntryOutput

func (ManagedFieldsEntryArgs) ToManagedFieldsEntryOutputWithContext

func (i ManagedFieldsEntryArgs) ToManagedFieldsEntryOutputWithContext(ctx context.Context) ManagedFieldsEntryOutput

type ManagedFieldsEntryArray

type ManagedFieldsEntryArray []ManagedFieldsEntryInput

func (ManagedFieldsEntryArray) ElementType

func (ManagedFieldsEntryArray) ElementType() reflect.Type

func (ManagedFieldsEntryArray) ToManagedFieldsEntryArrayOutput

func (i ManagedFieldsEntryArray) ToManagedFieldsEntryArrayOutput() ManagedFieldsEntryArrayOutput

func (ManagedFieldsEntryArray) ToManagedFieldsEntryArrayOutputWithContext

func (i ManagedFieldsEntryArray) ToManagedFieldsEntryArrayOutputWithContext(ctx context.Context) ManagedFieldsEntryArrayOutput

type ManagedFieldsEntryArrayInput

type ManagedFieldsEntryArrayInput interface {
	pulumi.Input

	ToManagedFieldsEntryArrayOutput() ManagedFieldsEntryArrayOutput
	ToManagedFieldsEntryArrayOutputWithContext(context.Context) ManagedFieldsEntryArrayOutput
}

ManagedFieldsEntryArrayInput is an input type that accepts ManagedFieldsEntryArray and ManagedFieldsEntryArrayOutput values. You can construct a concrete instance of `ManagedFieldsEntryArrayInput` via:

ManagedFieldsEntryArray{ ManagedFieldsEntryArgs{...} }

type ManagedFieldsEntryArrayOutput

type ManagedFieldsEntryArrayOutput struct{ *pulumi.OutputState }

func (ManagedFieldsEntryArrayOutput) ElementType

func (ManagedFieldsEntryArrayOutput) Index

func (ManagedFieldsEntryArrayOutput) ToManagedFieldsEntryArrayOutput

func (o ManagedFieldsEntryArrayOutput) ToManagedFieldsEntryArrayOutput() ManagedFieldsEntryArrayOutput

func (ManagedFieldsEntryArrayOutput) ToManagedFieldsEntryArrayOutputWithContext

func (o ManagedFieldsEntryArrayOutput) ToManagedFieldsEntryArrayOutputWithContext(ctx context.Context) ManagedFieldsEntryArrayOutput

type ManagedFieldsEntryInput

type ManagedFieldsEntryInput interface {
	pulumi.Input

	ToManagedFieldsEntryOutput() ManagedFieldsEntryOutput
	ToManagedFieldsEntryOutputWithContext(context.Context) ManagedFieldsEntryOutput
}

ManagedFieldsEntryInput is an input type that accepts ManagedFieldsEntryArgs and ManagedFieldsEntryOutput values. You can construct a concrete instance of `ManagedFieldsEntryInput` via:

ManagedFieldsEntryArgs{...}

type ManagedFieldsEntryOutput

type ManagedFieldsEntryOutput struct{ *pulumi.OutputState }

ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource that the fieldset applies to.

func (ManagedFieldsEntryOutput) ApiVersion

APIVersion defines the version of this resource that this field set applies to. The format is "group/version" just like the top-level APIVersion field. It is necessary to track the version of a field set because it cannot be automatically converted.

func (ManagedFieldsEntryOutput) ElementType

func (ManagedFieldsEntryOutput) ElementType() reflect.Type

func (ManagedFieldsEntryOutput) FieldsType

FieldsType is the discriminator for the different fields format and version. There is currently only one possible value: "FieldsV1"

func (ManagedFieldsEntryOutput) FieldsV1

FieldsV1 holds the first JSON version format as described in the "FieldsV1" type.

func (ManagedFieldsEntryOutput) Manager

Manager is an identifier of the workflow managing these fields.

func (ManagedFieldsEntryOutput) Operation

Operation is the type of operation which lead to this ManagedFieldsEntry being created. The only valid values for this field are 'Apply' and 'Update'.

func (ManagedFieldsEntryOutput) Time

Time is timestamp of when these fields were set. It should always be empty if Operation is 'Apply'

func (ManagedFieldsEntryOutput) ToManagedFieldsEntryOutput

func (o ManagedFieldsEntryOutput) ToManagedFieldsEntryOutput() ManagedFieldsEntryOutput

func (ManagedFieldsEntryOutput) ToManagedFieldsEntryOutputWithContext

func (o ManagedFieldsEntryOutput) ToManagedFieldsEntryOutputWithContext(ctx context.Context) ManagedFieldsEntryOutput

type ObjectMeta

type ObjectMeta struct {
	// Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations
	Annotations map[string]string `pulumi:"annotations"`
	// The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
	ClusterName *string `pulumi:"clusterName"`
	// CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
	//
	// Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	CreationTimestamp *string `pulumi:"creationTimestamp"`
	// Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
	DeletionGracePeriodSeconds *int `pulumi:"deletionGracePeriodSeconds"`
	// DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
	//
	// Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	DeletionTimestamp *string `pulumi:"deletionTimestamp"`
	// Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
	Finalizers []string `pulumi:"finalizers"`
	// GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.
	//
	// If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).
	//
	// Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
	GenerateName *string `pulumi:"generateName"`
	// A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
	Generation *int `pulumi:"generation"`
	// Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
	Labels map[string]string `pulumi:"labels"`
	// ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
	ManagedFields []ManagedFieldsEntry `pulumi:"managedFields"`
	// Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name *string `pulumi:"name"`
	// Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.
	//
	// Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces
	Namespace *string `pulumi:"namespace"`
	// List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
	OwnerReferences []OwnerReference `pulumi:"ownerReferences"`
	// An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.
	//
	// Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
	ResourceVersion *string `pulumi:"resourceVersion"`
	// SelfLink is a URL representing this object. Populated by the system. Read-only.
	//
	// DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.
	SelfLink *string `pulumi:"selfLink"`
	// UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.
	//
	// Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	Uid *string `pulumi:"uid"`
}

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

type ObjectMetaArgs

type ObjectMetaArgs struct {
	// Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations
	Annotations pulumi.StringMapInput `pulumi:"annotations"`
	// The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.
	ClusterName pulumi.StringPtrInput `pulumi:"clusterName"`
	// CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.
	//
	// Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	CreationTimestamp pulumi.StringPtrInput `pulumi:"creationTimestamp"`
	// Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.
	DeletionGracePeriodSeconds pulumi.IntPtrInput `pulumi:"deletionGracePeriodSeconds"`
	// DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.
	//
	// Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	DeletionTimestamp pulumi.StringPtrInput `pulumi:"deletionTimestamp"`
	// Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.
	Finalizers pulumi.StringArrayInput `pulumi:"finalizers"`
	// GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.
	//
	// If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).
	//
	// Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
	GenerateName pulumi.StringPtrInput `pulumi:"generateName"`
	// A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.
	Generation pulumi.IntPtrInput `pulumi:"generation"`
	// Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
	Labels pulumi.StringMapInput `pulumi:"labels"`
	// ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.
	ManagedFields ManagedFieldsEntryArrayInput `pulumi:"managedFields"`
	// Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name pulumi.StringPtrInput `pulumi:"name"`
	// Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.
	//
	// Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces
	Namespace pulumi.StringPtrInput `pulumi:"namespace"`
	// List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.
	OwnerReferences OwnerReferenceArrayInput `pulumi:"ownerReferences"`
	// An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.
	//
	// Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
	ResourceVersion pulumi.StringPtrInput `pulumi:"resourceVersion"`
	// SelfLink is a URL representing this object. Populated by the system. Read-only.
	//
	// DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.
	SelfLink pulumi.StringPtrInput `pulumi:"selfLink"`
	// UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.
	//
	// Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	Uid pulumi.StringPtrInput `pulumi:"uid"`
}

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

func (ObjectMetaArgs) ElementType

func (ObjectMetaArgs) ElementType() reflect.Type

func (ObjectMetaArgs) ToObjectMetaOutput

func (i ObjectMetaArgs) ToObjectMetaOutput() ObjectMetaOutput

func (ObjectMetaArgs) ToObjectMetaOutputWithContext

func (i ObjectMetaArgs) ToObjectMetaOutputWithContext(ctx context.Context) ObjectMetaOutput

func (ObjectMetaArgs) ToObjectMetaPtrOutput

func (i ObjectMetaArgs) ToObjectMetaPtrOutput() ObjectMetaPtrOutput

func (ObjectMetaArgs) ToObjectMetaPtrOutputWithContext

func (i ObjectMetaArgs) ToObjectMetaPtrOutputWithContext(ctx context.Context) ObjectMetaPtrOutput

type ObjectMetaInput

type ObjectMetaInput interface {
	pulumi.Input

	ToObjectMetaOutput() ObjectMetaOutput
	ToObjectMetaOutputWithContext(context.Context) ObjectMetaOutput
}

ObjectMetaInput is an input type that accepts ObjectMetaArgs and ObjectMetaOutput values. You can construct a concrete instance of `ObjectMetaInput` via:

ObjectMetaArgs{...}

type ObjectMetaOutput

type ObjectMetaOutput struct{ *pulumi.OutputState }

ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.

func (ObjectMetaOutput) Annotations

func (o ObjectMetaOutput) Annotations() pulumi.StringMapOutput

Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations

func (ObjectMetaOutput) ClusterName

func (o ObjectMetaOutput) ClusterName() pulumi.StringPtrOutput

The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.

func (ObjectMetaOutput) CreationTimestamp

func (o ObjectMetaOutput) CreationTimestamp() pulumi.StringPtrOutput

CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

func (ObjectMetaOutput) DeletionGracePeriodSeconds

func (o ObjectMetaOutput) DeletionGracePeriodSeconds() pulumi.IntPtrOutput

Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.

func (ObjectMetaOutput) DeletionTimestamp

func (o ObjectMetaOutput) DeletionTimestamp() pulumi.StringPtrOutput

DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

func (ObjectMetaOutput) ElementType

func (ObjectMetaOutput) ElementType() reflect.Type

func (ObjectMetaOutput) Finalizers

func (o ObjectMetaOutput) Finalizers() pulumi.StringArrayOutput

Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.

func (ObjectMetaOutput) GenerateName

func (o ObjectMetaOutput) GenerateName() pulumi.StringPtrOutput

GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).

Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

func (ObjectMetaOutput) Generation

func (o ObjectMetaOutput) Generation() pulumi.IntPtrOutput

A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.

func (ObjectMetaOutput) Labels

Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels

func (ObjectMetaOutput) ManagedFields

ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.

func (ObjectMetaOutput) Name

Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names

func (ObjectMetaOutput) Namespace

func (o ObjectMetaOutput) Namespace() pulumi.StringPtrOutput

Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces

func (ObjectMetaOutput) OwnerReferences

func (o ObjectMetaOutput) OwnerReferences() OwnerReferenceArrayOutput

List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.

func (ObjectMetaOutput) ResourceVersion

func (o ObjectMetaOutput) ResourceVersion() pulumi.StringPtrOutput

An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

SelfLink is a URL representing this object. Populated by the system. Read-only.

DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.

func (ObjectMetaOutput) ToObjectMetaOutput

func (o ObjectMetaOutput) ToObjectMetaOutput() ObjectMetaOutput

func (ObjectMetaOutput) ToObjectMetaOutputWithContext

func (o ObjectMetaOutput) ToObjectMetaOutputWithContext(ctx context.Context) ObjectMetaOutput

func (ObjectMetaOutput) ToObjectMetaPtrOutput

func (o ObjectMetaOutput) ToObjectMetaPtrOutput() ObjectMetaPtrOutput

func (ObjectMetaOutput) ToObjectMetaPtrOutputWithContext

func (o ObjectMetaOutput) ToObjectMetaPtrOutputWithContext(ctx context.Context) ObjectMetaPtrOutput

func (ObjectMetaOutput) Uid

UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

type ObjectMetaPtrInput

type ObjectMetaPtrInput interface {
	pulumi.Input

	ToObjectMetaPtrOutput() ObjectMetaPtrOutput
	ToObjectMetaPtrOutputWithContext(context.Context) ObjectMetaPtrOutput
}

ObjectMetaPtrInput is an input type that accepts ObjectMetaArgs, ObjectMetaPtr and ObjectMetaPtrOutput values. You can construct a concrete instance of `ObjectMetaPtrInput` via:

        ObjectMetaArgs{...}

or:

        nil

func ObjectMetaPtr

func ObjectMetaPtr(v *ObjectMetaArgs) ObjectMetaPtrInput

type ObjectMetaPtrOutput

type ObjectMetaPtrOutput struct{ *pulumi.OutputState }

func (ObjectMetaPtrOutput) Annotations

func (o ObjectMetaPtrOutput) Annotations() pulumi.StringMapOutput

Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations

func (ObjectMetaPtrOutput) ClusterName

func (o ObjectMetaPtrOutput) ClusterName() pulumi.StringPtrOutput

The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.

func (ObjectMetaPtrOutput) CreationTimestamp

func (o ObjectMetaPtrOutput) CreationTimestamp() pulumi.StringPtrOutput

CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.

Populated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

func (ObjectMetaPtrOutput) DeletionGracePeriodSeconds

func (o ObjectMetaPtrOutput) DeletionGracePeriodSeconds() pulumi.IntPtrOutput

Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.

func (ObjectMetaPtrOutput) DeletionTimestamp

func (o ObjectMetaPtrOutput) DeletionTimestamp() pulumi.StringPtrOutput

DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.

Populated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

func (ObjectMetaPtrOutput) Elem

func (ObjectMetaPtrOutput) ElementType

func (ObjectMetaPtrOutput) ElementType() reflect.Type

func (ObjectMetaPtrOutput) Finalizers

Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order. Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it. If the finalizer list is processed in order, then this can lead to a situation in which the component responsible for the first finalizer in the list is waiting for a signal (field value, external system, or other) produced by a component responsible for a finalizer later in the list, resulting in a deadlock. Without enforced ordering finalizers are free to order amongst themselves and are not vulnerable to ordering changes in the list.

func (ObjectMetaPtrOutput) GenerateName

func (o ObjectMetaPtrOutput) GenerateName() pulumi.StringPtrOutput

GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.

If this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).

Applied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency

func (ObjectMetaPtrOutput) Generation

func (o ObjectMetaPtrOutput) Generation() pulumi.IntPtrOutput

A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.

func (ObjectMetaPtrOutput) Labels

Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels

func (ObjectMetaPtrOutput) ManagedFields

ManagedFields maps workflow-id and version to the set of fields that are managed by that workflow. This is mostly for internal housekeeping, and users typically shouldn't need to set or understand this field. A workflow can be the user's name, a controller's name, or the name of a specific apply path like "ci-cd". The set of fields is always in the version that the workflow used when modifying the object.

func (ObjectMetaPtrOutput) Name

Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names

func (ObjectMetaPtrOutput) Namespace

Namespace defines the space within which each name must be unique. An empty namespace is equivalent to the "default" namespace, but "default" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.

Must be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces

func (ObjectMetaPtrOutput) OwnerReferences

func (o ObjectMetaPtrOutput) OwnerReferences() OwnerReferenceArrayOutput

List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.

func (ObjectMetaPtrOutput) ResourceVersion

func (o ObjectMetaPtrOutput) ResourceVersion() pulumi.StringPtrOutput

An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.

Populated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency

SelfLink is a URL representing this object. Populated by the system. Read-only.

DEPRECATED Kubernetes will stop propagating this field in 1.20 release and the field is planned to be removed in 1.21 release.

func (ObjectMetaPtrOutput) ToObjectMetaPtrOutput

func (o ObjectMetaPtrOutput) ToObjectMetaPtrOutput() ObjectMetaPtrOutput

func (ObjectMetaPtrOutput) ToObjectMetaPtrOutputWithContext

func (o ObjectMetaPtrOutput) ToObjectMetaPtrOutputWithContext(ctx context.Context) ObjectMetaPtrOutput

func (ObjectMetaPtrOutput) Uid

UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.

Populated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

type OwnerReference

type OwnerReference struct {
	// API version of the referent.
	ApiVersion string `pulumi:"apiVersion"`
	// If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
	BlockOwnerDeletion *bool `pulumi:"blockOwnerDeletion"`
	// If true, this reference points to the managing controller.
	Controller *bool `pulumi:"controller"`
	// Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `pulumi:"kind"`
	// Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name string `pulumi:"name"`
	// UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	Uid string `pulumi:"uid"`
}

OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.

type OwnerReferenceArgs

type OwnerReferenceArgs struct {
	// API version of the referent.
	ApiVersion pulumi.StringInput `pulumi:"apiVersion"`
	// If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.
	BlockOwnerDeletion pulumi.BoolPtrInput `pulumi:"blockOwnerDeletion"`
	// If true, this reference points to the managing controller.
	Controller pulumi.BoolPtrInput `pulumi:"controller"`
	// Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringInput `pulumi:"kind"`
	// Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names
	Name pulumi.StringInput `pulumi:"name"`
	// UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	Uid pulumi.StringInput `pulumi:"uid"`
}

OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.

func (OwnerReferenceArgs) ElementType

func (OwnerReferenceArgs) ElementType() reflect.Type

func (OwnerReferenceArgs) ToOwnerReferenceOutput

func (i OwnerReferenceArgs) ToOwnerReferenceOutput() OwnerReferenceOutput

func (OwnerReferenceArgs) ToOwnerReferenceOutputWithContext

func (i OwnerReferenceArgs) ToOwnerReferenceOutputWithContext(ctx context.Context) OwnerReferenceOutput

type OwnerReferenceArray

type OwnerReferenceArray []OwnerReferenceInput

func (OwnerReferenceArray) ElementType

func (OwnerReferenceArray) ElementType() reflect.Type

func (OwnerReferenceArray) ToOwnerReferenceArrayOutput

func (i OwnerReferenceArray) ToOwnerReferenceArrayOutput() OwnerReferenceArrayOutput

func (OwnerReferenceArray) ToOwnerReferenceArrayOutputWithContext

func (i OwnerReferenceArray) ToOwnerReferenceArrayOutputWithContext(ctx context.Context) OwnerReferenceArrayOutput

type OwnerReferenceArrayInput

type OwnerReferenceArrayInput interface {
	pulumi.Input

	ToOwnerReferenceArrayOutput() OwnerReferenceArrayOutput
	ToOwnerReferenceArrayOutputWithContext(context.Context) OwnerReferenceArrayOutput
}

OwnerReferenceArrayInput is an input type that accepts OwnerReferenceArray and OwnerReferenceArrayOutput values. You can construct a concrete instance of `OwnerReferenceArrayInput` via:

OwnerReferenceArray{ OwnerReferenceArgs{...} }

type OwnerReferenceArrayOutput

type OwnerReferenceArrayOutput struct{ *pulumi.OutputState }

func (OwnerReferenceArrayOutput) ElementType

func (OwnerReferenceArrayOutput) ElementType() reflect.Type

func (OwnerReferenceArrayOutput) Index

func (OwnerReferenceArrayOutput) ToOwnerReferenceArrayOutput

func (o OwnerReferenceArrayOutput) ToOwnerReferenceArrayOutput() OwnerReferenceArrayOutput

func (OwnerReferenceArrayOutput) ToOwnerReferenceArrayOutputWithContext

func (o OwnerReferenceArrayOutput) ToOwnerReferenceArrayOutputWithContext(ctx context.Context) OwnerReferenceArrayOutput

type OwnerReferenceInput

type OwnerReferenceInput interface {
	pulumi.Input

	ToOwnerReferenceOutput() OwnerReferenceOutput
	ToOwnerReferenceOutputWithContext(context.Context) OwnerReferenceOutput
}

OwnerReferenceInput is an input type that accepts OwnerReferenceArgs and OwnerReferenceOutput values. You can construct a concrete instance of `OwnerReferenceInput` via:

OwnerReferenceArgs{...}

type OwnerReferenceOutput

type OwnerReferenceOutput struct{ *pulumi.OutputState }

OwnerReference contains enough information to let you identify an owning object. An owning object must be in the same namespace as the dependent, or be cluster-scoped, so there is no namespace field.

func (OwnerReferenceOutput) ApiVersion

func (o OwnerReferenceOutput) ApiVersion() pulumi.StringOutput

API version of the referent.

func (OwnerReferenceOutput) BlockOwnerDeletion

func (o OwnerReferenceOutput) BlockOwnerDeletion() pulumi.BoolPtrOutput

If true, AND if the owner has the "foregroundDeletion" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs "delete" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.

func (OwnerReferenceOutput) Controller

func (o OwnerReferenceOutput) Controller() pulumi.BoolPtrOutput

If true, this reference points to the managing controller.

func (OwnerReferenceOutput) ElementType

func (OwnerReferenceOutput) ElementType() reflect.Type

func (OwnerReferenceOutput) Name

Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names

func (OwnerReferenceOutput) ToOwnerReferenceOutput

func (o OwnerReferenceOutput) ToOwnerReferenceOutput() OwnerReferenceOutput

func (OwnerReferenceOutput) ToOwnerReferenceOutputWithContext

func (o OwnerReferenceOutput) ToOwnerReferenceOutputWithContext(ctx context.Context) OwnerReferenceOutput

func (OwnerReferenceOutput) Uid

UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

type Preconditions

type Preconditions struct {
	// Specifies the target ResourceVersion
	ResourceVersion *string `pulumi:"resourceVersion"`
	// Specifies the target UID.
	Uid *string `pulumi:"uid"`
}

Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

type PreconditionsArgs

type PreconditionsArgs struct {
	// Specifies the target ResourceVersion
	ResourceVersion pulumi.StringPtrInput `pulumi:"resourceVersion"`
	// Specifies the target UID.
	Uid pulumi.StringPtrInput `pulumi:"uid"`
}

Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

func (PreconditionsArgs) ElementType

func (PreconditionsArgs) ElementType() reflect.Type

func (PreconditionsArgs) ToPreconditionsOutput

func (i PreconditionsArgs) ToPreconditionsOutput() PreconditionsOutput

func (PreconditionsArgs) ToPreconditionsOutputWithContext

func (i PreconditionsArgs) ToPreconditionsOutputWithContext(ctx context.Context) PreconditionsOutput

func (PreconditionsArgs) ToPreconditionsPtrOutput

func (i PreconditionsArgs) ToPreconditionsPtrOutput() PreconditionsPtrOutput

func (PreconditionsArgs) ToPreconditionsPtrOutputWithContext

func (i PreconditionsArgs) ToPreconditionsPtrOutputWithContext(ctx context.Context) PreconditionsPtrOutput

type PreconditionsInput

type PreconditionsInput interface {
	pulumi.Input

	ToPreconditionsOutput() PreconditionsOutput
	ToPreconditionsOutputWithContext(context.Context) PreconditionsOutput
}

PreconditionsInput is an input type that accepts PreconditionsArgs and PreconditionsOutput values. You can construct a concrete instance of `PreconditionsInput` via:

PreconditionsArgs{...}

type PreconditionsOutput

type PreconditionsOutput struct{ *pulumi.OutputState }

Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.

func (PreconditionsOutput) ElementType

func (PreconditionsOutput) ElementType() reflect.Type

func (PreconditionsOutput) ResourceVersion

func (o PreconditionsOutput) ResourceVersion() pulumi.StringPtrOutput

Specifies the target ResourceVersion

func (PreconditionsOutput) ToPreconditionsOutput

func (o PreconditionsOutput) ToPreconditionsOutput() PreconditionsOutput

func (PreconditionsOutput) ToPreconditionsOutputWithContext

func (o PreconditionsOutput) ToPreconditionsOutputWithContext(ctx context.Context) PreconditionsOutput

func (PreconditionsOutput) ToPreconditionsPtrOutput

func (o PreconditionsOutput) ToPreconditionsPtrOutput() PreconditionsPtrOutput

func (PreconditionsOutput) ToPreconditionsPtrOutputWithContext

func (o PreconditionsOutput) ToPreconditionsPtrOutputWithContext(ctx context.Context) PreconditionsPtrOutput

func (PreconditionsOutput) Uid

Specifies the target UID.

type PreconditionsPtrInput

type PreconditionsPtrInput interface {
	pulumi.Input

	ToPreconditionsPtrOutput() PreconditionsPtrOutput
	ToPreconditionsPtrOutputWithContext(context.Context) PreconditionsPtrOutput
}

PreconditionsPtrInput is an input type that accepts PreconditionsArgs, PreconditionsPtr and PreconditionsPtrOutput values. You can construct a concrete instance of `PreconditionsPtrInput` via:

        PreconditionsArgs{...}

or:

        nil

type PreconditionsPtrOutput

type PreconditionsPtrOutput struct{ *pulumi.OutputState }

func (PreconditionsPtrOutput) Elem

func (PreconditionsPtrOutput) ElementType

func (PreconditionsPtrOutput) ElementType() reflect.Type

func (PreconditionsPtrOutput) ResourceVersion

func (o PreconditionsPtrOutput) ResourceVersion() pulumi.StringPtrOutput

Specifies the target ResourceVersion

func (PreconditionsPtrOutput) ToPreconditionsPtrOutput

func (o PreconditionsPtrOutput) ToPreconditionsPtrOutput() PreconditionsPtrOutput

func (PreconditionsPtrOutput) ToPreconditionsPtrOutputWithContext

func (o PreconditionsPtrOutput) ToPreconditionsPtrOutputWithContext(ctx context.Context) PreconditionsPtrOutput

func (PreconditionsPtrOutput) Uid

Specifies the target UID.

type ServerAddressByClientCIDR

type ServerAddressByClientCIDR struct {
	// The CIDR with which clients can match their IP to figure out the server address that they should use.
	ClientCIDR string `pulumi:"clientCIDR"`
	// Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.
	ServerAddress string `pulumi:"serverAddress"`
}

ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.

type ServerAddressByClientCIDRArgs

type ServerAddressByClientCIDRArgs struct {
	// The CIDR with which clients can match their IP to figure out the server address that they should use.
	ClientCIDR pulumi.StringInput `pulumi:"clientCIDR"`
	// Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.
	ServerAddress pulumi.StringInput `pulumi:"serverAddress"`
}

ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.

func (ServerAddressByClientCIDRArgs) ElementType

func (ServerAddressByClientCIDRArgs) ToServerAddressByClientCIDROutput

func (i ServerAddressByClientCIDRArgs) ToServerAddressByClientCIDROutput() ServerAddressByClientCIDROutput

func (ServerAddressByClientCIDRArgs) ToServerAddressByClientCIDROutputWithContext

func (i ServerAddressByClientCIDRArgs) ToServerAddressByClientCIDROutputWithContext(ctx context.Context) ServerAddressByClientCIDROutput

type ServerAddressByClientCIDRArray

type ServerAddressByClientCIDRArray []ServerAddressByClientCIDRInput

func (ServerAddressByClientCIDRArray) ElementType

func (ServerAddressByClientCIDRArray) ToServerAddressByClientCIDRArrayOutput

func (i ServerAddressByClientCIDRArray) ToServerAddressByClientCIDRArrayOutput() ServerAddressByClientCIDRArrayOutput

func (ServerAddressByClientCIDRArray) ToServerAddressByClientCIDRArrayOutputWithContext

func (i ServerAddressByClientCIDRArray) ToServerAddressByClientCIDRArrayOutputWithContext(ctx context.Context) ServerAddressByClientCIDRArrayOutput

type ServerAddressByClientCIDRArrayInput

type ServerAddressByClientCIDRArrayInput interface {
	pulumi.Input

	ToServerAddressByClientCIDRArrayOutput() ServerAddressByClientCIDRArrayOutput
	ToServerAddressByClientCIDRArrayOutputWithContext(context.Context) ServerAddressByClientCIDRArrayOutput
}

ServerAddressByClientCIDRArrayInput is an input type that accepts ServerAddressByClientCIDRArray and ServerAddressByClientCIDRArrayOutput values. You can construct a concrete instance of `ServerAddressByClientCIDRArrayInput` via:

ServerAddressByClientCIDRArray{ ServerAddressByClientCIDRArgs{...} }

type ServerAddressByClientCIDRArrayOutput

type ServerAddressByClientCIDRArrayOutput struct{ *pulumi.OutputState }

func (ServerAddressByClientCIDRArrayOutput) ElementType

func (ServerAddressByClientCIDRArrayOutput) Index

func (ServerAddressByClientCIDRArrayOutput) ToServerAddressByClientCIDRArrayOutput

func (o ServerAddressByClientCIDRArrayOutput) ToServerAddressByClientCIDRArrayOutput() ServerAddressByClientCIDRArrayOutput

func (ServerAddressByClientCIDRArrayOutput) ToServerAddressByClientCIDRArrayOutputWithContext

func (o ServerAddressByClientCIDRArrayOutput) ToServerAddressByClientCIDRArrayOutputWithContext(ctx context.Context) ServerAddressByClientCIDRArrayOutput

type ServerAddressByClientCIDRInput

type ServerAddressByClientCIDRInput interface {
	pulumi.Input

	ToServerAddressByClientCIDROutput() ServerAddressByClientCIDROutput
	ToServerAddressByClientCIDROutputWithContext(context.Context) ServerAddressByClientCIDROutput
}

ServerAddressByClientCIDRInput is an input type that accepts ServerAddressByClientCIDRArgs and ServerAddressByClientCIDROutput values. You can construct a concrete instance of `ServerAddressByClientCIDRInput` via:

ServerAddressByClientCIDRArgs{...}

type ServerAddressByClientCIDROutput

type ServerAddressByClientCIDROutput struct{ *pulumi.OutputState }

ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.

func (ServerAddressByClientCIDROutput) ClientCIDR

The CIDR with which clients can match their IP to figure out the server address that they should use.

func (ServerAddressByClientCIDROutput) ElementType

func (ServerAddressByClientCIDROutput) ServerAddress

Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.

func (ServerAddressByClientCIDROutput) ToServerAddressByClientCIDROutput

func (o ServerAddressByClientCIDROutput) ToServerAddressByClientCIDROutput() ServerAddressByClientCIDROutput

func (ServerAddressByClientCIDROutput) ToServerAddressByClientCIDROutputWithContext

func (o ServerAddressByClientCIDROutput) ToServerAddressByClientCIDROutputWithContext(ctx context.Context) ServerAddressByClientCIDROutput

type Status

type Status struct {
	pulumi.CustomResourceState

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrOutput `pulumi:"apiVersion"`
	// Suggested HTTP return code for this status, 0 if not set.
	Code pulumi.IntPtrOutput `pulumi:"code"`
	// Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.
	Details StatusDetailsPtrOutput `pulumi:"details"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrOutput `pulumi:"kind"`
	// A human-readable description of the status of this operation.
	Message pulumi.StringPtrOutput `pulumi:"message"`
	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Metadata ListMetaPtrOutput `pulumi:"metadata"`
	// A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.
	Reason pulumi.StringPtrOutput `pulumi:"reason"`
	// Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	Status pulumi.StringPtrOutput `pulumi:"status"`
}

Status is a return value for calls that don't return other objects.

func GetStatus

func GetStatus(ctx *pulumi.Context,
	name string, id pulumi.IDInput, state *StatusState, opts ...pulumi.ResourceOption) (*Status, error)

GetStatus gets an existing Status resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).

func NewStatus

func NewStatus(ctx *pulumi.Context,
	name string, args *StatusArgs, opts ...pulumi.ResourceOption) (*Status, error)

NewStatus registers a new resource with the given unique name, arguments, and options.

func (*Status) ElementType added in v2.7.2

func (*Status) ElementType() reflect.Type

func (*Status) ToStatusOutput added in v2.7.2

func (i *Status) ToStatusOutput() StatusOutput

func (*Status) ToStatusOutputWithContext added in v2.7.2

func (i *Status) ToStatusOutputWithContext(ctx context.Context) StatusOutput

func (*Status) ToStatusPtrOutput added in v2.7.7

func (i *Status) ToStatusPtrOutput() StatusPtrOutput

func (*Status) ToStatusPtrOutputWithContext added in v2.7.7

func (i *Status) ToStatusPtrOutputWithContext(ctx context.Context) StatusPtrOutput

type StatusArgs

type StatusArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput
	// Suggested HTTP return code for this status, 0 if not set.
	Code pulumi.IntPtrInput
	// Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.
	Details StatusDetailsPtrInput
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput
	// A human-readable description of the status of this operation.
	Message pulumi.StringPtrInput
	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Metadata ListMetaPtrInput
	// A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.
	Reason pulumi.StringPtrInput
}

The set of arguments for constructing a Status resource.

func (StatusArgs) ElementType

func (StatusArgs) ElementType() reflect.Type

type StatusArray added in v2.7.7

type StatusArray []StatusInput

func (StatusArray) ElementType added in v2.7.7

func (StatusArray) ElementType() reflect.Type

func (StatusArray) ToStatusArrayOutput added in v2.7.7

func (i StatusArray) ToStatusArrayOutput() StatusArrayOutput

func (StatusArray) ToStatusArrayOutputWithContext added in v2.7.7

func (i StatusArray) ToStatusArrayOutputWithContext(ctx context.Context) StatusArrayOutput

type StatusArrayInput added in v2.7.7

type StatusArrayInput interface {
	pulumi.Input

	ToStatusArrayOutput() StatusArrayOutput
	ToStatusArrayOutputWithContext(context.Context) StatusArrayOutput
}

StatusArrayInput is an input type that accepts StatusArray and StatusArrayOutput values. You can construct a concrete instance of `StatusArrayInput` via:

StatusArray{ StatusArgs{...} }

type StatusArrayOutput added in v2.7.7

type StatusArrayOutput struct{ *pulumi.OutputState }

func (StatusArrayOutput) ElementType added in v2.7.7

func (StatusArrayOutput) ElementType() reflect.Type

func (StatusArrayOutput) Index added in v2.7.7

func (StatusArrayOutput) ToStatusArrayOutput added in v2.7.7

func (o StatusArrayOutput) ToStatusArrayOutput() StatusArrayOutput

func (StatusArrayOutput) ToStatusArrayOutputWithContext added in v2.7.7

func (o StatusArrayOutput) ToStatusArrayOutputWithContext(ctx context.Context) StatusArrayOutput

type StatusCause

type StatusCause struct {
	// The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
	//
	// Examples:
	//   "name" - the field "name" on the current resource
	//   "items[0].name" - the field "name" on the first array entry in "items"
	Field *string `pulumi:"field"`
	// A human-readable description of the cause of the error.  This field may be presented as-is to a reader.
	Message *string `pulumi:"message"`
	// A machine-readable description of the cause of the error. If this value is empty there is no information available.
	Reason *string `pulumi:"reason"`
}

StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

type StatusCauseArgs

type StatusCauseArgs struct {
	// The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed.  Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.
	//
	// Examples:
	//   "name" - the field "name" on the current resource
	//   "items[0].name" - the field "name" on the first array entry in "items"
	Field pulumi.StringPtrInput `pulumi:"field"`
	// A human-readable description of the cause of the error.  This field may be presented as-is to a reader.
	Message pulumi.StringPtrInput `pulumi:"message"`
	// A machine-readable description of the cause of the error. If this value is empty there is no information available.
	Reason pulumi.StringPtrInput `pulumi:"reason"`
}

StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

func (StatusCauseArgs) ElementType

func (StatusCauseArgs) ElementType() reflect.Type

func (StatusCauseArgs) ToStatusCauseOutput

func (i StatusCauseArgs) ToStatusCauseOutput() StatusCauseOutput

func (StatusCauseArgs) ToStatusCauseOutputWithContext

func (i StatusCauseArgs) ToStatusCauseOutputWithContext(ctx context.Context) StatusCauseOutput

type StatusCauseArray

type StatusCauseArray []StatusCauseInput

func (StatusCauseArray) ElementType

func (StatusCauseArray) ElementType() reflect.Type

func (StatusCauseArray) ToStatusCauseArrayOutput

func (i StatusCauseArray) ToStatusCauseArrayOutput() StatusCauseArrayOutput

func (StatusCauseArray) ToStatusCauseArrayOutputWithContext

func (i StatusCauseArray) ToStatusCauseArrayOutputWithContext(ctx context.Context) StatusCauseArrayOutput

type StatusCauseArrayInput

type StatusCauseArrayInput interface {
	pulumi.Input

	ToStatusCauseArrayOutput() StatusCauseArrayOutput
	ToStatusCauseArrayOutputWithContext(context.Context) StatusCauseArrayOutput
}

StatusCauseArrayInput is an input type that accepts StatusCauseArray and StatusCauseArrayOutput values. You can construct a concrete instance of `StatusCauseArrayInput` via:

StatusCauseArray{ StatusCauseArgs{...} }

type StatusCauseArrayOutput

type StatusCauseArrayOutput struct{ *pulumi.OutputState }

func (StatusCauseArrayOutput) ElementType

func (StatusCauseArrayOutput) ElementType() reflect.Type

func (StatusCauseArrayOutput) Index

func (StatusCauseArrayOutput) ToStatusCauseArrayOutput

func (o StatusCauseArrayOutput) ToStatusCauseArrayOutput() StatusCauseArrayOutput

func (StatusCauseArrayOutput) ToStatusCauseArrayOutputWithContext

func (o StatusCauseArrayOutput) ToStatusCauseArrayOutputWithContext(ctx context.Context) StatusCauseArrayOutput

type StatusCauseInput

type StatusCauseInput interface {
	pulumi.Input

	ToStatusCauseOutput() StatusCauseOutput
	ToStatusCauseOutputWithContext(context.Context) StatusCauseOutput
}

StatusCauseInput is an input type that accepts StatusCauseArgs and StatusCauseOutput values. You can construct a concrete instance of `StatusCauseInput` via:

StatusCauseArgs{...}

type StatusCauseOutput

type StatusCauseOutput struct{ *pulumi.OutputState }

StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.

func (StatusCauseOutput) ElementType

func (StatusCauseOutput) ElementType() reflect.Type

func (StatusCauseOutput) Field

The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.

Examples:

"name" - the field "name" on the current resource
"items[0].name" - the field "name" on the first array entry in "items"

func (StatusCauseOutput) Message

A human-readable description of the cause of the error. This field may be presented as-is to a reader.

func (StatusCauseOutput) Reason

A machine-readable description of the cause of the error. If this value is empty there is no information available.

func (StatusCauseOutput) ToStatusCauseOutput

func (o StatusCauseOutput) ToStatusCauseOutput() StatusCauseOutput

func (StatusCauseOutput) ToStatusCauseOutputWithContext

func (o StatusCauseOutput) ToStatusCauseOutputWithContext(ctx context.Context) StatusCauseOutput

type StatusDetails

type StatusDetails struct {
	// The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.
	Causes []StatusCause `pulumi:"causes"`
	// The group attribute of the resource associated with the status StatusReason.
	Group *string `pulumi:"group"`
	// The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).
	Name *string `pulumi:"name"`
	// If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.
	RetryAfterSeconds *int `pulumi:"retryAfterSeconds"`
	// UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	Uid *string `pulumi:"uid"`
}

StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

type StatusDetailsArgs

type StatusDetailsArgs struct {
	// The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.
	Causes StatusCauseArrayInput `pulumi:"causes"`
	// The group attribute of the resource associated with the status StatusReason.
	Group pulumi.StringPtrInput `pulumi:"group"`
	// The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).
	Name pulumi.StringPtrInput `pulumi:"name"`
	// If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.
	RetryAfterSeconds pulumi.IntPtrInput `pulumi:"retryAfterSeconds"`
	// UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids
	Uid pulumi.StringPtrInput `pulumi:"uid"`
}

StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

func (StatusDetailsArgs) ElementType

func (StatusDetailsArgs) ElementType() reflect.Type

func (StatusDetailsArgs) ToStatusDetailsOutput

func (i StatusDetailsArgs) ToStatusDetailsOutput() StatusDetailsOutput

func (StatusDetailsArgs) ToStatusDetailsOutputWithContext

func (i StatusDetailsArgs) ToStatusDetailsOutputWithContext(ctx context.Context) StatusDetailsOutput

func (StatusDetailsArgs) ToStatusDetailsPtrOutput

func (i StatusDetailsArgs) ToStatusDetailsPtrOutput() StatusDetailsPtrOutput

func (StatusDetailsArgs) ToStatusDetailsPtrOutputWithContext

func (i StatusDetailsArgs) ToStatusDetailsPtrOutputWithContext(ctx context.Context) StatusDetailsPtrOutput

type StatusDetailsInput

type StatusDetailsInput interface {
	pulumi.Input

	ToStatusDetailsOutput() StatusDetailsOutput
	ToStatusDetailsOutputWithContext(context.Context) StatusDetailsOutput
}

StatusDetailsInput is an input type that accepts StatusDetailsArgs and StatusDetailsOutput values. You can construct a concrete instance of `StatusDetailsInput` via:

StatusDetailsArgs{...}

type StatusDetailsOutput

type StatusDetailsOutput struct{ *pulumi.OutputState }

StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.

func (StatusDetailsOutput) Causes

The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

func (StatusDetailsOutput) ElementType

func (StatusDetailsOutput) ElementType() reflect.Type

func (StatusDetailsOutput) Group

The group attribute of the resource associated with the status StatusReason.

func (StatusDetailsOutput) Kind

The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (StatusDetailsOutput) Name

The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

func (StatusDetailsOutput) RetryAfterSeconds

func (o StatusDetailsOutput) RetryAfterSeconds() pulumi.IntPtrOutput

If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.

func (StatusDetailsOutput) ToStatusDetailsOutput

func (o StatusDetailsOutput) ToStatusDetailsOutput() StatusDetailsOutput

func (StatusDetailsOutput) ToStatusDetailsOutputWithContext

func (o StatusDetailsOutput) ToStatusDetailsOutputWithContext(ctx context.Context) StatusDetailsOutput

func (StatusDetailsOutput) ToStatusDetailsPtrOutput

func (o StatusDetailsOutput) ToStatusDetailsPtrOutput() StatusDetailsPtrOutput

func (StatusDetailsOutput) ToStatusDetailsPtrOutputWithContext

func (o StatusDetailsOutput) ToStatusDetailsPtrOutputWithContext(ctx context.Context) StatusDetailsPtrOutput

func (StatusDetailsOutput) Uid

UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids

type StatusDetailsPtrInput

type StatusDetailsPtrInput interface {
	pulumi.Input

	ToStatusDetailsPtrOutput() StatusDetailsPtrOutput
	ToStatusDetailsPtrOutputWithContext(context.Context) StatusDetailsPtrOutput
}

StatusDetailsPtrInput is an input type that accepts StatusDetailsArgs, StatusDetailsPtr and StatusDetailsPtrOutput values. You can construct a concrete instance of `StatusDetailsPtrInput` via:

        StatusDetailsArgs{...}

or:

        nil

type StatusDetailsPtrOutput

type StatusDetailsPtrOutput struct{ *pulumi.OutputState }

func (StatusDetailsPtrOutput) Causes

The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.

func (StatusDetailsPtrOutput) Elem

func (StatusDetailsPtrOutput) ElementType

func (StatusDetailsPtrOutput) ElementType() reflect.Type

func (StatusDetailsPtrOutput) Group

The group attribute of the resource associated with the status StatusReason.

func (StatusDetailsPtrOutput) Kind

The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (StatusDetailsPtrOutput) Name

The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).

func (StatusDetailsPtrOutput) RetryAfterSeconds

func (o StatusDetailsPtrOutput) RetryAfterSeconds() pulumi.IntPtrOutput

If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.

func (StatusDetailsPtrOutput) ToStatusDetailsPtrOutput

func (o StatusDetailsPtrOutput) ToStatusDetailsPtrOutput() StatusDetailsPtrOutput

func (StatusDetailsPtrOutput) ToStatusDetailsPtrOutputWithContext

func (o StatusDetailsPtrOutput) ToStatusDetailsPtrOutputWithContext(ctx context.Context) StatusDetailsPtrOutput

func (StatusDetailsPtrOutput) Uid

UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids

type StatusInput added in v2.7.2

type StatusInput interface {
	pulumi.Input

	ToStatusOutput() StatusOutput
	ToStatusOutputWithContext(ctx context.Context) StatusOutput
}

type StatusMap added in v2.7.7

type StatusMap map[string]StatusInput

func (StatusMap) ElementType added in v2.7.7

func (StatusMap) ElementType() reflect.Type

func (StatusMap) ToStatusMapOutput added in v2.7.7

func (i StatusMap) ToStatusMapOutput() StatusMapOutput

func (StatusMap) ToStatusMapOutputWithContext added in v2.7.7

func (i StatusMap) ToStatusMapOutputWithContext(ctx context.Context) StatusMapOutput

type StatusMapInput added in v2.7.7

type StatusMapInput interface {
	pulumi.Input

	ToStatusMapOutput() StatusMapOutput
	ToStatusMapOutputWithContext(context.Context) StatusMapOutput
}

StatusMapInput is an input type that accepts StatusMap and StatusMapOutput values. You can construct a concrete instance of `StatusMapInput` via:

StatusMap{ "key": StatusArgs{...} }

type StatusMapOutput added in v2.7.7

type StatusMapOutput struct{ *pulumi.OutputState }

func (StatusMapOutput) ElementType added in v2.7.7

func (StatusMapOutput) ElementType() reflect.Type

func (StatusMapOutput) MapIndex added in v2.7.7

func (StatusMapOutput) ToStatusMapOutput added in v2.7.7

func (o StatusMapOutput) ToStatusMapOutput() StatusMapOutput

func (StatusMapOutput) ToStatusMapOutputWithContext added in v2.7.7

func (o StatusMapOutput) ToStatusMapOutputWithContext(ctx context.Context) StatusMapOutput

type StatusOutput added in v2.7.2

type StatusOutput struct {
	*pulumi.OutputState
}

func (StatusOutput) ElementType added in v2.7.2

func (StatusOutput) ElementType() reflect.Type

func (StatusOutput) ToStatusOutput added in v2.7.2

func (o StatusOutput) ToStatusOutput() StatusOutput

func (StatusOutput) ToStatusOutputWithContext added in v2.7.2

func (o StatusOutput) ToStatusOutputWithContext(ctx context.Context) StatusOutput

func (StatusOutput) ToStatusPtrOutput added in v2.7.7

func (o StatusOutput) ToStatusPtrOutput() StatusPtrOutput

func (StatusOutput) ToStatusPtrOutputWithContext added in v2.7.7

func (o StatusOutput) ToStatusPtrOutputWithContext(ctx context.Context) StatusPtrOutput

type StatusPtrInput added in v2.7.7

type StatusPtrInput interface {
	pulumi.Input

	ToStatusPtrOutput() StatusPtrOutput
	ToStatusPtrOutputWithContext(ctx context.Context) StatusPtrOutput
}

type StatusPtrOutput added in v2.7.7

type StatusPtrOutput struct {
	*pulumi.OutputState
}

func (StatusPtrOutput) ElementType added in v2.7.7

func (StatusPtrOutput) ElementType() reflect.Type

func (StatusPtrOutput) ToStatusPtrOutput added in v2.7.7

func (o StatusPtrOutput) ToStatusPtrOutput() StatusPtrOutput

func (StatusPtrOutput) ToStatusPtrOutputWithContext added in v2.7.7

func (o StatusPtrOutput) ToStatusPtrOutputWithContext(ctx context.Context) StatusPtrOutput

type StatusState

type StatusState struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput
	// Suggested HTTP return code for this status, 0 if not set.
	Code pulumi.IntPtrInput
	// Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.
	Details StatusDetailsPtrInput
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput
	// A human-readable description of the status of this operation.
	Message pulumi.StringPtrInput
	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Metadata ListMetaPtrInput
	// A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.
	Reason pulumi.StringPtrInput
	// Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	Status pulumi.StringPtrInput
}

func (StatusState) ElementType

func (StatusState) ElementType() reflect.Type

type StatusType

type StatusType struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion *string `pulumi:"apiVersion"`
	// Suggested HTTP return code for this status, 0 if not set.
	Code *int `pulumi:"code"`
	// Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.
	Details *StatusDetails `pulumi:"details"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind *string `pulumi:"kind"`
	// A human-readable description of the status of this operation.
	Message *string `pulumi:"message"`
	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Metadata *ListMeta `pulumi:"metadata"`
	// A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.
	Reason *string `pulumi:"reason"`
	// Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	Status *string `pulumi:"status"`
}

Status is a return value for calls that don't return other objects.

type StatusTypeArgs

type StatusTypeArgs struct {
	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	ApiVersion pulumi.StringPtrInput `pulumi:"apiVersion"`
	// Suggested HTTP return code for this status, 0 if not set.
	Code pulumi.IntPtrInput `pulumi:"code"`
	// Extended data associated with the reason.  Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.
	Details StatusDetailsPtrInput `pulumi:"details"`
	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind pulumi.StringPtrInput `pulumi:"kind"`
	// A human-readable description of the status of this operation.
	Message pulumi.StringPtrInput `pulumi:"message"`
	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Metadata ListMetaPtrInput `pulumi:"metadata"`
	// A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.
	Reason pulumi.StringPtrInput `pulumi:"reason"`
	// Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
	Status pulumi.StringPtrInput `pulumi:"status"`
}

Status is a return value for calls that don't return other objects.

func (StatusTypeArgs) ElementType

func (StatusTypeArgs) ElementType() reflect.Type

func (StatusTypeArgs) ToStatusTypeOutput

func (i StatusTypeArgs) ToStatusTypeOutput() StatusTypeOutput

func (StatusTypeArgs) ToStatusTypeOutputWithContext

func (i StatusTypeArgs) ToStatusTypeOutputWithContext(ctx context.Context) StatusTypeOutput

type StatusTypeInput

type StatusTypeInput interface {
	pulumi.Input

	ToStatusTypeOutput() StatusTypeOutput
	ToStatusTypeOutputWithContext(context.Context) StatusTypeOutput
}

StatusTypeInput is an input type that accepts StatusTypeArgs and StatusTypeOutput values. You can construct a concrete instance of `StatusTypeInput` via:

StatusTypeArgs{...}

type StatusTypeOutput

type StatusTypeOutput struct{ *pulumi.OutputState }

Status is a return value for calls that don't return other objects.

func (StatusTypeOutput) ApiVersion

func (o StatusTypeOutput) ApiVersion() pulumi.StringPtrOutput

APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources

func (StatusTypeOutput) Code

Suggested HTTP return code for this status, 0 if not set.

func (StatusTypeOutput) Details

Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.

func (StatusTypeOutput) ElementType

func (StatusTypeOutput) ElementType() reflect.Type

func (StatusTypeOutput) Kind

Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds

func (StatusTypeOutput) Message

A human-readable description of the status of this operation.

func (StatusTypeOutput) Reason

A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.

func (StatusTypeOutput) Status

Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status

func (StatusTypeOutput) ToStatusTypeOutput

func (o StatusTypeOutput) ToStatusTypeOutput() StatusTypeOutput

func (StatusTypeOutput) ToStatusTypeOutputWithContext

func (o StatusTypeOutput) ToStatusTypeOutputWithContext(ctx context.Context) StatusTypeOutput

type WatchEvent

type WatchEvent struct {
	// Object is:
	//  * If Type is Added or Modified: the new state of the object.
	//  * If Type is Deleted: the state of the object immediately before deletion.
	//  * If Type is Error: *Status is recommended; other types may make sense
	//    depending on context.
	Object interface{} `pulumi:"object"`
	Type   string      `pulumi:"type"`
}

Event represents a single event to a watched resource.

type WatchEventArgs

type WatchEventArgs struct {
	// Object is:
	//  * If Type is Added or Modified: the new state of the object.
	//  * If Type is Deleted: the state of the object immediately before deletion.
	//  * If Type is Error: *Status is recommended; other types may make sense
	//    depending on context.
	Object pulumi.Input       `pulumi:"object"`
	Type   pulumi.StringInput `pulumi:"type"`
}

Event represents a single event to a watched resource.

func (WatchEventArgs) ElementType

func (WatchEventArgs) ElementType() reflect.Type

func (WatchEventArgs) ToWatchEventOutput

func (i WatchEventArgs) ToWatchEventOutput() WatchEventOutput

func (WatchEventArgs) ToWatchEventOutputWithContext

func (i WatchEventArgs) ToWatchEventOutputWithContext(ctx context.Context) WatchEventOutput

type WatchEventInput

type WatchEventInput interface {
	pulumi.Input

	ToWatchEventOutput() WatchEventOutput
	ToWatchEventOutputWithContext(context.Context) WatchEventOutput
}

WatchEventInput is an input type that accepts WatchEventArgs and WatchEventOutput values. You can construct a concrete instance of `WatchEventInput` via:

WatchEventArgs{...}

type WatchEventOutput

type WatchEventOutput struct{ *pulumi.OutputState }

Event represents a single event to a watched resource.

func (WatchEventOutput) ElementType

func (WatchEventOutput) ElementType() reflect.Type

func (WatchEventOutput) Object

func (o WatchEventOutput) Object() pulumi.AnyOutput

Object is:

  • If Type is Added or Modified: the new state of the object.
  • If Type is Deleted: the state of the object immediately before deletion.
  • If Type is Error: *Status is recommended; other types may make sense depending on context.

func (WatchEventOutput) ToWatchEventOutput

func (o WatchEventOutput) ToWatchEventOutput() WatchEventOutput

func (WatchEventOutput) ToWatchEventOutputWithContext

func (o WatchEventOutput) ToWatchEventOutputWithContext(ctx context.Context) WatchEventOutput

func (WatchEventOutput) Type

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL