Auto-generated code for main (#2152)
This commit is contained in:
@ -154,22 +154,15 @@ export default class Snapshot {
|
||||
async createRepository (this: That, params: T.SnapshotCreateRepositoryRequest | TB.SnapshotCreateRepositoryRequest, options?: TransportRequestOptions): Promise<T.SnapshotCreateRepositoryResponse>
|
||||
async createRepository (this: That, params: T.SnapshotCreateRepositoryRequest | TB.SnapshotCreateRepositoryRequest, options?: TransportRequestOptions): Promise<any> {
|
||||
const acceptedPath: string[] = ['name']
|
||||
const acceptedBody: string[] = ['repository', 'type', 'settings']
|
||||
const acceptedBody: string[] = ['repository']
|
||||
const querystring: Record<string, any> = {}
|
||||
// @ts-expect-error
|
||||
const userBody: any = params?.body
|
||||
let body: Record<string, any> | string
|
||||
if (typeof userBody === 'string') {
|
||||
body = userBody
|
||||
} else {
|
||||
body = userBody != null ? { ...userBody } : undefined
|
||||
}
|
||||
let body: any = params.body ?? undefined
|
||||
|
||||
for (const key in params) {
|
||||
if (acceptedBody.includes(key)) {
|
||||
body = body ?? {}
|
||||
// @ts-expect-error
|
||||
body[key] = params[key]
|
||||
body = params[key]
|
||||
} else if (acceptedPath.includes(key)) {
|
||||
continue
|
||||
} else if (key !== 'body') {
|
||||
|
||||
127
src/api/types.ts
127
src/api/types.ts
@ -1449,7 +1449,7 @@ export interface SearchInnerHits {
|
||||
fields?: Fields
|
||||
sort?: Sort
|
||||
_source?: SearchSourceConfig
|
||||
stored_field?: Fields
|
||||
stored_fields?: Fields
|
||||
track_scores?: boolean
|
||||
version?: boolean
|
||||
}
|
||||
@ -2264,7 +2264,7 @@ export interface InlineGetKeys<TDocument = unknown> {
|
||||
_seq_no?: SequenceNumber
|
||||
_primary_term?: long
|
||||
_routing?: Routing
|
||||
_source: TDocument
|
||||
_source?: TDocument
|
||||
}
|
||||
export type InlineGet<TDocument = unknown> = InlineGetKeys<TDocument>
|
||||
& { [property: string]: any }
|
||||
@ -4876,7 +4876,7 @@ export interface MappingDenseVectorIndexOptions {
|
||||
|
||||
export interface MappingDenseVectorProperty extends MappingPropertyBase {
|
||||
type: 'dense_vector'
|
||||
dims: integer
|
||||
dims?: integer
|
||||
similarity?: string
|
||||
index?: boolean
|
||||
index_options?: MappingDenseVectorIndexOptions
|
||||
@ -4977,6 +4977,9 @@ export interface MappingGeoPointProperty extends MappingDocValuesPropertyBase {
|
||||
ignore_malformed?: boolean
|
||||
ignore_z_value?: boolean
|
||||
null_value?: GeoLocation
|
||||
index?: boolean
|
||||
on_script_error?: MappingOnScriptError
|
||||
script?: Script
|
||||
type: 'geo_point'
|
||||
}
|
||||
|
||||
@ -5130,6 +5133,7 @@ export interface MappingRankFeatureProperty extends MappingPropertyBase {
|
||||
}
|
||||
|
||||
export interface MappingRankFeaturesProperty extends MappingPropertyBase {
|
||||
positive_score_impact?: boolean
|
||||
type: 'rank_features'
|
||||
}
|
||||
|
||||
@ -9013,7 +9017,7 @@ export interface EnrichExecutePolicyRequest extends RequestBase {
|
||||
}
|
||||
|
||||
export interface EnrichExecutePolicyResponse {
|
||||
status: EnrichExecutePolicyExecuteEnrichPolicyStatus
|
||||
status?: EnrichExecutePolicyExecuteEnrichPolicyStatus
|
||||
task_id?: TaskId
|
||||
}
|
||||
|
||||
@ -10196,7 +10200,7 @@ export interface IndicesDataStreamsStatsDataStreamsStatsItem {
|
||||
data_stream: Name
|
||||
maximum_timestamp: EpochTime<UnitMillis>
|
||||
store_size?: ByteSize
|
||||
store_size_bytes: integer
|
||||
store_size_bytes: long
|
||||
}
|
||||
|
||||
export interface IndicesDataStreamsStatsRequest extends RequestBase {
|
||||
@ -10210,7 +10214,7 @@ export interface IndicesDataStreamsStatsResponse {
|
||||
data_stream_count: integer
|
||||
data_streams: IndicesDataStreamsStatsDataStreamsStatsItem[]
|
||||
total_store_sizes?: ByteSize
|
||||
total_store_size_bytes: integer
|
||||
total_store_size_bytes: long
|
||||
}
|
||||
|
||||
export interface IndicesDeleteRequest extends RequestBase {
|
||||
@ -15891,7 +15895,7 @@ export interface SecurityRoleDescriptor {
|
||||
applications?: SecurityApplicationPrivileges[]
|
||||
metadata?: Metadata
|
||||
run_as?: string[]
|
||||
transient_metadata?: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
}
|
||||
|
||||
export interface SecurityRoleDescriptorRead {
|
||||
@ -15902,7 +15906,7 @@ export interface SecurityRoleDescriptorRead {
|
||||
applications?: SecurityApplicationPrivileges[]
|
||||
metadata?: Metadata
|
||||
run_as?: string[]
|
||||
transient_metadata?: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
}
|
||||
|
||||
export interface SecurityRoleMapping {
|
||||
@ -15941,10 +15945,6 @@ export type SecurityRoleTemplateScript = SecurityRoleTemplateInlineScript | Secu
|
||||
|
||||
export type SecurityTemplateFormat = 'string' | 'json'
|
||||
|
||||
export interface SecurityTransientMetadataConfig {
|
||||
enabled: boolean
|
||||
}
|
||||
|
||||
export interface SecurityUser {
|
||||
email?: string | null
|
||||
full_name?: Name | null
|
||||
@ -16264,7 +16264,7 @@ export interface SecurityGetRoleRole {
|
||||
indices: SecurityIndicesPrivileges[]
|
||||
metadata: Metadata
|
||||
run_as: string[]
|
||||
transient_metadata: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
applications: SecurityApplicationPrivileges[]
|
||||
role_templates?: SecurityRoleTemplate[]
|
||||
global?: Record<string, Record<string, Record<string, string[]>>>
|
||||
@ -16515,7 +16515,7 @@ export interface SecurityPutRoleRequest extends RequestBase {
|
||||
indices?: SecurityIndicesPrivileges[]
|
||||
metadata?: Metadata
|
||||
run_as?: string[]
|
||||
transient_metadata?: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
}
|
||||
|
||||
export interface SecurityPutRoleResponse {
|
||||
@ -16873,11 +16873,37 @@ export interface SlmStopRequest extends RequestBase {
|
||||
|
||||
export type SlmStopResponse = AcknowledgedResponseBase
|
||||
|
||||
export interface SnapshotAzureRepository extends SnapshotRepositoryBase {
|
||||
type: 'azure'
|
||||
settings: SnapshotAzureRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotAzureRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
client?: string
|
||||
container?: string
|
||||
base_path?: string
|
||||
readonly?: boolean
|
||||
location_mode?: string
|
||||
}
|
||||
|
||||
export interface SnapshotFileCountSnapshotStats {
|
||||
file_count: integer
|
||||
size_in_bytes: long
|
||||
}
|
||||
|
||||
export interface SnapshotGcsRepository extends SnapshotRepositoryBase {
|
||||
type: 'gcs'
|
||||
settings: SnapshotGcsRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotGcsRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
bucket: string
|
||||
client?: string
|
||||
base_path?: string
|
||||
readonly?: boolean
|
||||
application_name?: string
|
||||
}
|
||||
|
||||
export interface SnapshotIndexDetails {
|
||||
shard_count: integer
|
||||
size?: ByteSize
|
||||
@ -16890,19 +16916,45 @@ export interface SnapshotInfoFeatureState {
|
||||
indices: Indices
|
||||
}
|
||||
|
||||
export interface SnapshotRepository {
|
||||
type: string
|
||||
uuid?: Uuid
|
||||
settings: SnapshotRepositorySettings
|
||||
export interface SnapshotReadOnlyUrlRepository extends SnapshotRepositoryBase {
|
||||
type: 'url'
|
||||
settings: SnapshotReadOnlyUrlRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotRepositorySettings {
|
||||
chunk_size?: string
|
||||
compress?: string | boolean
|
||||
concurrent_streams?: string | integer
|
||||
location: string
|
||||
read_only?: string | boolean
|
||||
readonly?: string | boolean
|
||||
export interface SnapshotReadOnlyUrlRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
http_max_retries?: integer
|
||||
http_socket_timeout?: Duration
|
||||
max_number_of_snapshots?: integer
|
||||
url: string
|
||||
}
|
||||
|
||||
export type SnapshotRepository = SnapshotAzureRepository | SnapshotGcsRepository | SnapshotS3Repository | SnapshotSharedFileSystemRepository | SnapshotReadOnlyUrlRepository | SnapshotSourceOnlyRepository
|
||||
|
||||
export interface SnapshotRepositoryBase {
|
||||
uuid?: Uuid
|
||||
}
|
||||
|
||||
export interface SnapshotRepositorySettingsBase {
|
||||
chunk_size?: ByteSize
|
||||
compress?: boolean
|
||||
max_restore_bytes_per_sec?: ByteSize
|
||||
max_snapshot_bytes_per_sec?: ByteSize
|
||||
}
|
||||
|
||||
export interface SnapshotS3Repository extends SnapshotRepositoryBase {
|
||||
type: 's3'
|
||||
settings: SnapshotS3RepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotS3RepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
bucket: string
|
||||
client?: string
|
||||
base_path?: string
|
||||
readonly?: boolean
|
||||
server_side_encryption?: boolean
|
||||
buffer_size?: ByteSize
|
||||
canned_acl?: string
|
||||
storage_class?: string
|
||||
}
|
||||
|
||||
export interface SnapshotShardsStats {
|
||||
@ -16929,6 +16981,17 @@ export interface SnapshotShardsStatsSummaryItem {
|
||||
size_in_bytes: long
|
||||
}
|
||||
|
||||
export interface SnapshotSharedFileSystemRepository extends SnapshotRepositoryBase {
|
||||
type: 'fs'
|
||||
settings: SnapshotSharedFileSystemRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotSharedFileSystemRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
location: string
|
||||
max_number_of_snapshots?: integer
|
||||
readonly?: boolean
|
||||
}
|
||||
|
||||
export interface SnapshotSnapshotIndexStats {
|
||||
shards: Record<string, SnapshotSnapshotShardsStatus>
|
||||
shards_stats: SnapshotShardsStats
|
||||
@ -16982,6 +17045,18 @@ export interface SnapshotSnapshotStats {
|
||||
total: SnapshotFileCountSnapshotStats
|
||||
}
|
||||
|
||||
export interface SnapshotSourceOnlyRepository extends SnapshotRepositoryBase {
|
||||
type: 'source'
|
||||
settings: SnapshotSourceOnlyRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotSourceOnlyRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
delegate_type?: string
|
||||
max_number_of_snapshots?: integer
|
||||
read_only?: boolean
|
||||
readonly?: boolean
|
||||
}
|
||||
|
||||
export interface SnapshotStatus {
|
||||
include_global_state: boolean
|
||||
indices: Record<string, SnapshotSnapshotIndexStats>
|
||||
@ -17043,8 +17118,6 @@ export interface SnapshotCreateRepositoryRequest extends RequestBase {
|
||||
timeout?: Duration
|
||||
verify?: boolean
|
||||
repository?: SnapshotRepository
|
||||
type: string
|
||||
settings: SnapshotRepositorySettings
|
||||
}
|
||||
|
||||
export type SnapshotCreateRepositoryResponse = AcknowledgedResponseBase
|
||||
|
||||
@ -1504,7 +1504,7 @@ export interface SearchInnerHits {
|
||||
fields?: Fields
|
||||
sort?: Sort
|
||||
_source?: SearchSourceConfig
|
||||
stored_field?: Fields
|
||||
stored_fields?: Fields
|
||||
track_scores?: boolean
|
||||
version?: boolean
|
||||
}
|
||||
@ -2337,7 +2337,7 @@ export interface InlineGetKeys<TDocument = unknown> {
|
||||
_seq_no?: SequenceNumber
|
||||
_primary_term?: long
|
||||
_routing?: Routing
|
||||
_source: TDocument
|
||||
_source?: TDocument
|
||||
}
|
||||
export type InlineGet<TDocument = unknown> = InlineGetKeys<TDocument>
|
||||
& { [property: string]: any }
|
||||
@ -4949,7 +4949,7 @@ export interface MappingDenseVectorIndexOptions {
|
||||
|
||||
export interface MappingDenseVectorProperty extends MappingPropertyBase {
|
||||
type: 'dense_vector'
|
||||
dims: integer
|
||||
dims?: integer
|
||||
similarity?: string
|
||||
index?: boolean
|
||||
index_options?: MappingDenseVectorIndexOptions
|
||||
@ -5050,6 +5050,9 @@ export interface MappingGeoPointProperty extends MappingDocValuesPropertyBase {
|
||||
ignore_malformed?: boolean
|
||||
ignore_z_value?: boolean
|
||||
null_value?: GeoLocation
|
||||
index?: boolean
|
||||
on_script_error?: MappingOnScriptError
|
||||
script?: Script
|
||||
type: 'geo_point'
|
||||
}
|
||||
|
||||
@ -5203,6 +5206,7 @@ export interface MappingRankFeatureProperty extends MappingPropertyBase {
|
||||
}
|
||||
|
||||
export interface MappingRankFeaturesProperty extends MappingPropertyBase {
|
||||
positive_score_impact?: boolean
|
||||
type: 'rank_features'
|
||||
}
|
||||
|
||||
@ -9114,7 +9118,7 @@ export interface EnrichExecutePolicyRequest extends RequestBase {
|
||||
}
|
||||
|
||||
export interface EnrichExecutePolicyResponse {
|
||||
status: EnrichExecutePolicyExecuteEnrichPolicyStatus
|
||||
status?: EnrichExecutePolicyExecuteEnrichPolicyStatus
|
||||
task_id?: TaskId
|
||||
}
|
||||
|
||||
@ -10331,7 +10335,7 @@ export interface IndicesDataStreamsStatsDataStreamsStatsItem {
|
||||
data_stream: Name
|
||||
maximum_timestamp: EpochTime<UnitMillis>
|
||||
store_size?: ByteSize
|
||||
store_size_bytes: integer
|
||||
store_size_bytes: long
|
||||
}
|
||||
|
||||
export interface IndicesDataStreamsStatsRequest extends RequestBase {
|
||||
@ -10345,7 +10349,7 @@ export interface IndicesDataStreamsStatsResponse {
|
||||
data_stream_count: integer
|
||||
data_streams: IndicesDataStreamsStatsDataStreamsStatsItem[]
|
||||
total_store_sizes?: ByteSize
|
||||
total_store_size_bytes: integer
|
||||
total_store_size_bytes: long
|
||||
}
|
||||
|
||||
export interface IndicesDeleteRequest extends RequestBase {
|
||||
@ -16209,7 +16213,7 @@ export interface SecurityRoleDescriptor {
|
||||
applications?: SecurityApplicationPrivileges[]
|
||||
metadata?: Metadata
|
||||
run_as?: string[]
|
||||
transient_metadata?: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
}
|
||||
|
||||
export interface SecurityRoleDescriptorRead {
|
||||
@ -16220,7 +16224,7 @@ export interface SecurityRoleDescriptorRead {
|
||||
applications?: SecurityApplicationPrivileges[]
|
||||
metadata?: Metadata
|
||||
run_as?: string[]
|
||||
transient_metadata?: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
}
|
||||
|
||||
export interface SecurityRoleMapping {
|
||||
@ -16259,10 +16263,6 @@ export type SecurityRoleTemplateScript = SecurityRoleTemplateInlineScript | Secu
|
||||
|
||||
export type SecurityTemplateFormat = 'string' | 'json'
|
||||
|
||||
export interface SecurityTransientMetadataConfig {
|
||||
enabled: boolean
|
||||
}
|
||||
|
||||
export interface SecurityUser {
|
||||
email?: string | null
|
||||
full_name?: Name | null
|
||||
@ -16591,7 +16591,7 @@ export interface SecurityGetRoleRole {
|
||||
indices: SecurityIndicesPrivileges[]
|
||||
metadata: Metadata
|
||||
run_as: string[]
|
||||
transient_metadata: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
applications: SecurityApplicationPrivileges[]
|
||||
role_templates?: SecurityRoleTemplate[]
|
||||
global?: Record<string, Record<string, Record<string, string[]>>>
|
||||
@ -16863,7 +16863,7 @@ export interface SecurityPutRoleRequest extends RequestBase {
|
||||
indices?: SecurityIndicesPrivileges[]
|
||||
metadata?: Metadata
|
||||
run_as?: string[]
|
||||
transient_metadata?: SecurityTransientMetadataConfig
|
||||
transient_metadata?: Record<string, any>
|
||||
}
|
||||
}
|
||||
|
||||
@ -17262,11 +17262,37 @@ export interface SlmStopRequest extends RequestBase {
|
||||
|
||||
export type SlmStopResponse = AcknowledgedResponseBase
|
||||
|
||||
export interface SnapshotAzureRepository extends SnapshotRepositoryBase {
|
||||
type: 'azure'
|
||||
settings: SnapshotAzureRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotAzureRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
client?: string
|
||||
container?: string
|
||||
base_path?: string
|
||||
readonly?: boolean
|
||||
location_mode?: string
|
||||
}
|
||||
|
||||
export interface SnapshotFileCountSnapshotStats {
|
||||
file_count: integer
|
||||
size_in_bytes: long
|
||||
}
|
||||
|
||||
export interface SnapshotGcsRepository extends SnapshotRepositoryBase {
|
||||
type: 'gcs'
|
||||
settings: SnapshotGcsRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotGcsRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
bucket: string
|
||||
client?: string
|
||||
base_path?: string
|
||||
readonly?: boolean
|
||||
application_name?: string
|
||||
}
|
||||
|
||||
export interface SnapshotIndexDetails {
|
||||
shard_count: integer
|
||||
size?: ByteSize
|
||||
@ -17279,19 +17305,45 @@ export interface SnapshotInfoFeatureState {
|
||||
indices: Indices
|
||||
}
|
||||
|
||||
export interface SnapshotRepository {
|
||||
type: string
|
||||
uuid?: Uuid
|
||||
settings: SnapshotRepositorySettings
|
||||
export interface SnapshotReadOnlyUrlRepository extends SnapshotRepositoryBase {
|
||||
type: 'url'
|
||||
settings: SnapshotReadOnlyUrlRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotRepositorySettings {
|
||||
chunk_size?: string
|
||||
compress?: string | boolean
|
||||
concurrent_streams?: string | integer
|
||||
location: string
|
||||
read_only?: string | boolean
|
||||
readonly?: string | boolean
|
||||
export interface SnapshotReadOnlyUrlRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
http_max_retries?: integer
|
||||
http_socket_timeout?: Duration
|
||||
max_number_of_snapshots?: integer
|
||||
url: string
|
||||
}
|
||||
|
||||
export type SnapshotRepository = SnapshotAzureRepository | SnapshotGcsRepository | SnapshotS3Repository | SnapshotSharedFileSystemRepository | SnapshotReadOnlyUrlRepository | SnapshotSourceOnlyRepository
|
||||
|
||||
export interface SnapshotRepositoryBase {
|
||||
uuid?: Uuid
|
||||
}
|
||||
|
||||
export interface SnapshotRepositorySettingsBase {
|
||||
chunk_size?: ByteSize
|
||||
compress?: boolean
|
||||
max_restore_bytes_per_sec?: ByteSize
|
||||
max_snapshot_bytes_per_sec?: ByteSize
|
||||
}
|
||||
|
||||
export interface SnapshotS3Repository extends SnapshotRepositoryBase {
|
||||
type: 's3'
|
||||
settings: SnapshotS3RepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotS3RepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
bucket: string
|
||||
client?: string
|
||||
base_path?: string
|
||||
readonly?: boolean
|
||||
server_side_encryption?: boolean
|
||||
buffer_size?: ByteSize
|
||||
canned_acl?: string
|
||||
storage_class?: string
|
||||
}
|
||||
|
||||
export interface SnapshotShardsStats {
|
||||
@ -17318,6 +17370,17 @@ export interface SnapshotShardsStatsSummaryItem {
|
||||
size_in_bytes: long
|
||||
}
|
||||
|
||||
export interface SnapshotSharedFileSystemRepository extends SnapshotRepositoryBase {
|
||||
type: 'fs'
|
||||
settings: SnapshotSharedFileSystemRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotSharedFileSystemRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
location: string
|
||||
max_number_of_snapshots?: integer
|
||||
readonly?: boolean
|
||||
}
|
||||
|
||||
export interface SnapshotSnapshotIndexStats {
|
||||
shards: Record<string, SnapshotSnapshotShardsStatus>
|
||||
shards_stats: SnapshotShardsStats
|
||||
@ -17371,6 +17434,18 @@ export interface SnapshotSnapshotStats {
|
||||
total: SnapshotFileCountSnapshotStats
|
||||
}
|
||||
|
||||
export interface SnapshotSourceOnlyRepository extends SnapshotRepositoryBase {
|
||||
type: 'source'
|
||||
settings: SnapshotSourceOnlyRepositorySettings
|
||||
}
|
||||
|
||||
export interface SnapshotSourceOnlyRepositorySettings extends SnapshotRepositorySettingsBase {
|
||||
delegate_type?: string
|
||||
max_number_of_snapshots?: integer
|
||||
read_only?: boolean
|
||||
readonly?: boolean
|
||||
}
|
||||
|
||||
export interface SnapshotStatus {
|
||||
include_global_state: boolean
|
||||
indices: Record<string, SnapshotSnapshotIndexStats>
|
||||
@ -17437,12 +17512,8 @@ export interface SnapshotCreateRepositoryRequest extends RequestBase {
|
||||
master_timeout?: Duration
|
||||
timeout?: Duration
|
||||
verify?: boolean
|
||||
/** @deprecated The use of the 'body' key has been deprecated, move the nested keys to the top level object. */
|
||||
body?: {
|
||||
repository?: SnapshotRepository
|
||||
type: string
|
||||
settings: SnapshotRepositorySettings
|
||||
}
|
||||
/** @deprecated The use of the 'body' key has been deprecated, use 'repository' instead. */
|
||||
body?: SnapshotRepository
|
||||
}
|
||||
|
||||
export type SnapshotCreateRepositoryResponse = AcknowledgedResponseBase
|
||||
|
||||
Reference in New Issue
Block a user