Chore: regenerate api clients (#109919)

regenerate apis
This commit is contained in:
Ashley Harrison
2025-08-20 14:43:45 +00:00
committed by GitHub
parent af1b6dd171
commit c8d9b5b207
@@ -658,6 +658,7 @@ export type CreateRepositoryTestApiArg = {
/** 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;
metadata?: any;
secure?: any;
spec?: any;
status?: any;
};
@@ -909,6 +910,37 @@ export type JobList = {
kind?: string;
metadata?: ListMeta;
};
export type InlineSecureValue =
| {
/** Create a secure value -- this is only used for POST/PUT */
create?: string;
/** Name in the secret service (reference) */
name: string;
/** Remove this value from the secure value map Values owned by this resource will be deleted if necessary */
remove?: boolean;
}
| {
/** Create a secure value -- this is only used for POST/PUT */
create: string;
/** Name in the secret service (reference) */
name?: string;
/** Remove this value from the secure value map Values owned by this resource will be deleted if necessary */
remove?: boolean;
}
| {
/** Create a secure value -- this is only used for POST/PUT */
create?: string;
/** Name in the secret service (reference) */
name?: string;
/** Remove this value from the secure value map Values owned by this resource will be deleted if necessary */
remove: boolean;
};
export type SecureValues = {
/** Token used to connect the configured repository */
token?: InlineSecureValue;
/** Some webhooks (github) require a secret key value */
webhookSecret?: InlineSecureValue;
};
export type BitbucketRepositoryConfig = {
/** The branch to use in the repository. */
branch: string;
@@ -1079,6 +1111,7 @@ export type Repository = {
/** 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;
metadata?: ObjectMeta;
secure?: SecureValues;
spec?: RepositorySpec;
status?: RepositoryStatus;
};