@grafana/openapi 13.2.0-28908703397 → 13.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/api/openapi3.json +3 -0
- package/dist/apis/advisor.grafana.app-v0alpha1.json +63 -0
- package/dist/apis/correlations.grafana.app-v0alpha1.json +156 -0
- package/dist/apis/dashboard.grafana.app-v2.json +16 -5
- package/dist/apis/dashboard.grafana.app-v2alpha1.json +16 -5
- package/dist/apis/dashboard.grafana.app-v2beta1.json +4852 -1867
- package/dist/apis/iam.grafana.app-v0alpha1.json +39 -0
- package/dist/apis/notifications.alerting.grafana.app-v1beta1.json +1121 -0
- package/dist/apis/plugins.grafana.app-v0alpha1.json +2933 -0
- package/dist/apis/provisioning.grafana.app-v0alpha1.json +241 -23
- package/dist/apis/provisioning.grafana.app-v1beta1.json +210 -22
- package/dist/apis/rules.alerting.grafana.app-v0alpha1.json +310 -5
- package/dist/apis/shorturl.grafana.app-v1beta1.json +180 -1
- package/package.json +4 -3
|
@@ -732,6 +732,74 @@
|
|
|
732
732
|
}
|
|
733
733
|
]
|
|
734
734
|
},
|
|
735
|
+
"/connections/{name}/authorize": {
|
|
736
|
+
"post": {
|
|
737
|
+
"tags": ["Connection"],
|
|
738
|
+
"description": "Complete the OAuth authorization of this connection by exchanging an authorization code",
|
|
739
|
+
"operationId": "createConnectionAuthorize",
|
|
740
|
+
"requestBody": {
|
|
741
|
+
"content": {
|
|
742
|
+
"application/json": {
|
|
743
|
+
"schema": {
|
|
744
|
+
"description": "ConnectionAuthorizeRequest completes the OAuth authorization of a connection by exchanging an authorization code for tokens. It is the request and response body of the connection authorize subresource.",
|
|
745
|
+
"type": "object",
|
|
746
|
+
"required": ["spec"],
|
|
747
|
+
"properties": {
|
|
748
|
+
"apiVersion": {
|
|
749
|
+
"description": "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",
|
|
750
|
+
"type": "string"
|
|
751
|
+
},
|
|
752
|
+
"kind": {
|
|
753
|
+
"description": "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",
|
|
754
|
+
"type": "string"
|
|
755
|
+
},
|
|
756
|
+
"metadata": {
|
|
757
|
+
"default": {}
|
|
758
|
+
},
|
|
759
|
+
"spec": {
|
|
760
|
+
"default": {}
|
|
761
|
+
},
|
|
762
|
+
"status": {
|
|
763
|
+
"default": {}
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
}
|
|
768
|
+
},
|
|
769
|
+
"required": true
|
|
770
|
+
},
|
|
771
|
+
"responses": {
|
|
772
|
+
"200": {
|
|
773
|
+
"description": "OK",
|
|
774
|
+
"content": {
|
|
775
|
+
"application/json": {
|
|
776
|
+
"schema": {
|
|
777
|
+
"$ref": "#/components/schemas/ConnectionAuthorizeRequest"
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
},
|
|
783
|
+
"x-kubernetes-action": "connect",
|
|
784
|
+
"x-kubernetes-group-version-kind": {
|
|
785
|
+
"group": "provisioning.grafana.app",
|
|
786
|
+
"version": "v0alpha1",
|
|
787
|
+
"kind": "ConnectionAuthorizeRequest"
|
|
788
|
+
}
|
|
789
|
+
},
|
|
790
|
+
"parameters": [
|
|
791
|
+
{
|
|
792
|
+
"name": "name",
|
|
793
|
+
"in": "path",
|
|
794
|
+
"description": "name of the ConnectionAuthorizeRequest",
|
|
795
|
+
"required": true,
|
|
796
|
+
"schema": {
|
|
797
|
+
"type": "string",
|
|
798
|
+
"uniqueItems": true
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
]
|
|
802
|
+
},
|
|
735
803
|
"/connections/{name}/repositories": {
|
|
736
804
|
"get": {
|
|
737
805
|
"tags": ["Connection"],
|
|
@@ -3703,10 +3771,10 @@
|
|
|
3703
3771
|
},
|
|
3704
3772
|
"BitbucketConnectionConfig": {
|
|
3705
3773
|
"type": "object",
|
|
3706
|
-
"required": ["
|
|
3774
|
+
"required": ["workspace"],
|
|
3707
3775
|
"properties": {
|
|
3708
|
-
"
|
|
3709
|
-
"description": "
|
|
3776
|
+
"workspace": {
|
|
3777
|
+
"description": "The workspace the OAuth consumer belongs to",
|
|
3710
3778
|
"type": "string",
|
|
3711
3779
|
"default": ""
|
|
3712
3780
|
}
|
|
@@ -3721,6 +3789,10 @@
|
|
|
3721
3789
|
"type": "string",
|
|
3722
3790
|
"default": ""
|
|
3723
3791
|
},
|
|
3792
|
+
"email": {
|
|
3793
|
+
"description": "Email is the Atlassian account email used to authenticate the Bitbucket REST API. Required to enable webhooks.",
|
|
3794
|
+
"type": "string"
|
|
3795
|
+
},
|
|
3724
3796
|
"path": {
|
|
3725
3797
|
"description": "Path is the subdirectory for the Grafana data. If specified, Grafana will ignore anything that is outside this directory in the repository. This is usually something like `grafana/`. Trailing and leading slash are not required. They are always added when needed. The path is relative to the root of the repository, regardless of the leading slash.\n\nWhen specifying something like `grafana-`, we will not look for `grafana-*`; we will only look for files under the directory `/grafana-/`. That means `/grafana-example.json` would not be found.",
|
|
3726
3798
|
"type": "string"
|
|
@@ -3751,6 +3823,14 @@
|
|
|
3751
3823
|
"CommitOptions": {
|
|
3752
3824
|
"type": "object",
|
|
3753
3825
|
"properties": {
|
|
3826
|
+
"authorEmail": {
|
|
3827
|
+
"description": "Email used as the commit author instead of the user who triggered the commit. Only valid when signingMethod is unset.",
|
|
3828
|
+
"type": "string"
|
|
3829
|
+
},
|
|
3830
|
+
"authorName": {
|
|
3831
|
+
"description": "Name used as the commit author instead of the user who triggered the commit. Only valid when signingMethod is unset.",
|
|
3832
|
+
"type": "string"
|
|
3833
|
+
},
|
|
3754
3834
|
"enforceTemplate": {
|
|
3755
3835
|
"description": "When true, the Comment field in Save drawers is pre-filled from SingleResourceMessageTemplate and rendered read-only.",
|
|
3756
3836
|
"type": "boolean"
|
|
@@ -3759,6 +3839,10 @@
|
|
|
3759
3839
|
"description": "Email used as the commit signer. Must match the signing key's identity and a verified email on the account where the matching public key is registered. When empty, defaults to \"noreply@grafana.com\".",
|
|
3760
3840
|
"type": "string"
|
|
3761
3841
|
},
|
|
3842
|
+
"signerIsAuthor": {
|
|
3843
|
+
"description": "When true, commits are authored by the signer identity (signerName/signerEmail).",
|
|
3844
|
+
"type": "boolean"
|
|
3845
|
+
},
|
|
3762
3846
|
"signerName": {
|
|
3763
3847
|
"description": "Name used as the commit signer. Required for the signing key's identity to match the commit, which providers need to mark commits as Verified. When empty, defaults to \"Grafana\".",
|
|
3764
3848
|
"type": "string"
|
|
@@ -3831,6 +3915,78 @@
|
|
|
3831
3915
|
}
|
|
3832
3916
|
]
|
|
3833
3917
|
},
|
|
3918
|
+
"ConnectionAuthorizeRequest": {
|
|
3919
|
+
"description": "ConnectionAuthorizeRequest completes the OAuth authorization of a connection by exchanging an authorization code for tokens. It is the request and response body of the connection authorize subresource.",
|
|
3920
|
+
"type": "object",
|
|
3921
|
+
"required": ["spec"],
|
|
3922
|
+
"properties": {
|
|
3923
|
+
"apiVersion": {
|
|
3924
|
+
"description": "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",
|
|
3925
|
+
"type": "string"
|
|
3926
|
+
},
|
|
3927
|
+
"kind": {
|
|
3928
|
+
"description": "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",
|
|
3929
|
+
"type": "string"
|
|
3930
|
+
},
|
|
3931
|
+
"metadata": {
|
|
3932
|
+
"default": {},
|
|
3933
|
+
"allOf": [
|
|
3934
|
+
{
|
|
3935
|
+
"$ref": "#/components/schemas/ObjectMeta"
|
|
3936
|
+
}
|
|
3937
|
+
]
|
|
3938
|
+
},
|
|
3939
|
+
"spec": {
|
|
3940
|
+
"default": {},
|
|
3941
|
+
"allOf": [
|
|
3942
|
+
{
|
|
3943
|
+
"$ref": "#/components/schemas/ConnectionAuthorizeRequestSpec"
|
|
3944
|
+
}
|
|
3945
|
+
]
|
|
3946
|
+
},
|
|
3947
|
+
"status": {
|
|
3948
|
+
"default": {},
|
|
3949
|
+
"allOf": [
|
|
3950
|
+
{
|
|
3951
|
+
"$ref": "#/components/schemas/ConnectionAuthorizeRequestStatus"
|
|
3952
|
+
}
|
|
3953
|
+
]
|
|
3954
|
+
}
|
|
3955
|
+
},
|
|
3956
|
+
"x-kubernetes-group-version-kind": [
|
|
3957
|
+
{
|
|
3958
|
+
"group": "provisioning.grafana.app",
|
|
3959
|
+
"kind": "ConnectionAuthorizeRequest",
|
|
3960
|
+
"version": "v0alpha1"
|
|
3961
|
+
}
|
|
3962
|
+
]
|
|
3963
|
+
},
|
|
3964
|
+
"ConnectionAuthorizeRequestSpec": {
|
|
3965
|
+
"type": "object",
|
|
3966
|
+
"required": ["code"],
|
|
3967
|
+
"properties": {
|
|
3968
|
+
"code": {
|
|
3969
|
+
"description": "The authorization code returned by the provider",
|
|
3970
|
+
"type": "string",
|
|
3971
|
+
"default": ""
|
|
3972
|
+
},
|
|
3973
|
+
"redirectURI": {
|
|
3974
|
+
"description": "The redirect URI used in the authorization request",
|
|
3975
|
+
"type": "string"
|
|
3976
|
+
}
|
|
3977
|
+
}
|
|
3978
|
+
},
|
|
3979
|
+
"ConnectionAuthorizeRequestStatus": {
|
|
3980
|
+
"type": "object",
|
|
3981
|
+
"required": ["authorized"],
|
|
3982
|
+
"properties": {
|
|
3983
|
+
"authorized": {
|
|
3984
|
+
"description": "Whether the connection has been authorized",
|
|
3985
|
+
"type": "boolean",
|
|
3986
|
+
"default": false
|
|
3987
|
+
}
|
|
3988
|
+
}
|
|
3989
|
+
},
|
|
3834
3990
|
"ConnectionInfo": {
|
|
3835
3991
|
"type": "object",
|
|
3836
3992
|
"required": ["name"],
|
|
@@ -3882,6 +4038,17 @@
|
|
|
3882
4038
|
}
|
|
3883
4039
|
]
|
|
3884
4040
|
},
|
|
4041
|
+
"ConnectionOAuthConfig": {
|
|
4042
|
+
"type": "object",
|
|
4043
|
+
"required": ["clientID"],
|
|
4044
|
+
"properties": {
|
|
4045
|
+
"clientID": {
|
|
4046
|
+
"description": "The OAuth app client ID",
|
|
4047
|
+
"type": "string",
|
|
4048
|
+
"default": ""
|
|
4049
|
+
}
|
|
4050
|
+
}
|
|
4051
|
+
},
|
|
3885
4052
|
"ConnectionSecure": {
|
|
3886
4053
|
"type": "object",
|
|
3887
4054
|
"properties": {
|
|
@@ -3946,11 +4113,11 @@
|
|
|
3946
4113
|
}
|
|
3947
4114
|
]
|
|
3948
4115
|
},
|
|
3949
|
-
"
|
|
3950
|
-
"description": "
|
|
4116
|
+
"oauth": {
|
|
4117
|
+
"description": "OAuth app configuration shared by all OAuth app providers",
|
|
3951
4118
|
"allOf": [
|
|
3952
4119
|
{
|
|
3953
|
-
"$ref": "#/components/schemas/
|
|
4120
|
+
"$ref": "#/components/schemas/ConnectionOAuthConfig"
|
|
3954
4121
|
}
|
|
3955
4122
|
]
|
|
3956
4123
|
},
|
|
@@ -4027,6 +4194,15 @@
|
|
|
4027
4194
|
"type": "integer",
|
|
4028
4195
|
"format": "int64",
|
|
4029
4196
|
"default": 0
|
|
4197
|
+
},
|
|
4198
|
+
"token": {
|
|
4199
|
+
"description": "Token holds metadata about the last generated connection token, used to avoid regenerating a token whose secret was written recently but is not yet readable.",
|
|
4200
|
+
"default": {},
|
|
4201
|
+
"allOf": [
|
|
4202
|
+
{
|
|
4203
|
+
"$ref": "#/components/schemas/TokenStatus"
|
|
4204
|
+
}
|
|
4205
|
+
]
|
|
4030
4206
|
}
|
|
4031
4207
|
}
|
|
4032
4208
|
},
|
|
@@ -4300,10 +4476,6 @@
|
|
|
4300
4476
|
"type": "string",
|
|
4301
4477
|
"default": ""
|
|
4302
4478
|
},
|
|
4303
|
-
"generateDashboardPreviews": {
|
|
4304
|
-
"description": "Whether we should show dashboard previews for pull requests.",
|
|
4305
|
-
"type": "boolean"
|
|
4306
|
-
},
|
|
4307
4479
|
"path": {
|
|
4308
4480
|
"description": "Path is the subdirectory for the Grafana data inside the repository.",
|
|
4309
4481
|
"type": "string"
|
|
@@ -4383,17 +4555,6 @@
|
|
|
4383
4555
|
}
|
|
4384
4556
|
}
|
|
4385
4557
|
},
|
|
4386
|
-
"GitlabConnectionConfig": {
|
|
4387
|
-
"type": "object",
|
|
4388
|
-
"required": ["clientID"],
|
|
4389
|
-
"properties": {
|
|
4390
|
-
"clientID": {
|
|
4391
|
-
"description": "App client ID",
|
|
4392
|
-
"type": "string",
|
|
4393
|
-
"default": ""
|
|
4394
|
-
}
|
|
4395
|
-
}
|
|
4396
|
-
},
|
|
4397
4558
|
"HealthStatus": {
|
|
4398
4559
|
"type": "object",
|
|
4399
4560
|
"required": ["healthy"],
|
|
@@ -4683,6 +4844,11 @@
|
|
|
4683
4844
|
"type": "integer",
|
|
4684
4845
|
"format": "int64"
|
|
4685
4846
|
},
|
|
4847
|
+
"totalChanges": {
|
|
4848
|
+
"description": "TotalChanges is the action-aware count of resources changed for this group/kind, set by the progress recorder as results are recorded. Used for the job-duration histogram's resources_changed bucket.",
|
|
4849
|
+
"type": "integer",
|
|
4850
|
+
"format": "int64"
|
|
4851
|
+
},
|
|
4686
4852
|
"update": {
|
|
4687
4853
|
"type": "integer",
|
|
4688
4854
|
"format": "int64"
|
|
@@ -4710,7 +4876,7 @@
|
|
|
4710
4876
|
"required": ["action"],
|
|
4711
4877
|
"properties": {
|
|
4712
4878
|
"action": {
|
|
4713
|
-
"description": "Possible enum values:\n - `\"delete\"` deletes files in the remote repository\n - `\"deleteResources\"` deletes all resources managed by a repository that no longer exists or is stuck in Terminating state. This action has inverted validation: it is only allowed when the repository does not exist or has a DeletionTimestamp set.\n - `\"fixFolderMetadata\"` is a placeholder job that will eventually regenerate folder metadata files. Currently a no-op to unblock frontend development.\n - `\"migrate\"` acts like JobActionExport, then JobActionPull. It also tries to preserve the history.\n - `\"move\"` moves files in the remote repository\n - `\"pr\"` adds additional useful information to a PR, such as comments with preview links and rendered images.\n - `\"pull\"` replicates the remote branch in the local copy of the repository.\n - `\"push\"` replicates the local copy of the repository in the remote branch.\n - `\"releaseResources\"` removes ownership annotations from all resources managed by a repository that no longer exists or is stuck in Terminating state. Resources remain in Grafana but become unmanaged. This action has inverted validation: it is only allowed when the repository does not exist or has a DeletionTimestamp set.",
|
|
4879
|
+
"description": "Possible enum values:\n - `\"delete\"` deletes files in the remote repository\n - `\"deleteResources\"` deletes all resources managed by a repository that no longer exists or is stuck in Terminating state. This action has inverted validation: it is only allowed when the repository does not exist or has a DeletionTimestamp set.\n - `\"fixFolderMetadata\"` is a placeholder job that will eventually regenerate folder metadata files. Currently a no-op to unblock frontend development.\n - `\"migrate\"` acts like JobActionExport, then JobActionPull. It also tries to preserve the history.\n - `\"move\"` moves files in the remote repository\n - `\"pr\"` adds additional useful information to a PR, such as comments with preview links and rendered images.\n - `\"pull\"` replicates the remote branch in the local copy of the repository.\n - `\"push\"` replicates the local copy of the repository in the remote branch.\n - `\"releaseResources\"` removes ownership annotations from all resources managed by a repository that no longer exists or is stuck in Terminating state. Resources remain in Grafana but become unmanaged. This action has inverted validation: it is only allowed when the repository does not exist or has a DeletionTimestamp set.\n - `\"test\"` is a synthetic job that does no real work: it simply sleeps for a configurable duration and then completes successfully. It exists only to generate controlled load on the job queue and controllers for performance testing, and is gated behind the provisioning.performance feature flag.",
|
|
4714
4880
|
"type": "string",
|
|
4715
4881
|
"default": "",
|
|
4716
4882
|
"enum": [
|
|
@@ -4722,7 +4888,8 @@
|
|
|
4722
4888
|
"pr",
|
|
4723
4889
|
"pull",
|
|
4724
4890
|
"push",
|
|
4725
|
-
"releaseResources"
|
|
4891
|
+
"releaseResources",
|
|
4892
|
+
"test"
|
|
4726
4893
|
]
|
|
4727
4894
|
},
|
|
4728
4895
|
"delete": {
|
|
@@ -4788,6 +4955,14 @@
|
|
|
4788
4955
|
"repository": {
|
|
4789
4956
|
"description": "The the repository reference (for now also in labels) This value is required, but will be popuplated from the job making the request",
|
|
4790
4957
|
"type": "string"
|
|
4958
|
+
},
|
|
4959
|
+
"test": {
|
|
4960
|
+
"description": "Required when the action is `test`",
|
|
4961
|
+
"allOf": [
|
|
4962
|
+
{
|
|
4963
|
+
"$ref": "#/components/schemas/TestJobOptions"
|
|
4964
|
+
}
|
|
4965
|
+
]
|
|
4791
4966
|
}
|
|
4792
4967
|
}
|
|
4793
4968
|
},
|
|
@@ -4814,6 +4989,11 @@
|
|
|
4814
4989
|
"type": "number",
|
|
4815
4990
|
"format": "double"
|
|
4816
4991
|
},
|
|
4992
|
+
"progressUpdates": {
|
|
4993
|
+
"description": "ProgressUpdates is the number of times the job's status has been written while it was processed. It is carried over to the historic job so the total number of progress updates a job went through remains observable after completion.",
|
|
4994
|
+
"type": "integer",
|
|
4995
|
+
"format": "int64"
|
|
4996
|
+
},
|
|
4817
4997
|
"started": {
|
|
4818
4998
|
"type": "integer",
|
|
4819
4999
|
"format": "int64"
|
|
@@ -4883,6 +5063,10 @@
|
|
|
4883
5063
|
"MigrateJobOptions": {
|
|
4884
5064
|
"type": "object",
|
|
4885
5065
|
"properties": {
|
|
5066
|
+
"branch": {
|
|
5067
|
+
"description": "Target branch for the migration (git only). When set to a branch other than the repository's configured branch, the migration writes the exported resources to that branch (a pull request workflow) and removes the migrated resources from the instance instead of taking ownership of them — they return as managed resources once the branch is merged and a regular sync runs on the configured branch. When empty (or equal to the configured branch), the migration writes directly to the configured branch and takes ownership of the exported resources.",
|
|
5068
|
+
"type": "string"
|
|
5069
|
+
},
|
|
4886
5070
|
"generateNewFolderIDs": {
|
|
4887
5071
|
"description": "GenerateNewFolderIDs writes a freshly generated identifier into each exported folder's metadata (_folder.json) instead of preserving the existing folder UID. The subsequent pull creates new folders rather than taking over the originals. Has no effect when folder metadata is not written.",
|
|
4888
5072
|
"type": "boolean"
|
|
@@ -4902,6 +5086,10 @@
|
|
|
4902
5086
|
}
|
|
4903
5087
|
]
|
|
4904
5088
|
}
|
|
5089
|
+
},
|
|
5090
|
+
"skipResourceDeletion": {
|
|
5091
|
+
"description": "SkipResourceDeletion keeps the migrated resources on the instance instead of removing them. By default a migration deletes the resources it moved (the whole namespace for an instance target, or the exported resources for a branch migration); when true, no deletion happens and the resources are left in place.",
|
|
5092
|
+
"type": "boolean"
|
|
4905
5093
|
}
|
|
4906
5094
|
}
|
|
4907
5095
|
},
|
|
@@ -4967,6 +5155,10 @@
|
|
|
4967
5155
|
"description": "When true, the PR title field in Save drawers is read-only.",
|
|
4968
5156
|
"type": "boolean"
|
|
4969
5157
|
},
|
|
5158
|
+
"generateDashboardPreviews": {
|
|
5159
|
+
"description": "Whether we should show dashboard previews for pull requests. By default, this is false (i.e. we will not create previews).",
|
|
5160
|
+
"type": "boolean"
|
|
5161
|
+
},
|
|
4970
5162
|
"titleTemplate": {
|
|
4971
5163
|
"description": "Template for pull request titles. Supports the same variables as BranchOptions.NameTemplate ({{random}} is available but rarely useful here). When empty, the first line of the commit message is used.",
|
|
4972
5164
|
"type": "string"
|
|
@@ -6017,6 +6209,25 @@
|
|
|
6017
6209
|
}
|
|
6018
6210
|
}
|
|
6019
6211
|
},
|
|
6212
|
+
"TestJobOptions": {
|
|
6213
|
+
"description": "TestJobOptions configures a synthetic performance-testing job. The job does no real work; it sleeps for Duration and then completes. It is only usable when the provisioning.performance feature flag is enabled.",
|
|
6214
|
+
"type": "object",
|
|
6215
|
+
"properties": {
|
|
6216
|
+
"duration": {
|
|
6217
|
+
"description": "Duration is how long the job should sleep before completing, expressed as a Go duration string (for example \"10s\" or \"2m\"). It must be positive and is capped by the server to keep a single job's runtime predictable.",
|
|
6218
|
+
"allOf": [
|
|
6219
|
+
{
|
|
6220
|
+
"$ref": "#/components/schemas/Duration"
|
|
6221
|
+
}
|
|
6222
|
+
]
|
|
6223
|
+
},
|
|
6224
|
+
"progressUpdates": {
|
|
6225
|
+
"description": "ProgressUpdates controls how many progress notifications the job emits while running. A value of 0 uses the server default.",
|
|
6226
|
+
"type": "integer",
|
|
6227
|
+
"format": "int32"
|
|
6228
|
+
}
|
|
6229
|
+
}
|
|
6230
|
+
},
|
|
6020
6231
|
"TestResults": {
|
|
6021
6232
|
"description": "TestResults is the result of a test connection operation Deprecated: this will go way when we deprecate the test endpoint We should use fieldErrors from status instead.",
|
|
6022
6233
|
"type": "object",
|
|
@@ -6149,6 +6360,9 @@
|
|
|
6149
6360
|
},
|
|
6150
6361
|
"url": {
|
|
6151
6362
|
"type": "string"
|
|
6363
|
+
},
|
|
6364
|
+
"uuid": {
|
|
6365
|
+
"type": "string"
|
|
6152
6366
|
}
|
|
6153
6367
|
}
|
|
6154
6368
|
},
|
|
@@ -6380,6 +6594,10 @@
|
|
|
6380
6594
|
}
|
|
6381
6595
|
}
|
|
6382
6596
|
},
|
|
6597
|
+
"Duration": {
|
|
6598
|
+
"description": "Duration is a wrapper around time.Duration which supports correct marshaling to YAML and JSON. In particular, it marshals into strings, which can be used as map keys in json.",
|
|
6599
|
+
"type": "string"
|
|
6600
|
+
},
|
|
6383
6601
|
"FieldsV1": {
|
|
6384
6602
|
"description": "FieldsV1 stores a set of fields in a data structure like a Trie, in JSON format.\n\nEach key is either a '.' representing the field itself, and will always map to an empty set, or a string representing a sub-field or item. The string will follow one of these four formats: 'f:<name>', where <name> is the name of a field in a struct, or key in a map 'v:<value>', where <value> is the exact json formatted value of a list item 'i:<index>', where <index> is position of a item in a list 'k:<keys>', where <keys> is a map of a list item's key fields to their unique values If a key maps to an empty Fields value, the field that key represents is part of the set.\n\nThe exact format is defined in sigs.k8s.io/structured-merge-diff",
|
|
6385
6603
|
"type": "object"
|