mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 10:50:04 +08:00

* Provisioning: Jobs: Define repository name field * Provisioning: Jobs: Separate options per job type * Provisioning: Define a sanitised settings resource * Provisioning: Jobs: Define a job summary * Provisioning: Remove linting * Provisioning: Update docs for a few fields * Provisioning: Remove HelloWorld * Provisioning: Replace Repository with Message in job info * Provisioning: Remove YAML support * Provisioning: Remove custom folder specification * Provisioning: Support read-only repositories * Provisioning: Remove edit options * Provisioning: Add sync options for repositories * Provisioning: Add resource statistics * Provisioning: Make slices atomic lists * Provisioning: Message list needs to exist even if empty If we don't do this, we can't clear the messages field, leading to buggy UX. * Provisioning: Support incremental syncing * Provisioning: Remove the 'items' subresource workaround * Provisioning: Add resource list * Provisioning: Reformat * Provisioning: Declare new types * OpenAPI: Generate openapi JSON spec from generated code * Codegen: Generate OpenAPI spec * Provisioning: Support generating frontend API * Codegen: Generate Go code * Provisioning: Define the base API * Codegen: Generate frontend endpoints for provisioning * Refactor: yarn prettier:write * Provisioning: Tiger team takes ownership * Chore: Remove dir we haven't added yet * Provisioning: Remove frontend * Test: Update example repositories
53 lines
2.3 KiB
Go
53 lines
2.3 KiB
Go
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v0alpha1
|
|
|
|
// ResourceCountApplyConfiguration represents a declarative configuration of the ResourceCount type for use
|
|
// with apply.
|
|
type ResourceCountApplyConfiguration struct {
|
|
Repository *string `json:"repository,omitempty"`
|
|
Group *string `json:"group,omitempty"`
|
|
Resource *string `json:"resource,omitempty"`
|
|
Count *int64 `json:"count,omitempty"`
|
|
}
|
|
|
|
// ResourceCountApplyConfiguration constructs a declarative configuration of the ResourceCount type for use with
|
|
// apply.
|
|
func ResourceCount() *ResourceCountApplyConfiguration {
|
|
return &ResourceCountApplyConfiguration{}
|
|
}
|
|
|
|
// WithRepository sets the Repository field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Repository field is set to the value of the last call.
|
|
func (b *ResourceCountApplyConfiguration) WithRepository(value string) *ResourceCountApplyConfiguration {
|
|
b.Repository = &value
|
|
return b
|
|
}
|
|
|
|
// WithGroup sets the Group field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Group field is set to the value of the last call.
|
|
func (b *ResourceCountApplyConfiguration) WithGroup(value string) *ResourceCountApplyConfiguration {
|
|
b.Group = &value
|
|
return b
|
|
}
|
|
|
|
// WithResource sets the Resource field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Resource field is set to the value of the last call.
|
|
func (b *ResourceCountApplyConfiguration) WithResource(value string) *ResourceCountApplyConfiguration {
|
|
b.Resource = &value
|
|
return b
|
|
}
|
|
|
|
// WithCount sets the Count field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Count field is set to the value of the last call.
|
|
func (b *ResourceCountApplyConfiguration) WithCount(value int64) *ResourceCountApplyConfiguration {
|
|
b.Count = &value
|
|
return b
|
|
}
|