mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 03:02:18 +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
71 lines
3.6 KiB
Go
71 lines
3.6 KiB
Go
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v0alpha1
|
|
|
|
// GitHubRepositoryConfigApplyConfiguration represents a declarative configuration of the GitHubRepositoryConfig type for use
|
|
// with apply.
|
|
type GitHubRepositoryConfigApplyConfiguration struct {
|
|
Owner *string `json:"owner,omitempty"`
|
|
Repository *string `json:"repository,omitempty"`
|
|
Branch *string `json:"branch,omitempty"`
|
|
Token *string `json:"token,omitempty"`
|
|
BranchWorkflow *bool `json:"branchWorkflow,omitempty"`
|
|
GenerateDashboardPreviews *bool `json:"generateDashboardPreviews,omitempty"`
|
|
}
|
|
|
|
// GitHubRepositoryConfigApplyConfiguration constructs a declarative configuration of the GitHubRepositoryConfig type for use with
|
|
// apply.
|
|
func GitHubRepositoryConfig() *GitHubRepositoryConfigApplyConfiguration {
|
|
return &GitHubRepositoryConfigApplyConfiguration{}
|
|
}
|
|
|
|
// WithOwner sets the Owner 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 Owner field is set to the value of the last call.
|
|
func (b *GitHubRepositoryConfigApplyConfiguration) WithOwner(value string) *GitHubRepositoryConfigApplyConfiguration {
|
|
b.Owner = &value
|
|
return b
|
|
}
|
|
|
|
// 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 *GitHubRepositoryConfigApplyConfiguration) WithRepository(value string) *GitHubRepositoryConfigApplyConfiguration {
|
|
b.Repository = &value
|
|
return b
|
|
}
|
|
|
|
// WithBranch sets the Branch 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 Branch field is set to the value of the last call.
|
|
func (b *GitHubRepositoryConfigApplyConfiguration) WithBranch(value string) *GitHubRepositoryConfigApplyConfiguration {
|
|
b.Branch = &value
|
|
return b
|
|
}
|
|
|
|
// WithToken sets the Token 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 Token field is set to the value of the last call.
|
|
func (b *GitHubRepositoryConfigApplyConfiguration) WithToken(value string) *GitHubRepositoryConfigApplyConfiguration {
|
|
b.Token = &value
|
|
return b
|
|
}
|
|
|
|
// WithBranchWorkflow sets the BranchWorkflow 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 BranchWorkflow field is set to the value of the last call.
|
|
func (b *GitHubRepositoryConfigApplyConfiguration) WithBranchWorkflow(value bool) *GitHubRepositoryConfigApplyConfiguration {
|
|
b.BranchWorkflow = &value
|
|
return b
|
|
}
|
|
|
|
// WithGenerateDashboardPreviews sets the GenerateDashboardPreviews 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 GenerateDashboardPreviews field is set to the value of the last call.
|
|
func (b *GitHubRepositoryConfigApplyConfiguration) WithGenerateDashboardPreviews(value bool) *GitHubRepositoryConfigApplyConfiguration {
|
|
b.GenerateDashboardPreviews = &value
|
|
return b
|
|
}
|