@grafana/openapi 13.2.0-28985753600 → 13.2.1
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 +4130 -1980
- 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 +237 -23
- package/dist/apis/provisioning.grafana.app-v1beta1.json +206 -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"
|
|
@@ -3835,6 +3915,78 @@
|
|
|
3835
3915
|
}
|
|
3836
3916
|
]
|
|
3837
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
|
+
},
|
|
3838
3990
|
"ConnectionInfo": {
|
|
3839
3991
|
"type": "object",
|
|
3840
3992
|
"required": ["name"],
|
|
@@ -3886,6 +4038,17 @@
|
|
|
3886
4038
|
}
|
|
3887
4039
|
]
|
|
3888
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
|
+
},
|
|
3889
4052
|
"ConnectionSecure": {
|
|
3890
4053
|
"type": "object",
|
|
3891
4054
|
"properties": {
|
|
@@ -3950,11 +4113,11 @@
|
|
|
3950
4113
|
}
|
|
3951
4114
|
]
|
|
3952
4115
|
},
|
|
3953
|
-
"
|
|
3954
|
-
"description": "
|
|
4116
|
+
"oauth": {
|
|
4117
|
+
"description": "OAuth app configuration shared by all OAuth app providers",
|
|
3955
4118
|
"allOf": [
|
|
3956
4119
|
{
|
|
3957
|
-
"$ref": "#/components/schemas/
|
|
4120
|
+
"$ref": "#/components/schemas/ConnectionOAuthConfig"
|
|
3958
4121
|
}
|
|
3959
4122
|
]
|
|
3960
4123
|
},
|
|
@@ -4031,6 +4194,15 @@
|
|
|
4031
4194
|
"type": "integer",
|
|
4032
4195
|
"format": "int64",
|
|
4033
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
|
+
]
|
|
4034
4206
|
}
|
|
4035
4207
|
}
|
|
4036
4208
|
},
|
|
@@ -4304,10 +4476,6 @@
|
|
|
4304
4476
|
"type": "string",
|
|
4305
4477
|
"default": ""
|
|
4306
4478
|
},
|
|
4307
|
-
"generateDashboardPreviews": {
|
|
4308
|
-
"description": "Whether we should show dashboard previews for pull requests.",
|
|
4309
|
-
"type": "boolean"
|
|
4310
|
-
},
|
|
4311
4479
|
"path": {
|
|
4312
4480
|
"description": "Path is the subdirectory for the Grafana data inside the repository.",
|
|
4313
4481
|
"type": "string"
|
|
@@ -4387,17 +4555,6 @@
|
|
|
4387
4555
|
}
|
|
4388
4556
|
}
|
|
4389
4557
|
},
|
|
4390
|
-
"GitlabConnectionConfig": {
|
|
4391
|
-
"type": "object",
|
|
4392
|
-
"required": ["clientID"],
|
|
4393
|
-
"properties": {
|
|
4394
|
-
"clientID": {
|
|
4395
|
-
"description": "App client ID",
|
|
4396
|
-
"type": "string",
|
|
4397
|
-
"default": ""
|
|
4398
|
-
}
|
|
4399
|
-
}
|
|
4400
|
-
},
|
|
4401
4558
|
"HealthStatus": {
|
|
4402
4559
|
"type": "object",
|
|
4403
4560
|
"required": ["healthy"],
|
|
@@ -4687,6 +4844,11 @@
|
|
|
4687
4844
|
"type": "integer",
|
|
4688
4845
|
"format": "int64"
|
|
4689
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
|
+
},
|
|
4690
4852
|
"update": {
|
|
4691
4853
|
"type": "integer",
|
|
4692
4854
|
"format": "int64"
|
|
@@ -4714,7 +4876,7 @@
|
|
|
4714
4876
|
"required": ["action"],
|
|
4715
4877
|
"properties": {
|
|
4716
4878
|
"action": {
|
|
4717
|
-
"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.",
|
|
4718
4880
|
"type": "string",
|
|
4719
4881
|
"default": "",
|
|
4720
4882
|
"enum": [
|
|
@@ -4726,7 +4888,8 @@
|
|
|
4726
4888
|
"pr",
|
|
4727
4889
|
"pull",
|
|
4728
4890
|
"push",
|
|
4729
|
-
"releaseResources"
|
|
4891
|
+
"releaseResources",
|
|
4892
|
+
"test"
|
|
4730
4893
|
]
|
|
4731
4894
|
},
|
|
4732
4895
|
"delete": {
|
|
@@ -4792,6 +4955,14 @@
|
|
|
4792
4955
|
"repository": {
|
|
4793
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",
|
|
4794
4957
|
"type": "string"
|
|
4958
|
+
},
|
|
4959
|
+
"test": {
|
|
4960
|
+
"description": "Required when the action is `test`",
|
|
4961
|
+
"allOf": [
|
|
4962
|
+
{
|
|
4963
|
+
"$ref": "#/components/schemas/TestJobOptions"
|
|
4964
|
+
}
|
|
4965
|
+
]
|
|
4795
4966
|
}
|
|
4796
4967
|
}
|
|
4797
4968
|
},
|
|
@@ -4818,6 +4989,11 @@
|
|
|
4818
4989
|
"type": "number",
|
|
4819
4990
|
"format": "double"
|
|
4820
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
|
+
},
|
|
4821
4997
|
"started": {
|
|
4822
4998
|
"type": "integer",
|
|
4823
4999
|
"format": "int64"
|
|
@@ -4887,6 +5063,10 @@
|
|
|
4887
5063
|
"MigrateJobOptions": {
|
|
4888
5064
|
"type": "object",
|
|
4889
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
|
+
},
|
|
4890
5070
|
"generateNewFolderIDs": {
|
|
4891
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.",
|
|
4892
5072
|
"type": "boolean"
|
|
@@ -4906,6 +5086,10 @@
|
|
|
4906
5086
|
}
|
|
4907
5087
|
]
|
|
4908
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"
|
|
4909
5093
|
}
|
|
4910
5094
|
}
|
|
4911
5095
|
},
|
|
@@ -4971,6 +5155,10 @@
|
|
|
4971
5155
|
"description": "When true, the PR title field in Save drawers is read-only.",
|
|
4972
5156
|
"type": "boolean"
|
|
4973
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
|
+
},
|
|
4974
5162
|
"titleTemplate": {
|
|
4975
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.",
|
|
4976
5164
|
"type": "string"
|
|
@@ -6021,6 +6209,25 @@
|
|
|
6021
6209
|
}
|
|
6022
6210
|
}
|
|
6023
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
|
+
},
|
|
6024
6231
|
"TestResults": {
|
|
6025
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.",
|
|
6026
6233
|
"type": "object",
|
|
@@ -6153,6 +6360,9 @@
|
|
|
6153
6360
|
},
|
|
6154
6361
|
"url": {
|
|
6155
6362
|
"type": "string"
|
|
6363
|
+
},
|
|
6364
|
+
"uuid": {
|
|
6365
|
+
"type": "string"
|
|
6156
6366
|
}
|
|
6157
6367
|
}
|
|
6158
6368
|
},
|
|
@@ -6384,6 +6594,10 @@
|
|
|
6384
6594
|
}
|
|
6385
6595
|
}
|
|
6386
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
|
+
},
|
|
6387
6601
|
"FieldsV1": {
|
|
6388
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",
|
|
6389
6603
|
"type": "object"
|