github.com/argoproj/argo-cd/v2@v2.10.9/assets/swagger.json (about)

     1  {
     2    "consumes": [
     3      "application/json"
     4    ],
     5    "produces": [
     6      "application/json"
     7    ],
     8    "swagger": "2.0",
     9    "info": {
    10      "description": "Description of all APIs",
    11      "title": "Consolidate Services",
    12      "version": "version not set"
    13    },
    14    "paths": {
    15      "/api/v1/account": {
    16        "get": {
    17          "tags": [
    18            "AccountService"
    19          ],
    20          "summary": "ListAccounts returns the list of accounts",
    21          "operationId": "AccountService_ListAccounts",
    22          "responses": {
    23            "200": {
    24              "description": "A successful response.",
    25              "schema": {
    26                "$ref": "#/definitions/accountAccountsList"
    27              }
    28            },
    29            "default": {
    30              "description": "An unexpected error response.",
    31              "schema": {
    32                "$ref": "#/definitions/runtimeError"
    33              }
    34            }
    35          }
    36        }
    37      },
    38      "/api/v1/account/can-i/{resource}/{action}/{subresource}": {
    39        "get": {
    40          "tags": [
    41            "AccountService"
    42          ],
    43          "summary": "CanI checks if the current account has permission to perform an action",
    44          "operationId": "AccountService_CanI",
    45          "parameters": [
    46            {
    47              "type": "string",
    48              "name": "resource",
    49              "in": "path",
    50              "required": true
    51            },
    52            {
    53              "type": "string",
    54              "name": "action",
    55              "in": "path",
    56              "required": true
    57            },
    58            {
    59              "type": "string",
    60              "name": "subresource",
    61              "in": "path",
    62              "required": true
    63            }
    64          ],
    65          "responses": {
    66            "200": {
    67              "description": "A successful response.",
    68              "schema": {
    69                "$ref": "#/definitions/accountCanIResponse"
    70              }
    71            },
    72            "default": {
    73              "description": "An unexpected error response.",
    74              "schema": {
    75                "$ref": "#/definitions/runtimeError"
    76              }
    77            }
    78          }
    79        }
    80      },
    81      "/api/v1/account/password": {
    82        "put": {
    83          "tags": [
    84            "AccountService"
    85          ],
    86          "summary": "UpdatePassword updates an account's password to a new value",
    87          "operationId": "AccountService_UpdatePassword",
    88          "parameters": [
    89            {
    90              "name": "body",
    91              "in": "body",
    92              "required": true,
    93              "schema": {
    94                "$ref": "#/definitions/accountUpdatePasswordRequest"
    95              }
    96            }
    97          ],
    98          "responses": {
    99            "200": {
   100              "description": "A successful response.",
   101              "schema": {
   102                "$ref": "#/definitions/accountUpdatePasswordResponse"
   103              }
   104            },
   105            "default": {
   106              "description": "An unexpected error response.",
   107              "schema": {
   108                "$ref": "#/definitions/runtimeError"
   109              }
   110            }
   111          }
   112        }
   113      },
   114      "/api/v1/account/{name}": {
   115        "get": {
   116          "tags": [
   117            "AccountService"
   118          ],
   119          "summary": "GetAccount returns an account",
   120          "operationId": "AccountService_GetAccount",
   121          "parameters": [
   122            {
   123              "type": "string",
   124              "name": "name",
   125              "in": "path",
   126              "required": true
   127            }
   128          ],
   129          "responses": {
   130            "200": {
   131              "description": "A successful response.",
   132              "schema": {
   133                "$ref": "#/definitions/accountAccount"
   134              }
   135            },
   136            "default": {
   137              "description": "An unexpected error response.",
   138              "schema": {
   139                "$ref": "#/definitions/runtimeError"
   140              }
   141            }
   142          }
   143        }
   144      },
   145      "/api/v1/account/{name}/token": {
   146        "post": {
   147          "tags": [
   148            "AccountService"
   149          ],
   150          "summary": "CreateToken creates a token",
   151          "operationId": "AccountService_CreateToken",
   152          "parameters": [
   153            {
   154              "type": "string",
   155              "name": "name",
   156              "in": "path",
   157              "required": true
   158            },
   159            {
   160              "name": "body",
   161              "in": "body",
   162              "required": true,
   163              "schema": {
   164                "$ref": "#/definitions/accountCreateTokenRequest"
   165              }
   166            }
   167          ],
   168          "responses": {
   169            "200": {
   170              "description": "A successful response.",
   171              "schema": {
   172                "$ref": "#/definitions/accountCreateTokenResponse"
   173              }
   174            },
   175            "default": {
   176              "description": "An unexpected error response.",
   177              "schema": {
   178                "$ref": "#/definitions/runtimeError"
   179              }
   180            }
   181          }
   182        }
   183      },
   184      "/api/v1/account/{name}/token/{id}": {
   185        "delete": {
   186          "tags": [
   187            "AccountService"
   188          ],
   189          "summary": "DeleteToken deletes a token",
   190          "operationId": "AccountService_DeleteToken",
   191          "parameters": [
   192            {
   193              "type": "string",
   194              "name": "name",
   195              "in": "path",
   196              "required": true
   197            },
   198            {
   199              "type": "string",
   200              "name": "id",
   201              "in": "path",
   202              "required": true
   203            }
   204          ],
   205          "responses": {
   206            "200": {
   207              "description": "A successful response.",
   208              "schema": {
   209                "$ref": "#/definitions/accountEmptyResponse"
   210              }
   211            },
   212            "default": {
   213              "description": "An unexpected error response.",
   214              "schema": {
   215                "$ref": "#/definitions/runtimeError"
   216              }
   217            }
   218          }
   219        }
   220      },
   221      "/api/v1/applications": {
   222        "get": {
   223          "tags": [
   224            "ApplicationService"
   225          ],
   226          "summary": "List returns list of applications",
   227          "operationId": "ApplicationService_List",
   228          "parameters": [
   229            {
   230              "type": "string",
   231              "description": "the application's name.",
   232              "name": "name",
   233              "in": "query"
   234            },
   235            {
   236              "type": "string",
   237              "description": "forces application reconciliation if set to 'hard'.",
   238              "name": "refresh",
   239              "in": "query"
   240            },
   241            {
   242              "type": "array",
   243              "items": {
   244                "type": "string"
   245              },
   246              "collectionFormat": "multi",
   247              "description": "the project names to restrict returned list applications.",
   248              "name": "projects",
   249              "in": "query"
   250            },
   251            {
   252              "type": "string",
   253              "description": "when specified with a watch call, shows changes that occur after that particular version of a resource.",
   254              "name": "resourceVersion",
   255              "in": "query"
   256            },
   257            {
   258              "type": "string",
   259              "description": "the selector to restrict returned list to applications only with matched labels.",
   260              "name": "selector",
   261              "in": "query"
   262            },
   263            {
   264              "type": "string",
   265              "description": "the repoURL to restrict returned list applications.",
   266              "name": "repo",
   267              "in": "query"
   268            },
   269            {
   270              "type": "string",
   271              "description": "the application's namespace.",
   272              "name": "appNamespace",
   273              "in": "query"
   274            },
   275            {
   276              "type": "array",
   277              "items": {
   278                "type": "string"
   279              },
   280              "collectionFormat": "multi",
   281              "description": "the project names to restrict returned list applications (legacy name for backwards-compatibility).",
   282              "name": "project",
   283              "in": "query"
   284            }
   285          ],
   286          "responses": {
   287            "200": {
   288              "description": "A successful response.",
   289              "schema": {
   290                "$ref": "#/definitions/v1alpha1ApplicationList"
   291              }
   292            },
   293            "default": {
   294              "description": "An unexpected error response.",
   295              "schema": {
   296                "$ref": "#/definitions/runtimeError"
   297              }
   298            }
   299          }
   300        },
   301        "post": {
   302          "tags": [
   303            "ApplicationService"
   304          ],
   305          "summary": "Create creates an application",
   306          "operationId": "ApplicationService_Create",
   307          "parameters": [
   308            {
   309              "name": "body",
   310              "in": "body",
   311              "required": true,
   312              "schema": {
   313                "$ref": "#/definitions/v1alpha1Application"
   314              }
   315            },
   316            {
   317              "type": "boolean",
   318              "name": "upsert",
   319              "in": "query"
   320            },
   321            {
   322              "type": "boolean",
   323              "name": "validate",
   324              "in": "query"
   325            }
   326          ],
   327          "responses": {
   328            "200": {
   329              "description": "A successful response.",
   330              "schema": {
   331                "$ref": "#/definitions/v1alpha1Application"
   332              }
   333            },
   334            "default": {
   335              "description": "An unexpected error response.",
   336              "schema": {
   337                "$ref": "#/definitions/runtimeError"
   338              }
   339            }
   340          }
   341        }
   342      },
   343      "/api/v1/applications/manifestsWithFiles": {
   344        "post": {
   345          "tags": [
   346            "ApplicationService"
   347          ],
   348          "summary": "GetManifestsWithFiles returns application manifests using provided files to generate them",
   349          "operationId": "ApplicationService_GetManifestsWithFiles",
   350          "parameters": [
   351            {
   352              "description": " (streaming inputs)",
   353              "name": "body",
   354              "in": "body",
   355              "required": true,
   356              "schema": {
   357                "$ref": "#/definitions/applicationApplicationManifestQueryWithFilesWrapper"
   358              }
   359            }
   360          ],
   361          "responses": {
   362            "200": {
   363              "description": "A successful response.",
   364              "schema": {
   365                "$ref": "#/definitions/repositoryManifestResponse"
   366              }
   367            },
   368            "default": {
   369              "description": "An unexpected error response.",
   370              "schema": {
   371                "$ref": "#/definitions/runtimeError"
   372              }
   373            }
   374          }
   375        }
   376      },
   377      "/api/v1/applications/{application.metadata.name}": {
   378        "put": {
   379          "tags": [
   380            "ApplicationService"
   381          ],
   382          "summary": "Update updates an application",
   383          "operationId": "ApplicationService_Update",
   384          "parameters": [
   385            {
   386              "type": "string",
   387              "description": "Name must be unique within a namespace. Is required when creating resources, although\nsome resources may allow a client to request the generation of an appropriate name\nautomatically. Name is primarily intended for creation idempotence and configuration\ndefinition.\nCannot be updated.\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\n+optional",
   388              "name": "application.metadata.name",
   389              "in": "path",
   390              "required": true
   391            },
   392            {
   393              "name": "body",
   394              "in": "body",
   395              "required": true,
   396              "schema": {
   397                "$ref": "#/definitions/v1alpha1Application"
   398              }
   399            },
   400            {
   401              "type": "boolean",
   402              "name": "validate",
   403              "in": "query"
   404            },
   405            {
   406              "type": "string",
   407              "name": "project",
   408              "in": "query"
   409            }
   410          ],
   411          "responses": {
   412            "200": {
   413              "description": "A successful response.",
   414              "schema": {
   415                "$ref": "#/definitions/v1alpha1Application"
   416              }
   417            },
   418            "default": {
   419              "description": "An unexpected error response.",
   420              "schema": {
   421                "$ref": "#/definitions/runtimeError"
   422              }
   423            }
   424          }
   425        }
   426      },
   427      "/api/v1/applications/{applicationName}/managed-resources": {
   428        "get": {
   429          "tags": [
   430            "ApplicationService"
   431          ],
   432          "summary": "ManagedResources returns list of managed resources",
   433          "operationId": "ApplicationService_ManagedResources",
   434          "parameters": [
   435            {
   436              "type": "string",
   437              "name": "applicationName",
   438              "in": "path",
   439              "required": true
   440            },
   441            {
   442              "type": "string",
   443              "name": "namespace",
   444              "in": "query"
   445            },
   446            {
   447              "type": "string",
   448              "name": "name",
   449              "in": "query"
   450            },
   451            {
   452              "type": "string",
   453              "name": "version",
   454              "in": "query"
   455            },
   456            {
   457              "type": "string",
   458              "name": "group",
   459              "in": "query"
   460            },
   461            {
   462              "type": "string",
   463              "name": "kind",
   464              "in": "query"
   465            },
   466            {
   467              "type": "string",
   468              "name": "appNamespace",
   469              "in": "query"
   470            },
   471            {
   472              "type": "string",
   473              "name": "project",
   474              "in": "query"
   475            }
   476          ],
   477          "responses": {
   478            "200": {
   479              "description": "A successful response.",
   480              "schema": {
   481                "$ref": "#/definitions/applicationManagedResourcesResponse"
   482              }
   483            },
   484            "default": {
   485              "description": "An unexpected error response.",
   486              "schema": {
   487                "$ref": "#/definitions/runtimeError"
   488              }
   489            }
   490          }
   491        }
   492      },
   493      "/api/v1/applications/{applicationName}/resource-tree": {
   494        "get": {
   495          "tags": [
   496            "ApplicationService"
   497          ],
   498          "summary": "ResourceTree returns resource tree",
   499          "operationId": "ApplicationService_ResourceTree",
   500          "parameters": [
   501            {
   502              "type": "string",
   503              "name": "applicationName",
   504              "in": "path",
   505              "required": true
   506            },
   507            {
   508              "type": "string",
   509              "name": "namespace",
   510              "in": "query"
   511            },
   512            {
   513              "type": "string",
   514              "name": "name",
   515              "in": "query"
   516            },
   517            {
   518              "type": "string",
   519              "name": "version",
   520              "in": "query"
   521            },
   522            {
   523              "type": "string",
   524              "name": "group",
   525              "in": "query"
   526            },
   527            {
   528              "type": "string",
   529              "name": "kind",
   530              "in": "query"
   531            },
   532            {
   533              "type": "string",
   534              "name": "appNamespace",
   535              "in": "query"
   536            },
   537            {
   538              "type": "string",
   539              "name": "project",
   540              "in": "query"
   541            }
   542          ],
   543          "responses": {
   544            "200": {
   545              "description": "A successful response.",
   546              "schema": {
   547                "$ref": "#/definitions/v1alpha1ApplicationTree"
   548              }
   549            },
   550            "default": {
   551              "description": "An unexpected error response.",
   552              "schema": {
   553                "$ref": "#/definitions/runtimeError"
   554              }
   555            }
   556          }
   557        }
   558      },
   559      "/api/v1/applications/{name}": {
   560        "get": {
   561          "tags": [
   562            "ApplicationService"
   563          ],
   564          "summary": "Get returns an application by name",
   565          "operationId": "ApplicationService_Get",
   566          "parameters": [
   567            {
   568              "type": "string",
   569              "description": "the application's name",
   570              "name": "name",
   571              "in": "path",
   572              "required": true
   573            },
   574            {
   575              "type": "string",
   576              "description": "forces application reconciliation if set to 'hard'.",
   577              "name": "refresh",
   578              "in": "query"
   579            },
   580            {
   581              "type": "array",
   582              "items": {
   583                "type": "string"
   584              },
   585              "collectionFormat": "multi",
   586              "description": "the project names to restrict returned list applications.",
   587              "name": "projects",
   588              "in": "query"
   589            },
   590            {
   591              "type": "string",
   592              "description": "when specified with a watch call, shows changes that occur after that particular version of a resource.",
   593              "name": "resourceVersion",
   594              "in": "query"
   595            },
   596            {
   597              "type": "string",
   598              "description": "the selector to restrict returned list to applications only with matched labels.",
   599              "name": "selector",
   600              "in": "query"
   601            },
   602            {
   603              "type": "string",
   604              "description": "the repoURL to restrict returned list applications.",
   605              "name": "repo",
   606              "in": "query"
   607            },
   608            {
   609              "type": "string",
   610              "description": "the application's namespace.",
   611              "name": "appNamespace",
   612              "in": "query"
   613            },
   614            {
   615              "type": "array",
   616              "items": {
   617                "type": "string"
   618              },
   619              "collectionFormat": "multi",
   620              "description": "the project names to restrict returned list applications (legacy name for backwards-compatibility).",
   621              "name": "project",
   622              "in": "query"
   623            }
   624          ],
   625          "responses": {
   626            "200": {
   627              "description": "A successful response.",
   628              "schema": {
   629                "$ref": "#/definitions/v1alpha1Application"
   630              }
   631            },
   632            "default": {
   633              "description": "An unexpected error response.",
   634              "schema": {
   635                "$ref": "#/definitions/runtimeError"
   636              }
   637            }
   638          }
   639        },
   640        "delete": {
   641          "tags": [
   642            "ApplicationService"
   643          ],
   644          "summary": "Delete deletes an application",
   645          "operationId": "ApplicationService_Delete",
   646          "parameters": [
   647            {
   648              "type": "string",
   649              "name": "name",
   650              "in": "path",
   651              "required": true
   652            },
   653            {
   654              "type": "boolean",
   655              "name": "cascade",
   656              "in": "query"
   657            },
   658            {
   659              "type": "string",
   660              "name": "propagationPolicy",
   661              "in": "query"
   662            },
   663            {
   664              "type": "string",
   665              "name": "appNamespace",
   666              "in": "query"
   667            },
   668            {
   669              "type": "string",
   670              "name": "project",
   671              "in": "query"
   672            }
   673          ],
   674          "responses": {
   675            "200": {
   676              "description": "A successful response.",
   677              "schema": {
   678                "$ref": "#/definitions/applicationApplicationResponse"
   679              }
   680            },
   681            "default": {
   682              "description": "An unexpected error response.",
   683              "schema": {
   684                "$ref": "#/definitions/runtimeError"
   685              }
   686            }
   687          }
   688        },
   689        "patch": {
   690          "tags": [
   691            "ApplicationService"
   692          ],
   693          "summary": "Patch patch an application",
   694          "operationId": "ApplicationService_Patch",
   695          "parameters": [
   696            {
   697              "type": "string",
   698              "name": "name",
   699              "in": "path",
   700              "required": true
   701            },
   702            {
   703              "name": "body",
   704              "in": "body",
   705              "required": true,
   706              "schema": {
   707                "$ref": "#/definitions/applicationApplicationPatchRequest"
   708              }
   709            }
   710          ],
   711          "responses": {
   712            "200": {
   713              "description": "A successful response.",
   714              "schema": {
   715                "$ref": "#/definitions/v1alpha1Application"
   716              }
   717            },
   718            "default": {
   719              "description": "An unexpected error response.",
   720              "schema": {
   721                "$ref": "#/definitions/runtimeError"
   722              }
   723            }
   724          }
   725        }
   726      },
   727      "/api/v1/applications/{name}/events": {
   728        "get": {
   729          "tags": [
   730            "ApplicationService"
   731          ],
   732          "summary": "ListResourceEvents returns a list of event resources",
   733          "operationId": "ApplicationService_ListResourceEvents",
   734          "parameters": [
   735            {
   736              "type": "string",
   737              "name": "name",
   738              "in": "path",
   739              "required": true
   740            },
   741            {
   742              "type": "string",
   743              "name": "resourceNamespace",
   744              "in": "query"
   745            },
   746            {
   747              "type": "string",
   748              "name": "resourceName",
   749              "in": "query"
   750            },
   751            {
   752              "type": "string",
   753              "name": "resourceUID",
   754              "in": "query"
   755            },
   756            {
   757              "type": "string",
   758              "name": "appNamespace",
   759              "in": "query"
   760            },
   761            {
   762              "type": "string",
   763              "name": "project",
   764              "in": "query"
   765            }
   766          ],
   767          "responses": {
   768            "200": {
   769              "description": "A successful response.",
   770              "schema": {
   771                "$ref": "#/definitions/v1EventList"
   772              }
   773            },
   774            "default": {
   775              "description": "An unexpected error response.",
   776              "schema": {
   777                "$ref": "#/definitions/runtimeError"
   778              }
   779            }
   780          }
   781        }
   782      },
   783      "/api/v1/applications/{name}/links": {
   784        "get": {
   785          "tags": [
   786            "ApplicationService"
   787          ],
   788          "summary": "ListLinks returns the list of all application deep links",
   789          "operationId": "ApplicationService_ListLinks",
   790          "parameters": [
   791            {
   792              "type": "string",
   793              "name": "name",
   794              "in": "path",
   795              "required": true
   796            },
   797            {
   798              "type": "string",
   799              "name": "namespace",
   800              "in": "query"
   801            },
   802            {
   803              "type": "string",
   804              "name": "project",
   805              "in": "query"
   806            }
   807          ],
   808          "responses": {
   809            "200": {
   810              "description": "A successful response.",
   811              "schema": {
   812                "$ref": "#/definitions/applicationLinksResponse"
   813              }
   814            },
   815            "default": {
   816              "description": "An unexpected error response.",
   817              "schema": {
   818                "$ref": "#/definitions/runtimeError"
   819              }
   820            }
   821          }
   822        }
   823      },
   824      "/api/v1/applications/{name}/logs": {
   825        "get": {
   826          "tags": [
   827            "ApplicationService"
   828          ],
   829          "summary": "PodLogs returns stream of log entries for the specified pod. Pod",
   830          "operationId": "ApplicationService_PodLogs2",
   831          "parameters": [
   832            {
   833              "type": "string",
   834              "name": "name",
   835              "in": "path",
   836              "required": true
   837            },
   838            {
   839              "type": "string",
   840              "name": "namespace",
   841              "in": "query"
   842            },
   843            {
   844              "type": "string",
   845              "name": "podName",
   846              "in": "query"
   847            },
   848            {
   849              "type": "string",
   850              "name": "container",
   851              "in": "query"
   852            },
   853            {
   854              "type": "string",
   855              "format": "int64",
   856              "name": "sinceSeconds",
   857              "in": "query"
   858            },
   859            {
   860              "type": "string",
   861              "format": "int64",
   862              "description": "Represents seconds of UTC time since Unix epoch\n1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n9999-12-31T23:59:59Z inclusive.",
   863              "name": "sinceTime.seconds",
   864              "in": "query"
   865            },
   866            {
   867              "type": "integer",
   868              "format": "int32",
   869              "description": "Non-negative fractions of a second at nanosecond resolution. Negative\nsecond values with fractions must still have non-negative nanos values\nthat count forward in time. Must be from 0 to 999,999,999\ninclusive. This field may be limited in precision depending on context.",
   870              "name": "sinceTime.nanos",
   871              "in": "query"
   872            },
   873            {
   874              "type": "string",
   875              "format": "int64",
   876              "name": "tailLines",
   877              "in": "query"
   878            },
   879            {
   880              "type": "boolean",
   881              "name": "follow",
   882              "in": "query"
   883            },
   884            {
   885              "type": "string",
   886              "name": "untilTime",
   887              "in": "query"
   888            },
   889            {
   890              "type": "string",
   891              "name": "filter",
   892              "in": "query"
   893            },
   894            {
   895              "type": "string",
   896              "name": "kind",
   897              "in": "query"
   898            },
   899            {
   900              "type": "string",
   901              "name": "group",
   902              "in": "query"
   903            },
   904            {
   905              "type": "string",
   906              "name": "resourceName",
   907              "in": "query"
   908            },
   909            {
   910              "type": "boolean",
   911              "name": "previous",
   912              "in": "query"
   913            },
   914            {
   915              "type": "string",
   916              "name": "appNamespace",
   917              "in": "query"
   918            },
   919            {
   920              "type": "string",
   921              "name": "project",
   922              "in": "query"
   923            }
   924          ],
   925          "responses": {
   926            "200": {
   927              "description": "A successful response.(streaming responses)",
   928              "schema": {
   929                "type": "object",
   930                "title": "Stream result of applicationLogEntry",
   931                "properties": {
   932                  "error": {
   933                    "$ref": "#/definitions/runtimeStreamError"
   934                  },
   935                  "result": {
   936                    "$ref": "#/definitions/applicationLogEntry"
   937                  }
   938                }
   939              }
   940            },
   941            "default": {
   942              "description": "An unexpected error response.",
   943              "schema": {
   944                "$ref": "#/definitions/runtimeError"
   945              }
   946            }
   947          }
   948        }
   949      },
   950      "/api/v1/applications/{name}/manifests": {
   951        "get": {
   952          "tags": [
   953            "ApplicationService"
   954          ],
   955          "summary": "GetManifests returns application manifests",
   956          "operationId": "ApplicationService_GetManifests",
   957          "parameters": [
   958            {
   959              "type": "string",
   960              "name": "name",
   961              "in": "path",
   962              "required": true
   963            },
   964            {
   965              "type": "string",
   966              "name": "revision",
   967              "in": "query"
   968            },
   969            {
   970              "type": "string",
   971              "name": "appNamespace",
   972              "in": "query"
   973            },
   974            {
   975              "type": "string",
   976              "name": "project",
   977              "in": "query"
   978            }
   979          ],
   980          "responses": {
   981            "200": {
   982              "description": "A successful response.",
   983              "schema": {
   984                "$ref": "#/definitions/repositoryManifestResponse"
   985              }
   986            },
   987            "default": {
   988              "description": "An unexpected error response.",
   989              "schema": {
   990                "$ref": "#/definitions/runtimeError"
   991              }
   992            }
   993          }
   994        }
   995      },
   996      "/api/v1/applications/{name}/operation": {
   997        "delete": {
   998          "tags": [
   999            "ApplicationService"
  1000          ],
  1001          "summary": "TerminateOperation terminates the currently running operation",
  1002          "operationId": "ApplicationService_TerminateOperation",
  1003          "parameters": [
  1004            {
  1005              "type": "string",
  1006              "name": "name",
  1007              "in": "path",
  1008              "required": true
  1009            },
  1010            {
  1011              "type": "string",
  1012              "name": "appNamespace",
  1013              "in": "query"
  1014            },
  1015            {
  1016              "type": "string",
  1017              "name": "project",
  1018              "in": "query"
  1019            }
  1020          ],
  1021          "responses": {
  1022            "200": {
  1023              "description": "A successful response.",
  1024              "schema": {
  1025                "$ref": "#/definitions/applicationOperationTerminateResponse"
  1026              }
  1027            },
  1028            "default": {
  1029              "description": "An unexpected error response.",
  1030              "schema": {
  1031                "$ref": "#/definitions/runtimeError"
  1032              }
  1033            }
  1034          }
  1035        }
  1036      },
  1037      "/api/v1/applications/{name}/pods/{podName}/logs": {
  1038        "get": {
  1039          "tags": [
  1040            "ApplicationService"
  1041          ],
  1042          "summary": "PodLogs returns stream of log entries for the specified pod. Pod",
  1043          "operationId": "ApplicationService_PodLogs",
  1044          "parameters": [
  1045            {
  1046              "type": "string",
  1047              "name": "name",
  1048              "in": "path",
  1049              "required": true
  1050            },
  1051            {
  1052              "type": "string",
  1053              "name": "podName",
  1054              "in": "path",
  1055              "required": true
  1056            },
  1057            {
  1058              "type": "string",
  1059              "name": "namespace",
  1060              "in": "query"
  1061            },
  1062            {
  1063              "type": "string",
  1064              "name": "container",
  1065              "in": "query"
  1066            },
  1067            {
  1068              "type": "string",
  1069              "format": "int64",
  1070              "name": "sinceSeconds",
  1071              "in": "query"
  1072            },
  1073            {
  1074              "type": "string",
  1075              "format": "int64",
  1076              "description": "Represents seconds of UTC time since Unix epoch\n1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n9999-12-31T23:59:59Z inclusive.",
  1077              "name": "sinceTime.seconds",
  1078              "in": "query"
  1079            },
  1080            {
  1081              "type": "integer",
  1082              "format": "int32",
  1083              "description": "Non-negative fractions of a second at nanosecond resolution. Negative\nsecond values with fractions must still have non-negative nanos values\nthat count forward in time. Must be from 0 to 999,999,999\ninclusive. This field may be limited in precision depending on context.",
  1084              "name": "sinceTime.nanos",
  1085              "in": "query"
  1086            },
  1087            {
  1088              "type": "string",
  1089              "format": "int64",
  1090              "name": "tailLines",
  1091              "in": "query"
  1092            },
  1093            {
  1094              "type": "boolean",
  1095              "name": "follow",
  1096              "in": "query"
  1097            },
  1098            {
  1099              "type": "string",
  1100              "name": "untilTime",
  1101              "in": "query"
  1102            },
  1103            {
  1104              "type": "string",
  1105              "name": "filter",
  1106              "in": "query"
  1107            },
  1108            {
  1109              "type": "string",
  1110              "name": "kind",
  1111              "in": "query"
  1112            },
  1113            {
  1114              "type": "string",
  1115              "name": "group",
  1116              "in": "query"
  1117            },
  1118            {
  1119              "type": "string",
  1120              "name": "resourceName",
  1121              "in": "query"
  1122            },
  1123            {
  1124              "type": "boolean",
  1125              "name": "previous",
  1126              "in": "query"
  1127            },
  1128            {
  1129              "type": "string",
  1130              "name": "appNamespace",
  1131              "in": "query"
  1132            },
  1133            {
  1134              "type": "string",
  1135              "name": "project",
  1136              "in": "query"
  1137            }
  1138          ],
  1139          "responses": {
  1140            "200": {
  1141              "description": "A successful response.(streaming responses)",
  1142              "schema": {
  1143                "type": "object",
  1144                "title": "Stream result of applicationLogEntry",
  1145                "properties": {
  1146                  "error": {
  1147                    "$ref": "#/definitions/runtimeStreamError"
  1148                  },
  1149                  "result": {
  1150                    "$ref": "#/definitions/applicationLogEntry"
  1151                  }
  1152                }
  1153              }
  1154            },
  1155            "default": {
  1156              "description": "An unexpected error response.",
  1157              "schema": {
  1158                "$ref": "#/definitions/runtimeError"
  1159              }
  1160            }
  1161          }
  1162        }
  1163      },
  1164      "/api/v1/applications/{name}/resource": {
  1165        "get": {
  1166          "tags": [
  1167            "ApplicationService"
  1168          ],
  1169          "summary": "GetResource returns single application resource",
  1170          "operationId": "ApplicationService_GetResource",
  1171          "parameters": [
  1172            {
  1173              "type": "string",
  1174              "name": "name",
  1175              "in": "path",
  1176              "required": true
  1177            },
  1178            {
  1179              "type": "string",
  1180              "name": "namespace",
  1181              "in": "query"
  1182            },
  1183            {
  1184              "type": "string",
  1185              "name": "resourceName",
  1186              "in": "query"
  1187            },
  1188            {
  1189              "type": "string",
  1190              "name": "version",
  1191              "in": "query"
  1192            },
  1193            {
  1194              "type": "string",
  1195              "name": "group",
  1196              "in": "query"
  1197            },
  1198            {
  1199              "type": "string",
  1200              "name": "kind",
  1201              "in": "query"
  1202            },
  1203            {
  1204              "type": "string",
  1205              "name": "appNamespace",
  1206              "in": "query"
  1207            },
  1208            {
  1209              "type": "string",
  1210              "name": "project",
  1211              "in": "query"
  1212            }
  1213          ],
  1214          "responses": {
  1215            "200": {
  1216              "description": "A successful response.",
  1217              "schema": {
  1218                "$ref": "#/definitions/applicationApplicationResourceResponse"
  1219              }
  1220            },
  1221            "default": {
  1222              "description": "An unexpected error response.",
  1223              "schema": {
  1224                "$ref": "#/definitions/runtimeError"
  1225              }
  1226            }
  1227          }
  1228        },
  1229        "post": {
  1230          "tags": [
  1231            "ApplicationService"
  1232          ],
  1233          "summary": "PatchResource patch single application resource",
  1234          "operationId": "ApplicationService_PatchResource",
  1235          "parameters": [
  1236            {
  1237              "type": "string",
  1238              "name": "name",
  1239              "in": "path",
  1240              "required": true
  1241            },
  1242            {
  1243              "name": "body",
  1244              "in": "body",
  1245              "required": true,
  1246              "schema": {
  1247                "type": "string"
  1248              }
  1249            },
  1250            {
  1251              "type": "string",
  1252              "name": "namespace",
  1253              "in": "query"
  1254            },
  1255            {
  1256              "type": "string",
  1257              "name": "resourceName",
  1258              "in": "query"
  1259            },
  1260            {
  1261              "type": "string",
  1262              "name": "version",
  1263              "in": "query"
  1264            },
  1265            {
  1266              "type": "string",
  1267              "name": "group",
  1268              "in": "query"
  1269            },
  1270            {
  1271              "type": "string",
  1272              "name": "kind",
  1273              "in": "query"
  1274            },
  1275            {
  1276              "type": "string",
  1277              "name": "patchType",
  1278              "in": "query"
  1279            },
  1280            {
  1281              "type": "string",
  1282              "name": "appNamespace",
  1283              "in": "query"
  1284            },
  1285            {
  1286              "type": "string",
  1287              "name": "project",
  1288              "in": "query"
  1289            }
  1290          ],
  1291          "responses": {
  1292            "200": {
  1293              "description": "A successful response.",
  1294              "schema": {
  1295                "$ref": "#/definitions/applicationApplicationResourceResponse"
  1296              }
  1297            },
  1298            "default": {
  1299              "description": "An unexpected error response.",
  1300              "schema": {
  1301                "$ref": "#/definitions/runtimeError"
  1302              }
  1303            }
  1304          }
  1305        },
  1306        "delete": {
  1307          "tags": [
  1308            "ApplicationService"
  1309          ],
  1310          "summary": "DeleteResource deletes a single application resource",
  1311          "operationId": "ApplicationService_DeleteResource",
  1312          "parameters": [
  1313            {
  1314              "type": "string",
  1315              "name": "name",
  1316              "in": "path",
  1317              "required": true
  1318            },
  1319            {
  1320              "type": "string",
  1321              "name": "namespace",
  1322              "in": "query"
  1323            },
  1324            {
  1325              "type": "string",
  1326              "name": "resourceName",
  1327              "in": "query"
  1328            },
  1329            {
  1330              "type": "string",
  1331              "name": "version",
  1332              "in": "query"
  1333            },
  1334            {
  1335              "type": "string",
  1336              "name": "group",
  1337              "in": "query"
  1338            },
  1339            {
  1340              "type": "string",
  1341              "name": "kind",
  1342              "in": "query"
  1343            },
  1344            {
  1345              "type": "boolean",
  1346              "name": "force",
  1347              "in": "query"
  1348            },
  1349            {
  1350              "type": "boolean",
  1351              "name": "orphan",
  1352              "in": "query"
  1353            },
  1354            {
  1355              "type": "string",
  1356              "name": "appNamespace",
  1357              "in": "query"
  1358            },
  1359            {
  1360              "type": "string",
  1361              "name": "project",
  1362              "in": "query"
  1363            }
  1364          ],
  1365          "responses": {
  1366            "200": {
  1367              "description": "A successful response.",
  1368              "schema": {
  1369                "$ref": "#/definitions/applicationApplicationResponse"
  1370              }
  1371            },
  1372            "default": {
  1373              "description": "An unexpected error response.",
  1374              "schema": {
  1375                "$ref": "#/definitions/runtimeError"
  1376              }
  1377            }
  1378          }
  1379        }
  1380      },
  1381      "/api/v1/applications/{name}/resource/actions": {
  1382        "get": {
  1383          "tags": [
  1384            "ApplicationService"
  1385          ],
  1386          "summary": "ListResourceActions returns list of resource actions",
  1387          "operationId": "ApplicationService_ListResourceActions",
  1388          "parameters": [
  1389            {
  1390              "type": "string",
  1391              "name": "name",
  1392              "in": "path",
  1393              "required": true
  1394            },
  1395            {
  1396              "type": "string",
  1397              "name": "namespace",
  1398              "in": "query"
  1399            },
  1400            {
  1401              "type": "string",
  1402              "name": "resourceName",
  1403              "in": "query"
  1404            },
  1405            {
  1406              "type": "string",
  1407              "name": "version",
  1408              "in": "query"
  1409            },
  1410            {
  1411              "type": "string",
  1412              "name": "group",
  1413              "in": "query"
  1414            },
  1415            {
  1416              "type": "string",
  1417              "name": "kind",
  1418              "in": "query"
  1419            },
  1420            {
  1421              "type": "string",
  1422              "name": "appNamespace",
  1423              "in": "query"
  1424            },
  1425            {
  1426              "type": "string",
  1427              "name": "project",
  1428              "in": "query"
  1429            }
  1430          ],
  1431          "responses": {
  1432            "200": {
  1433              "description": "A successful response.",
  1434              "schema": {
  1435                "$ref": "#/definitions/applicationResourceActionsListResponse"
  1436              }
  1437            },
  1438            "default": {
  1439              "description": "An unexpected error response.",
  1440              "schema": {
  1441                "$ref": "#/definitions/runtimeError"
  1442              }
  1443            }
  1444          }
  1445        },
  1446        "post": {
  1447          "tags": [
  1448            "ApplicationService"
  1449          ],
  1450          "summary": "RunResourceAction run resource action",
  1451          "operationId": "ApplicationService_RunResourceAction",
  1452          "parameters": [
  1453            {
  1454              "type": "string",
  1455              "name": "name",
  1456              "in": "path",
  1457              "required": true
  1458            },
  1459            {
  1460              "name": "body",
  1461              "in": "body",
  1462              "required": true,
  1463              "schema": {
  1464                "type": "string"
  1465              }
  1466            },
  1467            {
  1468              "type": "string",
  1469              "name": "namespace",
  1470              "in": "query"
  1471            },
  1472            {
  1473              "type": "string",
  1474              "name": "resourceName",
  1475              "in": "query"
  1476            },
  1477            {
  1478              "type": "string",
  1479              "name": "version",
  1480              "in": "query"
  1481            },
  1482            {
  1483              "type": "string",
  1484              "name": "group",
  1485              "in": "query"
  1486            },
  1487            {
  1488              "type": "string",
  1489              "name": "kind",
  1490              "in": "query"
  1491            },
  1492            {
  1493              "type": "string",
  1494              "name": "appNamespace",
  1495              "in": "query"
  1496            },
  1497            {
  1498              "type": "string",
  1499              "name": "project",
  1500              "in": "query"
  1501            }
  1502          ],
  1503          "responses": {
  1504            "200": {
  1505              "description": "A successful response.",
  1506              "schema": {
  1507                "$ref": "#/definitions/applicationApplicationResponse"
  1508              }
  1509            },
  1510            "default": {
  1511              "description": "An unexpected error response.",
  1512              "schema": {
  1513                "$ref": "#/definitions/runtimeError"
  1514              }
  1515            }
  1516          }
  1517        }
  1518      },
  1519      "/api/v1/applications/{name}/resource/links": {
  1520        "get": {
  1521          "tags": [
  1522            "ApplicationService"
  1523          ],
  1524          "summary": "ListResourceLinks returns the list of all resource deep links",
  1525          "operationId": "ApplicationService_ListResourceLinks",
  1526          "parameters": [
  1527            {
  1528              "type": "string",
  1529              "name": "name",
  1530              "in": "path",
  1531              "required": true
  1532            },
  1533            {
  1534              "type": "string",
  1535              "name": "namespace",
  1536              "in": "query"
  1537            },
  1538            {
  1539              "type": "string",
  1540              "name": "resourceName",
  1541              "in": "query"
  1542            },
  1543            {
  1544              "type": "string",
  1545              "name": "version",
  1546              "in": "query"
  1547            },
  1548            {
  1549              "type": "string",
  1550              "name": "group",
  1551              "in": "query"
  1552            },
  1553            {
  1554              "type": "string",
  1555              "name": "kind",
  1556              "in": "query"
  1557            },
  1558            {
  1559              "type": "string",
  1560              "name": "appNamespace",
  1561              "in": "query"
  1562            },
  1563            {
  1564              "type": "string",
  1565              "name": "project",
  1566              "in": "query"
  1567            }
  1568          ],
  1569          "responses": {
  1570            "200": {
  1571              "description": "A successful response.",
  1572              "schema": {
  1573                "$ref": "#/definitions/applicationLinksResponse"
  1574              }
  1575            },
  1576            "default": {
  1577              "description": "An unexpected error response.",
  1578              "schema": {
  1579                "$ref": "#/definitions/runtimeError"
  1580              }
  1581            }
  1582          }
  1583        }
  1584      },
  1585      "/api/v1/applications/{name}/revisions/{revision}/chartdetails": {
  1586        "get": {
  1587          "tags": [
  1588            "ApplicationService"
  1589          ],
  1590          "summary": "Get the chart metadata (description, maintainers, home) for a specific revision of the application",
  1591          "operationId": "ApplicationService_RevisionChartDetails",
  1592          "parameters": [
  1593            {
  1594              "type": "string",
  1595              "description": "the application's name",
  1596              "name": "name",
  1597              "in": "path",
  1598              "required": true
  1599            },
  1600            {
  1601              "type": "string",
  1602              "description": "the revision of the app",
  1603              "name": "revision",
  1604              "in": "path",
  1605              "required": true
  1606            },
  1607            {
  1608              "type": "string",
  1609              "description": "the application's namespace.",
  1610              "name": "appNamespace",
  1611              "in": "query"
  1612            },
  1613            {
  1614              "type": "string",
  1615              "name": "project",
  1616              "in": "query"
  1617            }
  1618          ],
  1619          "responses": {
  1620            "200": {
  1621              "description": "A successful response.",
  1622              "schema": {
  1623                "$ref": "#/definitions/v1alpha1ChartDetails"
  1624              }
  1625            },
  1626            "default": {
  1627              "description": "An unexpected error response.",
  1628              "schema": {
  1629                "$ref": "#/definitions/runtimeError"
  1630              }
  1631            }
  1632          }
  1633        }
  1634      },
  1635      "/api/v1/applications/{name}/revisions/{revision}/metadata": {
  1636        "get": {
  1637          "tags": [
  1638            "ApplicationService"
  1639          ],
  1640          "summary": "Get the meta-data (author, date, tags, message) for a specific revision of the application",
  1641          "operationId": "ApplicationService_RevisionMetadata",
  1642          "parameters": [
  1643            {
  1644              "type": "string",
  1645              "description": "the application's name",
  1646              "name": "name",
  1647              "in": "path",
  1648              "required": true
  1649            },
  1650            {
  1651              "type": "string",
  1652              "description": "the revision of the app",
  1653              "name": "revision",
  1654              "in": "path",
  1655              "required": true
  1656            },
  1657            {
  1658              "type": "string",
  1659              "description": "the application's namespace.",
  1660              "name": "appNamespace",
  1661              "in": "query"
  1662            },
  1663            {
  1664              "type": "string",
  1665              "name": "project",
  1666              "in": "query"
  1667            }
  1668          ],
  1669          "responses": {
  1670            "200": {
  1671              "description": "A successful response.",
  1672              "schema": {
  1673                "$ref": "#/definitions/v1alpha1RevisionMetadata"
  1674              }
  1675            },
  1676            "default": {
  1677              "description": "An unexpected error response.",
  1678              "schema": {
  1679                "$ref": "#/definitions/runtimeError"
  1680              }
  1681            }
  1682          }
  1683        }
  1684      },
  1685      "/api/v1/applications/{name}/rollback": {
  1686        "post": {
  1687          "tags": [
  1688            "ApplicationService"
  1689          ],
  1690          "summary": "Rollback syncs an application to its target state",
  1691          "operationId": "ApplicationService_Rollback",
  1692          "parameters": [
  1693            {
  1694              "type": "string",
  1695              "name": "name",
  1696              "in": "path",
  1697              "required": true
  1698            },
  1699            {
  1700              "name": "body",
  1701              "in": "body",
  1702              "required": true,
  1703              "schema": {
  1704                "$ref": "#/definitions/applicationApplicationRollbackRequest"
  1705              }
  1706            }
  1707          ],
  1708          "responses": {
  1709            "200": {
  1710              "description": "A successful response.",
  1711              "schema": {
  1712                "$ref": "#/definitions/v1alpha1Application"
  1713              }
  1714            },
  1715            "default": {
  1716              "description": "An unexpected error response.",
  1717              "schema": {
  1718                "$ref": "#/definitions/runtimeError"
  1719              }
  1720            }
  1721          }
  1722        }
  1723      },
  1724      "/api/v1/applications/{name}/spec": {
  1725        "put": {
  1726          "tags": [
  1727            "ApplicationService"
  1728          ],
  1729          "summary": "UpdateSpec updates an application spec",
  1730          "operationId": "ApplicationService_UpdateSpec",
  1731          "parameters": [
  1732            {
  1733              "type": "string",
  1734              "name": "name",
  1735              "in": "path",
  1736              "required": true
  1737            },
  1738            {
  1739              "name": "body",
  1740              "in": "body",
  1741              "required": true,
  1742              "schema": {
  1743                "$ref": "#/definitions/v1alpha1ApplicationSpec"
  1744              }
  1745            },
  1746            {
  1747              "type": "boolean",
  1748              "name": "validate",
  1749              "in": "query"
  1750            },
  1751            {
  1752              "type": "string",
  1753              "name": "appNamespace",
  1754              "in": "query"
  1755            },
  1756            {
  1757              "type": "string",
  1758              "name": "project",
  1759              "in": "query"
  1760            }
  1761          ],
  1762          "responses": {
  1763            "200": {
  1764              "description": "A successful response.",
  1765              "schema": {
  1766                "$ref": "#/definitions/v1alpha1ApplicationSpec"
  1767              }
  1768            },
  1769            "default": {
  1770              "description": "An unexpected error response.",
  1771              "schema": {
  1772                "$ref": "#/definitions/runtimeError"
  1773              }
  1774            }
  1775          }
  1776        }
  1777      },
  1778      "/api/v1/applications/{name}/sync": {
  1779        "post": {
  1780          "tags": [
  1781            "ApplicationService"
  1782          ],
  1783          "summary": "Sync syncs an application to its target state",
  1784          "operationId": "ApplicationService_Sync",
  1785          "parameters": [
  1786            {
  1787              "type": "string",
  1788              "name": "name",
  1789              "in": "path",
  1790              "required": true
  1791            },
  1792            {
  1793              "name": "body",
  1794              "in": "body",
  1795              "required": true,
  1796              "schema": {
  1797                "$ref": "#/definitions/applicationApplicationSyncRequest"
  1798              }
  1799            }
  1800          ],
  1801          "responses": {
  1802            "200": {
  1803              "description": "A successful response.",
  1804              "schema": {
  1805                "$ref": "#/definitions/v1alpha1Application"
  1806              }
  1807            },
  1808            "default": {
  1809              "description": "An unexpected error response.",
  1810              "schema": {
  1811                "$ref": "#/definitions/runtimeError"
  1812              }
  1813            }
  1814          }
  1815        }
  1816      },
  1817      "/api/v1/applications/{name}/syncwindows": {
  1818        "get": {
  1819          "tags": [
  1820            "ApplicationService"
  1821          ],
  1822          "summary": "Get returns sync windows of the application",
  1823          "operationId": "ApplicationService_GetApplicationSyncWindows",
  1824          "parameters": [
  1825            {
  1826              "type": "string",
  1827              "name": "name",
  1828              "in": "path",
  1829              "required": true
  1830            },
  1831            {
  1832              "type": "string",
  1833              "name": "appNamespace",
  1834              "in": "query"
  1835            },
  1836            {
  1837              "type": "string",
  1838              "name": "project",
  1839              "in": "query"
  1840            }
  1841          ],
  1842          "responses": {
  1843            "200": {
  1844              "description": "A successful response.",
  1845              "schema": {
  1846                "$ref": "#/definitions/applicationApplicationSyncWindowsResponse"
  1847              }
  1848            },
  1849            "default": {
  1850              "description": "An unexpected error response.",
  1851              "schema": {
  1852                "$ref": "#/definitions/runtimeError"
  1853              }
  1854            }
  1855          }
  1856        }
  1857      },
  1858      "/api/v1/applicationsets": {
  1859        "get": {
  1860          "tags": [
  1861            "ApplicationSetService"
  1862          ],
  1863          "summary": "List returns list of applicationset",
  1864          "operationId": "ApplicationSetService_List",
  1865          "parameters": [
  1866            {
  1867              "type": "array",
  1868              "items": {
  1869                "type": "string"
  1870              },
  1871              "collectionFormat": "multi",
  1872              "description": "the project names to restrict returned list applicationsets.",
  1873              "name": "projects",
  1874              "in": "query"
  1875            },
  1876            {
  1877              "type": "string",
  1878              "description": "the selector to restrict returned list to applications only with matched labels.",
  1879              "name": "selector",
  1880              "in": "query"
  1881            },
  1882            {
  1883              "type": "string",
  1884              "description": "The application set namespace. Default empty is argocd control plane namespace.",
  1885              "name": "appsetNamespace",
  1886              "in": "query"
  1887            }
  1888          ],
  1889          "responses": {
  1890            "200": {
  1891              "description": "A successful response.",
  1892              "schema": {
  1893                "$ref": "#/definitions/v1alpha1ApplicationSetList"
  1894              }
  1895            },
  1896            "default": {
  1897              "description": "An unexpected error response.",
  1898              "schema": {
  1899                "$ref": "#/definitions/runtimeError"
  1900              }
  1901            }
  1902          }
  1903        },
  1904        "post": {
  1905          "tags": [
  1906            "ApplicationSetService"
  1907          ],
  1908          "summary": "Create creates an applicationset",
  1909          "operationId": "ApplicationSetService_Create",
  1910          "parameters": [
  1911            {
  1912              "name": "body",
  1913              "in": "body",
  1914              "required": true,
  1915              "schema": {
  1916                "$ref": "#/definitions/v1alpha1ApplicationSet"
  1917              }
  1918            },
  1919            {
  1920              "type": "boolean",
  1921              "name": "upsert",
  1922              "in": "query"
  1923            }
  1924          ],
  1925          "responses": {
  1926            "200": {
  1927              "description": "A successful response.",
  1928              "schema": {
  1929                "$ref": "#/definitions/v1alpha1ApplicationSet"
  1930              }
  1931            },
  1932            "default": {
  1933              "description": "An unexpected error response.",
  1934              "schema": {
  1935                "$ref": "#/definitions/runtimeError"
  1936              }
  1937            }
  1938          }
  1939        }
  1940      },
  1941      "/api/v1/applicationsets/{name}": {
  1942        "get": {
  1943          "tags": [
  1944            "ApplicationSetService"
  1945          ],
  1946          "summary": "Get returns an applicationset by name",
  1947          "operationId": "ApplicationSetService_Get",
  1948          "parameters": [
  1949            {
  1950              "type": "string",
  1951              "description": "the applicationsets's name",
  1952              "name": "name",
  1953              "in": "path",
  1954              "required": true
  1955            },
  1956            {
  1957              "type": "string",
  1958              "description": "The application set namespace. Default empty is argocd control plane namespace.",
  1959              "name": "appsetNamespace",
  1960              "in": "query"
  1961            }
  1962          ],
  1963          "responses": {
  1964            "200": {
  1965              "description": "A successful response.",
  1966              "schema": {
  1967                "$ref": "#/definitions/v1alpha1ApplicationSet"
  1968              }
  1969            },
  1970            "default": {
  1971              "description": "An unexpected error response.",
  1972              "schema": {
  1973                "$ref": "#/definitions/runtimeError"
  1974              }
  1975            }
  1976          }
  1977        },
  1978        "delete": {
  1979          "tags": [
  1980            "ApplicationSetService"
  1981          ],
  1982          "summary": "Delete deletes an application set",
  1983          "operationId": "ApplicationSetService_Delete",
  1984          "parameters": [
  1985            {
  1986              "type": "string",
  1987              "name": "name",
  1988              "in": "path",
  1989              "required": true
  1990            },
  1991            {
  1992              "type": "string",
  1993              "description": "The application set namespace. Default empty is argocd control plane namespace.",
  1994              "name": "appsetNamespace",
  1995              "in": "query"
  1996            }
  1997          ],
  1998          "responses": {
  1999            "200": {
  2000              "description": "A successful response.",
  2001              "schema": {
  2002                "$ref": "#/definitions/applicationsetApplicationSetResponse"
  2003              }
  2004            },
  2005            "default": {
  2006              "description": "An unexpected error response.",
  2007              "schema": {
  2008                "$ref": "#/definitions/runtimeError"
  2009              }
  2010            }
  2011          }
  2012        }
  2013      },
  2014      "/api/v1/certificates": {
  2015        "get": {
  2016          "tags": [
  2017            "CertificateService"
  2018          ],
  2019          "summary": "List all available repository certificates",
  2020          "operationId": "CertificateService_ListCertificates",
  2021          "parameters": [
  2022            {
  2023              "type": "string",
  2024              "description": "A file-glob pattern (not regular expression) the host name has to match.",
  2025              "name": "hostNamePattern",
  2026              "in": "query"
  2027            },
  2028            {
  2029              "type": "string",
  2030              "description": "The type of the certificate to match (ssh or https).",
  2031              "name": "certType",
  2032              "in": "query"
  2033            },
  2034            {
  2035              "type": "string",
  2036              "description": "The sub type of the certificate to match (protocol dependent, usually only used for ssh certs).",
  2037              "name": "certSubType",
  2038              "in": "query"
  2039            }
  2040          ],
  2041          "responses": {
  2042            "200": {
  2043              "description": "A successful response.",
  2044              "schema": {
  2045                "$ref": "#/definitions/v1alpha1RepositoryCertificateList"
  2046              }
  2047            },
  2048            "default": {
  2049              "description": "An unexpected error response.",
  2050              "schema": {
  2051                "$ref": "#/definitions/runtimeError"
  2052              }
  2053            }
  2054          }
  2055        },
  2056        "post": {
  2057          "tags": [
  2058            "CertificateService"
  2059          ],
  2060          "summary": "Creates repository certificates on the server",
  2061          "operationId": "CertificateService_CreateCertificate",
  2062          "parameters": [
  2063            {
  2064              "description": "List of certificates to be created",
  2065              "name": "body",
  2066              "in": "body",
  2067              "required": true,
  2068              "schema": {
  2069                "$ref": "#/definitions/v1alpha1RepositoryCertificateList"
  2070              }
  2071            },
  2072            {
  2073              "type": "boolean",
  2074              "description": "Whether to upsert already existing certificates.",
  2075              "name": "upsert",
  2076              "in": "query"
  2077            }
  2078          ],
  2079          "responses": {
  2080            "200": {
  2081              "description": "A successful response.",
  2082              "schema": {
  2083                "$ref": "#/definitions/v1alpha1RepositoryCertificateList"
  2084              }
  2085            },
  2086            "default": {
  2087              "description": "An unexpected error response.",
  2088              "schema": {
  2089                "$ref": "#/definitions/runtimeError"
  2090              }
  2091            }
  2092          }
  2093        },
  2094        "delete": {
  2095          "tags": [
  2096            "CertificateService"
  2097          ],
  2098          "summary": "Delete the certificates that match the RepositoryCertificateQuery",
  2099          "operationId": "CertificateService_DeleteCertificate",
  2100          "parameters": [
  2101            {
  2102              "type": "string",
  2103              "description": "A file-glob pattern (not regular expression) the host name has to match.",
  2104              "name": "hostNamePattern",
  2105              "in": "query"
  2106            },
  2107            {
  2108              "type": "string",
  2109              "description": "The type of the certificate to match (ssh or https).",
  2110              "name": "certType",
  2111              "in": "query"
  2112            },
  2113            {
  2114              "type": "string",
  2115              "description": "The sub type of the certificate to match (protocol dependent, usually only used for ssh certs).",
  2116              "name": "certSubType",
  2117              "in": "query"
  2118            }
  2119          ],
  2120          "responses": {
  2121            "200": {
  2122              "description": "A successful response.",
  2123              "schema": {
  2124                "$ref": "#/definitions/v1alpha1RepositoryCertificateList"
  2125              }
  2126            },
  2127            "default": {
  2128              "description": "An unexpected error response.",
  2129              "schema": {
  2130                "$ref": "#/definitions/runtimeError"
  2131              }
  2132            }
  2133          }
  2134        }
  2135      },
  2136      "/api/v1/clusters": {
  2137        "get": {
  2138          "tags": [
  2139            "ClusterService"
  2140          ],
  2141          "summary": "List returns list of clusters",
  2142          "operationId": "ClusterService_List",
  2143          "parameters": [
  2144            {
  2145              "type": "string",
  2146              "name": "server",
  2147              "in": "query"
  2148            },
  2149            {
  2150              "type": "string",
  2151              "name": "name",
  2152              "in": "query"
  2153            },
  2154            {
  2155              "type": "string",
  2156              "description": "type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).",
  2157              "name": "id.type",
  2158              "in": "query"
  2159            },
  2160            {
  2161              "type": "string",
  2162              "description": "value holds the cluster server URL or cluster name.",
  2163              "name": "id.value",
  2164              "in": "query"
  2165            }
  2166          ],
  2167          "responses": {
  2168            "200": {
  2169              "description": "A successful response.",
  2170              "schema": {
  2171                "$ref": "#/definitions/v1alpha1ClusterList"
  2172              }
  2173            },
  2174            "default": {
  2175              "description": "An unexpected error response.",
  2176              "schema": {
  2177                "$ref": "#/definitions/runtimeError"
  2178              }
  2179            }
  2180          }
  2181        },
  2182        "post": {
  2183          "tags": [
  2184            "ClusterService"
  2185          ],
  2186          "summary": "Create creates a cluster",
  2187          "operationId": "ClusterService_Create",
  2188          "parameters": [
  2189            {
  2190              "name": "body",
  2191              "in": "body",
  2192              "required": true,
  2193              "schema": {
  2194                "$ref": "#/definitions/v1alpha1Cluster"
  2195              }
  2196            },
  2197            {
  2198              "type": "boolean",
  2199              "name": "upsert",
  2200              "in": "query"
  2201            }
  2202          ],
  2203          "responses": {
  2204            "200": {
  2205              "description": "A successful response.",
  2206              "schema": {
  2207                "$ref": "#/definitions/v1alpha1Cluster"
  2208              }
  2209            },
  2210            "default": {
  2211              "description": "An unexpected error response.",
  2212              "schema": {
  2213                "$ref": "#/definitions/runtimeError"
  2214              }
  2215            }
  2216          }
  2217        }
  2218      },
  2219      "/api/v1/clusters/{id.value}": {
  2220        "get": {
  2221          "tags": [
  2222            "ClusterService"
  2223          ],
  2224          "summary": "Get returns a cluster by server address",
  2225          "operationId": "ClusterService_Get",
  2226          "parameters": [
  2227            {
  2228              "type": "string",
  2229              "description": "value holds the cluster server URL or cluster name",
  2230              "name": "id.value",
  2231              "in": "path",
  2232              "required": true
  2233            },
  2234            {
  2235              "type": "string",
  2236              "name": "server",
  2237              "in": "query"
  2238            },
  2239            {
  2240              "type": "string",
  2241              "name": "name",
  2242              "in": "query"
  2243            },
  2244            {
  2245              "type": "string",
  2246              "description": "type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).",
  2247              "name": "id.type",
  2248              "in": "query"
  2249            }
  2250          ],
  2251          "responses": {
  2252            "200": {
  2253              "description": "A successful response.",
  2254              "schema": {
  2255                "$ref": "#/definitions/v1alpha1Cluster"
  2256              }
  2257            },
  2258            "default": {
  2259              "description": "An unexpected error response.",
  2260              "schema": {
  2261                "$ref": "#/definitions/runtimeError"
  2262              }
  2263            }
  2264          }
  2265        },
  2266        "put": {
  2267          "tags": [
  2268            "ClusterService"
  2269          ],
  2270          "summary": "Update updates a cluster",
  2271          "operationId": "ClusterService_Update",
  2272          "parameters": [
  2273            {
  2274              "type": "string",
  2275              "description": "value holds the cluster server URL or cluster name",
  2276              "name": "id.value",
  2277              "in": "path",
  2278              "required": true
  2279            },
  2280            {
  2281              "name": "body",
  2282              "in": "body",
  2283              "required": true,
  2284              "schema": {
  2285                "$ref": "#/definitions/v1alpha1Cluster"
  2286              }
  2287            },
  2288            {
  2289              "type": "array",
  2290              "items": {
  2291                "type": "string"
  2292              },
  2293              "collectionFormat": "multi",
  2294              "name": "updatedFields",
  2295              "in": "query"
  2296            },
  2297            {
  2298              "type": "string",
  2299              "description": "type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).",
  2300              "name": "id.type",
  2301              "in": "query"
  2302            }
  2303          ],
  2304          "responses": {
  2305            "200": {
  2306              "description": "A successful response.",
  2307              "schema": {
  2308                "$ref": "#/definitions/v1alpha1Cluster"
  2309              }
  2310            },
  2311            "default": {
  2312              "description": "An unexpected error response.",
  2313              "schema": {
  2314                "$ref": "#/definitions/runtimeError"
  2315              }
  2316            }
  2317          }
  2318        },
  2319        "delete": {
  2320          "tags": [
  2321            "ClusterService"
  2322          ],
  2323          "summary": "Delete deletes a cluster",
  2324          "operationId": "ClusterService_Delete",
  2325          "parameters": [
  2326            {
  2327              "type": "string",
  2328              "description": "value holds the cluster server URL or cluster name",
  2329              "name": "id.value",
  2330              "in": "path",
  2331              "required": true
  2332            },
  2333            {
  2334              "type": "string",
  2335              "name": "server",
  2336              "in": "query"
  2337            },
  2338            {
  2339              "type": "string",
  2340              "name": "name",
  2341              "in": "query"
  2342            },
  2343            {
  2344              "type": "string",
  2345              "description": "type is the type of the specified cluster identifier ( \"server\" - default, \"name\" ).",
  2346              "name": "id.type",
  2347              "in": "query"
  2348            }
  2349          ],
  2350          "responses": {
  2351            "200": {
  2352              "description": "A successful response.",
  2353              "schema": {
  2354                "$ref": "#/definitions/clusterClusterResponse"
  2355              }
  2356            },
  2357            "default": {
  2358              "description": "An unexpected error response.",
  2359              "schema": {
  2360                "$ref": "#/definitions/runtimeError"
  2361              }
  2362            }
  2363          }
  2364        }
  2365      },
  2366      "/api/v1/clusters/{id.value}/invalidate-cache": {
  2367        "post": {
  2368          "tags": [
  2369            "ClusterService"
  2370          ],
  2371          "summary": "InvalidateCache invalidates cluster cache",
  2372          "operationId": "ClusterService_InvalidateCache",
  2373          "parameters": [
  2374            {
  2375              "type": "string",
  2376              "description": "value holds the cluster server URL or cluster name",
  2377              "name": "id.value",
  2378              "in": "path",
  2379              "required": true
  2380            }
  2381          ],
  2382          "responses": {
  2383            "200": {
  2384              "description": "A successful response.",
  2385              "schema": {
  2386                "$ref": "#/definitions/v1alpha1Cluster"
  2387              }
  2388            },
  2389            "default": {
  2390              "description": "An unexpected error response.",
  2391              "schema": {
  2392                "$ref": "#/definitions/runtimeError"
  2393              }
  2394            }
  2395          }
  2396        }
  2397      },
  2398      "/api/v1/clusters/{id.value}/rotate-auth": {
  2399        "post": {
  2400          "tags": [
  2401            "ClusterService"
  2402          ],
  2403          "summary": "RotateAuth rotates the bearer token used for a cluster",
  2404          "operationId": "ClusterService_RotateAuth",
  2405          "parameters": [
  2406            {
  2407              "type": "string",
  2408              "description": "value holds the cluster server URL or cluster name",
  2409              "name": "id.value",
  2410              "in": "path",
  2411              "required": true
  2412            }
  2413          ],
  2414          "responses": {
  2415            "200": {
  2416              "description": "A successful response.",
  2417              "schema": {
  2418                "$ref": "#/definitions/clusterClusterResponse"
  2419              }
  2420            },
  2421            "default": {
  2422              "description": "An unexpected error response.",
  2423              "schema": {
  2424                "$ref": "#/definitions/runtimeError"
  2425              }
  2426            }
  2427          }
  2428        }
  2429      },
  2430      "/api/v1/gpgkeys": {
  2431        "get": {
  2432          "tags": [
  2433            "GPGKeyService"
  2434          ],
  2435          "summary": "List all available repository certificates",
  2436          "operationId": "GPGKeyService_List",
  2437          "parameters": [
  2438            {
  2439              "type": "string",
  2440              "description": "The GPG key ID to query for.",
  2441              "name": "keyID",
  2442              "in": "query"
  2443            }
  2444          ],
  2445          "responses": {
  2446            "200": {
  2447              "description": "A successful response.",
  2448              "schema": {
  2449                "$ref": "#/definitions/v1alpha1GnuPGPublicKeyList"
  2450              }
  2451            },
  2452            "default": {
  2453              "description": "An unexpected error response.",
  2454              "schema": {
  2455                "$ref": "#/definitions/runtimeError"
  2456              }
  2457            }
  2458          }
  2459        },
  2460        "post": {
  2461          "tags": [
  2462            "GPGKeyService"
  2463          ],
  2464          "summary": "Create one or more GPG public keys in the server's configuration",
  2465          "operationId": "GPGKeyService_Create",
  2466          "parameters": [
  2467            {
  2468              "description": "Raw key data of the GPG key(s) to create",
  2469              "name": "body",
  2470              "in": "body",
  2471              "required": true,
  2472              "schema": {
  2473                "$ref": "#/definitions/v1alpha1GnuPGPublicKey"
  2474              }
  2475            },
  2476            {
  2477              "type": "boolean",
  2478              "description": "Whether to upsert already existing public keys.",
  2479              "name": "upsert",
  2480              "in": "query"
  2481            }
  2482          ],
  2483          "responses": {
  2484            "200": {
  2485              "description": "A successful response.",
  2486              "schema": {
  2487                "$ref": "#/definitions/gpgkeyGnuPGPublicKeyCreateResponse"
  2488              }
  2489            },
  2490            "default": {
  2491              "description": "An unexpected error response.",
  2492              "schema": {
  2493                "$ref": "#/definitions/runtimeError"
  2494              }
  2495            }
  2496          }
  2497        },
  2498        "delete": {
  2499          "tags": [
  2500            "GPGKeyService"
  2501          ],
  2502          "summary": "Delete specified GPG public key from the server's configuration",
  2503          "operationId": "GPGKeyService_Delete",
  2504          "parameters": [
  2505            {
  2506              "type": "string",
  2507              "description": "The GPG key ID to query for.",
  2508              "name": "keyID",
  2509              "in": "query"
  2510            }
  2511          ],
  2512          "responses": {
  2513            "200": {
  2514              "description": "A successful response.",
  2515              "schema": {
  2516                "$ref": "#/definitions/gpgkeyGnuPGPublicKeyResponse"
  2517              }
  2518            },
  2519            "default": {
  2520              "description": "An unexpected error response.",
  2521              "schema": {
  2522                "$ref": "#/definitions/runtimeError"
  2523              }
  2524            }
  2525          }
  2526        }
  2527      },
  2528      "/api/v1/gpgkeys/{keyID}": {
  2529        "get": {
  2530          "tags": [
  2531            "GPGKeyService"
  2532          ],
  2533          "summary": "Get information about specified GPG public key from the server",
  2534          "operationId": "GPGKeyService_Get",
  2535          "parameters": [
  2536            {
  2537              "type": "string",
  2538              "description": "The GPG key ID to query for",
  2539              "name": "keyID",
  2540              "in": "path",
  2541              "required": true
  2542            }
  2543          ],
  2544          "responses": {
  2545            "200": {
  2546              "description": "A successful response.",
  2547              "schema": {
  2548                "$ref": "#/definitions/v1alpha1GnuPGPublicKey"
  2549              }
  2550            },
  2551            "default": {
  2552              "description": "An unexpected error response.",
  2553              "schema": {
  2554                "$ref": "#/definitions/runtimeError"
  2555              }
  2556            }
  2557          }
  2558        }
  2559      },
  2560      "/api/v1/notifications/services": {
  2561        "get": {
  2562          "tags": [
  2563            "NotificationService"
  2564          ],
  2565          "summary": "List returns list of services",
  2566          "operationId": "NotificationService_ListServices",
  2567          "responses": {
  2568            "200": {
  2569              "description": "A successful response.",
  2570              "schema": {
  2571                "$ref": "#/definitions/notificationServiceList"
  2572              }
  2573            },
  2574            "default": {
  2575              "description": "An unexpected error response.",
  2576              "schema": {
  2577                "$ref": "#/definitions/runtimeError"
  2578              }
  2579            }
  2580          }
  2581        }
  2582      },
  2583      "/api/v1/notifications/templates": {
  2584        "get": {
  2585          "tags": [
  2586            "NotificationService"
  2587          ],
  2588          "summary": "List returns list of templates",
  2589          "operationId": "NotificationService_ListTemplates",
  2590          "responses": {
  2591            "200": {
  2592              "description": "A successful response.",
  2593              "schema": {
  2594                "$ref": "#/definitions/notificationTemplateList"
  2595              }
  2596            },
  2597            "default": {
  2598              "description": "An unexpected error response.",
  2599              "schema": {
  2600                "$ref": "#/definitions/runtimeError"
  2601              }
  2602            }
  2603          }
  2604        }
  2605      },
  2606      "/api/v1/notifications/triggers": {
  2607        "get": {
  2608          "tags": [
  2609            "NotificationService"
  2610          ],
  2611          "summary": "List returns list of triggers",
  2612          "operationId": "NotificationService_ListTriggers",
  2613          "responses": {
  2614            "200": {
  2615              "description": "A successful response.",
  2616              "schema": {
  2617                "$ref": "#/definitions/notificationTriggerList"
  2618              }
  2619            },
  2620            "default": {
  2621              "description": "An unexpected error response.",
  2622              "schema": {
  2623                "$ref": "#/definitions/runtimeError"
  2624              }
  2625            }
  2626          }
  2627        }
  2628      },
  2629      "/api/v1/projects": {
  2630        "get": {
  2631          "tags": [
  2632            "ProjectService"
  2633          ],
  2634          "summary": "List returns list of projects",
  2635          "operationId": "ProjectService_List",
  2636          "parameters": [
  2637            {
  2638              "type": "string",
  2639              "name": "name",
  2640              "in": "query"
  2641            }
  2642          ],
  2643          "responses": {
  2644            "200": {
  2645              "description": "A successful response.",
  2646              "schema": {
  2647                "$ref": "#/definitions/v1alpha1AppProjectList"
  2648              }
  2649            },
  2650            "default": {
  2651              "description": "An unexpected error response.",
  2652              "schema": {
  2653                "$ref": "#/definitions/runtimeError"
  2654              }
  2655            }
  2656          }
  2657        },
  2658        "post": {
  2659          "tags": [
  2660            "ProjectService"
  2661          ],
  2662          "summary": "Create a new project",
  2663          "operationId": "ProjectService_Create",
  2664          "parameters": [
  2665            {
  2666              "name": "body",
  2667              "in": "body",
  2668              "required": true,
  2669              "schema": {
  2670                "$ref": "#/definitions/projectProjectCreateRequest"
  2671              }
  2672            }
  2673          ],
  2674          "responses": {
  2675            "200": {
  2676              "description": "A successful response.",
  2677              "schema": {
  2678                "$ref": "#/definitions/v1alpha1AppProject"
  2679              }
  2680            },
  2681            "default": {
  2682              "description": "An unexpected error response.",
  2683              "schema": {
  2684                "$ref": "#/definitions/runtimeError"
  2685              }
  2686            }
  2687          }
  2688        }
  2689      },
  2690      "/api/v1/projects/{name}": {
  2691        "get": {
  2692          "tags": [
  2693            "ProjectService"
  2694          ],
  2695          "summary": "Get returns a project by name",
  2696          "operationId": "ProjectService_Get",
  2697          "parameters": [
  2698            {
  2699              "type": "string",
  2700              "name": "name",
  2701              "in": "path",
  2702              "required": true
  2703            }
  2704          ],
  2705          "responses": {
  2706            "200": {
  2707              "description": "A successful response.",
  2708              "schema": {
  2709                "$ref": "#/definitions/v1alpha1AppProject"
  2710              }
  2711            },
  2712            "default": {
  2713              "description": "An unexpected error response.",
  2714              "schema": {
  2715                "$ref": "#/definitions/runtimeError"
  2716              }
  2717            }
  2718          }
  2719        },
  2720        "delete": {
  2721          "tags": [
  2722            "ProjectService"
  2723          ],
  2724          "summary": "Delete deletes a project",
  2725          "operationId": "ProjectService_Delete",
  2726          "parameters": [
  2727            {
  2728              "type": "string",
  2729              "name": "name",
  2730              "in": "path",
  2731              "required": true
  2732            }
  2733          ],
  2734          "responses": {
  2735            "200": {
  2736              "description": "A successful response.",
  2737              "schema": {
  2738                "$ref": "#/definitions/projectEmptyResponse"
  2739              }
  2740            },
  2741            "default": {
  2742              "description": "An unexpected error response.",
  2743              "schema": {
  2744                "$ref": "#/definitions/runtimeError"
  2745              }
  2746            }
  2747          }
  2748        }
  2749      },
  2750      "/api/v1/projects/{name}/detailed": {
  2751        "get": {
  2752          "tags": [
  2753            "ProjectService"
  2754          ],
  2755          "summary": "GetDetailedProject returns a project that include project, global project and scoped resources by name",
  2756          "operationId": "ProjectService_GetDetailedProject",
  2757          "parameters": [
  2758            {
  2759              "type": "string",
  2760              "name": "name",
  2761              "in": "path",
  2762              "required": true
  2763            }
  2764          ],
  2765          "responses": {
  2766            "200": {
  2767              "description": "A successful response.",
  2768              "schema": {
  2769                "$ref": "#/definitions/projectDetailedProjectsResponse"
  2770              }
  2771            },
  2772            "default": {
  2773              "description": "An unexpected error response.",
  2774              "schema": {
  2775                "$ref": "#/definitions/runtimeError"
  2776              }
  2777            }
  2778          }
  2779        }
  2780      },
  2781      "/api/v1/projects/{name}/events": {
  2782        "get": {
  2783          "tags": [
  2784            "ProjectService"
  2785          ],
  2786          "summary": "ListEvents returns a list of project events",
  2787          "operationId": "ProjectService_ListEvents",
  2788          "parameters": [
  2789            {
  2790              "type": "string",
  2791              "name": "name",
  2792              "in": "path",
  2793              "required": true
  2794            }
  2795          ],
  2796          "responses": {
  2797            "200": {
  2798              "description": "A successful response.",
  2799              "schema": {
  2800                "$ref": "#/definitions/v1EventList"
  2801              }
  2802            },
  2803            "default": {
  2804              "description": "An unexpected error response.",
  2805              "schema": {
  2806                "$ref": "#/definitions/runtimeError"
  2807              }
  2808            }
  2809          }
  2810        }
  2811      },
  2812      "/api/v1/projects/{name}/globalprojects": {
  2813        "get": {
  2814          "tags": [
  2815            "ProjectService"
  2816          ],
  2817          "summary": "Get returns a virtual project by name",
  2818          "operationId": "ProjectService_GetGlobalProjects",
  2819          "parameters": [
  2820            {
  2821              "type": "string",
  2822              "name": "name",
  2823              "in": "path",
  2824              "required": true
  2825            }
  2826          ],
  2827          "responses": {
  2828            "200": {
  2829              "description": "A successful response.",
  2830              "schema": {
  2831                "$ref": "#/definitions/projectGlobalProjectsResponse"
  2832              }
  2833            },
  2834            "default": {
  2835              "description": "An unexpected error response.",
  2836              "schema": {
  2837                "$ref": "#/definitions/runtimeError"
  2838              }
  2839            }
  2840          }
  2841        }
  2842      },
  2843      "/api/v1/projects/{name}/links": {
  2844        "get": {
  2845          "tags": [
  2846            "ProjectService"
  2847          ],
  2848          "summary": "ListLinks returns all deep links for the particular project",
  2849          "operationId": "ProjectService_ListLinks",
  2850          "parameters": [
  2851            {
  2852              "type": "string",
  2853              "name": "name",
  2854              "in": "path",
  2855              "required": true
  2856            }
  2857          ],
  2858          "responses": {
  2859            "200": {
  2860              "description": "A successful response.",
  2861              "schema": {
  2862                "$ref": "#/definitions/applicationLinksResponse"
  2863              }
  2864            },
  2865            "default": {
  2866              "description": "An unexpected error response.",
  2867              "schema": {
  2868                "$ref": "#/definitions/runtimeError"
  2869              }
  2870            }
  2871          }
  2872        }
  2873      },
  2874      "/api/v1/projects/{name}/syncwindows": {
  2875        "get": {
  2876          "tags": [
  2877            "ProjectService"
  2878          ],
  2879          "summary": "GetSchedulesState returns true if there are any active sync syncWindows",
  2880          "operationId": "ProjectService_GetSyncWindowsState",
  2881          "parameters": [
  2882            {
  2883              "type": "string",
  2884              "name": "name",
  2885              "in": "path",
  2886              "required": true
  2887            }
  2888          ],
  2889          "responses": {
  2890            "200": {
  2891              "description": "A successful response.",
  2892              "schema": {
  2893                "$ref": "#/definitions/projectSyncWindowsResponse"
  2894              }
  2895            },
  2896            "default": {
  2897              "description": "An unexpected error response.",
  2898              "schema": {
  2899                "$ref": "#/definitions/runtimeError"
  2900              }
  2901            }
  2902          }
  2903        }
  2904      },
  2905      "/api/v1/projects/{project.metadata.name}": {
  2906        "put": {
  2907          "tags": [
  2908            "ProjectService"
  2909          ],
  2910          "summary": "Update updates a project",
  2911          "operationId": "ProjectService_Update",
  2912          "parameters": [
  2913            {
  2914              "type": "string",
  2915              "description": "Name must be unique within a namespace. Is required when creating resources, although\nsome resources may allow a client to request the generation of an appropriate name\nautomatically. Name is primarily intended for creation idempotence and configuration\ndefinition.\nCannot be updated.\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\n+optional",
  2916              "name": "project.metadata.name",
  2917              "in": "path",
  2918              "required": true
  2919            },
  2920            {
  2921              "name": "body",
  2922              "in": "body",
  2923              "required": true,
  2924              "schema": {
  2925                "$ref": "#/definitions/projectProjectUpdateRequest"
  2926              }
  2927            }
  2928          ],
  2929          "responses": {
  2930            "200": {
  2931              "description": "A successful response.",
  2932              "schema": {
  2933                "$ref": "#/definitions/v1alpha1AppProject"
  2934              }
  2935            },
  2936            "default": {
  2937              "description": "An unexpected error response.",
  2938              "schema": {
  2939                "$ref": "#/definitions/runtimeError"
  2940              }
  2941            }
  2942          }
  2943        }
  2944      },
  2945      "/api/v1/projects/{project}/roles/{role}/token": {
  2946        "post": {
  2947          "tags": [
  2948            "ProjectService"
  2949          ],
  2950          "summary": "Create a new project token",
  2951          "operationId": "ProjectService_CreateToken",
  2952          "parameters": [
  2953            {
  2954              "type": "string",
  2955              "name": "project",
  2956              "in": "path",
  2957              "required": true
  2958            },
  2959            {
  2960              "type": "string",
  2961              "name": "role",
  2962              "in": "path",
  2963              "required": true
  2964            },
  2965            {
  2966              "name": "body",
  2967              "in": "body",
  2968              "required": true,
  2969              "schema": {
  2970                "$ref": "#/definitions/projectProjectTokenCreateRequest"
  2971              }
  2972            }
  2973          ],
  2974          "responses": {
  2975            "200": {
  2976              "description": "A successful response.",
  2977              "schema": {
  2978                "$ref": "#/definitions/projectProjectTokenResponse"
  2979              }
  2980            },
  2981            "default": {
  2982              "description": "An unexpected error response.",
  2983              "schema": {
  2984                "$ref": "#/definitions/runtimeError"
  2985              }
  2986            }
  2987          }
  2988        }
  2989      },
  2990      "/api/v1/projects/{project}/roles/{role}/token/{iat}": {
  2991        "delete": {
  2992          "tags": [
  2993            "ProjectService"
  2994          ],
  2995          "summary": "Delete a new project token",
  2996          "operationId": "ProjectService_DeleteToken",
  2997          "parameters": [
  2998            {
  2999              "type": "string",
  3000              "name": "project",
  3001              "in": "path",
  3002              "required": true
  3003            },
  3004            {
  3005              "type": "string",
  3006              "name": "role",
  3007              "in": "path",
  3008              "required": true
  3009            },
  3010            {
  3011              "type": "string",
  3012              "format": "int64",
  3013              "name": "iat",
  3014              "in": "path",
  3015              "required": true
  3016            },
  3017            {
  3018              "type": "string",
  3019              "name": "id",
  3020              "in": "query"
  3021            }
  3022          ],
  3023          "responses": {
  3024            "200": {
  3025              "description": "A successful response.",
  3026              "schema": {
  3027                "$ref": "#/definitions/projectEmptyResponse"
  3028              }
  3029            },
  3030            "default": {
  3031              "description": "An unexpected error response.",
  3032              "schema": {
  3033                "$ref": "#/definitions/runtimeError"
  3034              }
  3035            }
  3036          }
  3037        }
  3038      },
  3039      "/api/v1/repocreds": {
  3040        "get": {
  3041          "tags": [
  3042            "RepoCredsService"
  3043          ],
  3044          "summary": "ListRepositoryCredentials gets a list of all configured repository credential sets",
  3045          "operationId": "RepoCredsService_ListRepositoryCredentials",
  3046          "parameters": [
  3047            {
  3048              "type": "string",
  3049              "description": "Repo URL for query.",
  3050              "name": "url",
  3051              "in": "query"
  3052            }
  3053          ],
  3054          "responses": {
  3055            "200": {
  3056              "description": "A successful response.",
  3057              "schema": {
  3058                "$ref": "#/definitions/v1alpha1RepoCredsList"
  3059              }
  3060            },
  3061            "default": {
  3062              "description": "An unexpected error response.",
  3063              "schema": {
  3064                "$ref": "#/definitions/runtimeError"
  3065              }
  3066            }
  3067          }
  3068        },
  3069        "post": {
  3070          "tags": [
  3071            "RepoCredsService"
  3072          ],
  3073          "summary": "CreateRepositoryCredentials creates a new repository credential set",
  3074          "operationId": "RepoCredsService_CreateRepositoryCredentials",
  3075          "parameters": [
  3076            {
  3077              "description": "Repository definition",
  3078              "name": "body",
  3079              "in": "body",
  3080              "required": true,
  3081              "schema": {
  3082                "$ref": "#/definitions/v1alpha1RepoCreds"
  3083              }
  3084            },
  3085            {
  3086              "type": "boolean",
  3087              "description": "Whether to create in upsert mode.",
  3088              "name": "upsert",
  3089              "in": "query"
  3090            }
  3091          ],
  3092          "responses": {
  3093            "200": {
  3094              "description": "A successful response.",
  3095              "schema": {
  3096                "$ref": "#/definitions/v1alpha1RepoCreds"
  3097              }
  3098            },
  3099            "default": {
  3100              "description": "An unexpected error response.",
  3101              "schema": {
  3102                "$ref": "#/definitions/runtimeError"
  3103              }
  3104            }
  3105          }
  3106        }
  3107      },
  3108      "/api/v1/repocreds/{creds.url}": {
  3109        "put": {
  3110          "tags": [
  3111            "RepoCredsService"
  3112          ],
  3113          "summary": "UpdateRepositoryCredentials updates a repository credential set",
  3114          "operationId": "RepoCredsService_UpdateRepositoryCredentials",
  3115          "parameters": [
  3116            {
  3117              "type": "string",
  3118              "description": "URL is the URL that this credentials matches to",
  3119              "name": "creds.url",
  3120              "in": "path",
  3121              "required": true
  3122            },
  3123            {
  3124              "name": "body",
  3125              "in": "body",
  3126              "required": true,
  3127              "schema": {
  3128                "$ref": "#/definitions/v1alpha1RepoCreds"
  3129              }
  3130            }
  3131          ],
  3132          "responses": {
  3133            "200": {
  3134              "description": "A successful response.",
  3135              "schema": {
  3136                "$ref": "#/definitions/v1alpha1RepoCreds"
  3137              }
  3138            },
  3139            "default": {
  3140              "description": "An unexpected error response.",
  3141              "schema": {
  3142                "$ref": "#/definitions/runtimeError"
  3143              }
  3144            }
  3145          }
  3146        }
  3147      },
  3148      "/api/v1/repocreds/{url}": {
  3149        "delete": {
  3150          "tags": [
  3151            "RepoCredsService"
  3152          ],
  3153          "summary": "DeleteRepositoryCredentials deletes a repository credential set from the configuration",
  3154          "operationId": "RepoCredsService_DeleteRepositoryCredentials",
  3155          "parameters": [
  3156            {
  3157              "type": "string",
  3158              "name": "url",
  3159              "in": "path",
  3160              "required": true
  3161            }
  3162          ],
  3163          "responses": {
  3164            "200": {
  3165              "description": "A successful response.",
  3166              "schema": {
  3167                "$ref": "#/definitions/repocredsRepoCredsResponse"
  3168              }
  3169            },
  3170            "default": {
  3171              "description": "An unexpected error response.",
  3172              "schema": {
  3173                "$ref": "#/definitions/runtimeError"
  3174              }
  3175            }
  3176          }
  3177        }
  3178      },
  3179      "/api/v1/repositories": {
  3180        "get": {
  3181          "tags": [
  3182            "RepositoryService"
  3183          ],
  3184          "summary": "ListRepositories gets a list of all configured repositories",
  3185          "operationId": "RepositoryService_ListRepositories",
  3186          "parameters": [
  3187            {
  3188              "type": "string",
  3189              "description": "Repo URL for query.",
  3190              "name": "repo",
  3191              "in": "query"
  3192            },
  3193            {
  3194              "type": "boolean",
  3195              "description": "Whether to force a cache refresh on repo's connection state.",
  3196              "name": "forceRefresh",
  3197              "in": "query"
  3198            }
  3199          ],
  3200          "responses": {
  3201            "200": {
  3202              "description": "A successful response.",
  3203              "schema": {
  3204                "$ref": "#/definitions/v1alpha1RepositoryList"
  3205              }
  3206            },
  3207            "default": {
  3208              "description": "An unexpected error response.",
  3209              "schema": {
  3210                "$ref": "#/definitions/runtimeError"
  3211              }
  3212            }
  3213          }
  3214        },
  3215        "post": {
  3216          "tags": [
  3217            "RepositoryService"
  3218          ],
  3219          "summary": "CreateRepository creates a new repository configuration",
  3220          "operationId": "RepositoryService_CreateRepository",
  3221          "parameters": [
  3222            {
  3223              "description": "Repository definition",
  3224              "name": "body",
  3225              "in": "body",
  3226              "required": true,
  3227              "schema": {
  3228                "$ref": "#/definitions/v1alpha1Repository"
  3229              }
  3230            },
  3231            {
  3232              "type": "boolean",
  3233              "description": "Whether to create in upsert mode.",
  3234              "name": "upsert",
  3235              "in": "query"
  3236            },
  3237            {
  3238              "type": "boolean",
  3239              "description": "Whether to operate on credential set instead of repository.",
  3240              "name": "credsOnly",
  3241              "in": "query"
  3242            }
  3243          ],
  3244          "responses": {
  3245            "200": {
  3246              "description": "A successful response.",
  3247              "schema": {
  3248                "$ref": "#/definitions/v1alpha1Repository"
  3249              }
  3250            },
  3251            "default": {
  3252              "description": "An unexpected error response.",
  3253              "schema": {
  3254                "$ref": "#/definitions/runtimeError"
  3255              }
  3256            }
  3257          }
  3258        }
  3259      },
  3260      "/api/v1/repositories/{repo.repo}": {
  3261        "put": {
  3262          "tags": [
  3263            "RepositoryService"
  3264          ],
  3265          "summary": "UpdateRepository updates a repository configuration",
  3266          "operationId": "RepositoryService_UpdateRepository",
  3267          "parameters": [
  3268            {
  3269              "type": "string",
  3270              "description": "Repo contains the URL to the remote repository",
  3271              "name": "repo.repo",
  3272              "in": "path",
  3273              "required": true
  3274            },
  3275            {
  3276              "name": "body",
  3277              "in": "body",
  3278              "required": true,
  3279              "schema": {
  3280                "$ref": "#/definitions/v1alpha1Repository"
  3281              }
  3282            }
  3283          ],
  3284          "responses": {
  3285            "200": {
  3286              "description": "A successful response.",
  3287              "schema": {
  3288                "$ref": "#/definitions/v1alpha1Repository"
  3289              }
  3290            },
  3291            "default": {
  3292              "description": "An unexpected error response.",
  3293              "schema": {
  3294                "$ref": "#/definitions/runtimeError"
  3295              }
  3296            }
  3297          }
  3298        }
  3299      },
  3300      "/api/v1/repositories/{repo}": {
  3301        "get": {
  3302          "tags": [
  3303            "RepositoryService"
  3304          ],
  3305          "summary": "Get returns a repository or its credentials",
  3306          "operationId": "RepositoryService_Get",
  3307          "parameters": [
  3308            {
  3309              "type": "string",
  3310              "description": "Repo URL for query",
  3311              "name": "repo",
  3312              "in": "path",
  3313              "required": true
  3314            },
  3315            {
  3316              "type": "boolean",
  3317              "description": "Whether to force a cache refresh on repo's connection state.",
  3318              "name": "forceRefresh",
  3319              "in": "query"
  3320            }
  3321          ],
  3322          "responses": {
  3323            "200": {
  3324              "description": "A successful response.",
  3325              "schema": {
  3326                "$ref": "#/definitions/v1alpha1Repository"
  3327              }
  3328            },
  3329            "default": {
  3330              "description": "An unexpected error response.",
  3331              "schema": {
  3332                "$ref": "#/definitions/runtimeError"
  3333              }
  3334            }
  3335          }
  3336        },
  3337        "delete": {
  3338          "tags": [
  3339            "RepositoryService"
  3340          ],
  3341          "summary": "DeleteRepository deletes a repository from the configuration",
  3342          "operationId": "RepositoryService_DeleteRepository",
  3343          "parameters": [
  3344            {
  3345              "type": "string",
  3346              "description": "Repo URL for query",
  3347              "name": "repo",
  3348              "in": "path",
  3349              "required": true
  3350            },
  3351            {
  3352              "type": "boolean",
  3353              "description": "Whether to force a cache refresh on repo's connection state.",
  3354              "name": "forceRefresh",
  3355              "in": "query"
  3356            }
  3357          ],
  3358          "responses": {
  3359            "200": {
  3360              "description": "A successful response.",
  3361              "schema": {
  3362                "$ref": "#/definitions/repositoryRepoResponse"
  3363              }
  3364            },
  3365            "default": {
  3366              "description": "An unexpected error response.",
  3367              "schema": {
  3368                "$ref": "#/definitions/runtimeError"
  3369              }
  3370            }
  3371          }
  3372        }
  3373      },
  3374      "/api/v1/repositories/{repo}/apps": {
  3375        "get": {
  3376          "tags": [
  3377            "RepositoryService"
  3378          ],
  3379          "summary": "ListApps returns list of apps in the repo",
  3380          "operationId": "RepositoryService_ListApps",
  3381          "parameters": [
  3382            {
  3383              "type": "string",
  3384              "name": "repo",
  3385              "in": "path",
  3386              "required": true
  3387            },
  3388            {
  3389              "type": "string",
  3390              "name": "revision",
  3391              "in": "query"
  3392            },
  3393            {
  3394              "type": "string",
  3395              "name": "appName",
  3396              "in": "query"
  3397            },
  3398            {
  3399              "type": "string",
  3400              "name": "appProject",
  3401              "in": "query"
  3402            }
  3403          ],
  3404          "responses": {
  3405            "200": {
  3406              "description": "A successful response.",
  3407              "schema": {
  3408                "$ref": "#/definitions/repositoryRepoAppsResponse"
  3409              }
  3410            },
  3411            "default": {
  3412              "description": "An unexpected error response.",
  3413              "schema": {
  3414                "$ref": "#/definitions/runtimeError"
  3415              }
  3416            }
  3417          }
  3418        }
  3419      },
  3420      "/api/v1/repositories/{repo}/helmcharts": {
  3421        "get": {
  3422          "tags": [
  3423            "RepositoryService"
  3424          ],
  3425          "summary": "GetHelmCharts returns list of helm charts in the specified repository",
  3426          "operationId": "RepositoryService_GetHelmCharts",
  3427          "parameters": [
  3428            {
  3429              "type": "string",
  3430              "description": "Repo URL for query",
  3431              "name": "repo",
  3432              "in": "path",
  3433              "required": true
  3434            },
  3435            {
  3436              "type": "boolean",
  3437              "description": "Whether to force a cache refresh on repo's connection state.",
  3438              "name": "forceRefresh",
  3439              "in": "query"
  3440            }
  3441          ],
  3442          "responses": {
  3443            "200": {
  3444              "description": "A successful response.",
  3445              "schema": {
  3446                "$ref": "#/definitions/repositoryHelmChartsResponse"
  3447              }
  3448            },
  3449            "default": {
  3450              "description": "An unexpected error response.",
  3451              "schema": {
  3452                "$ref": "#/definitions/runtimeError"
  3453              }
  3454            }
  3455          }
  3456        }
  3457      },
  3458      "/api/v1/repositories/{repo}/refs": {
  3459        "get": {
  3460          "tags": [
  3461            "RepositoryService"
  3462          ],
  3463          "operationId": "RepositoryService_ListRefs",
  3464          "parameters": [
  3465            {
  3466              "type": "string",
  3467              "description": "Repo URL for query",
  3468              "name": "repo",
  3469              "in": "path",
  3470              "required": true
  3471            },
  3472            {
  3473              "type": "boolean",
  3474              "description": "Whether to force a cache refresh on repo's connection state.",
  3475              "name": "forceRefresh",
  3476              "in": "query"
  3477            }
  3478          ],
  3479          "responses": {
  3480            "200": {
  3481              "description": "A successful response.",
  3482              "schema": {
  3483                "$ref": "#/definitions/repositoryRefs"
  3484              }
  3485            },
  3486            "default": {
  3487              "description": "An unexpected error response.",
  3488              "schema": {
  3489                "$ref": "#/definitions/runtimeError"
  3490              }
  3491            }
  3492          }
  3493        }
  3494      },
  3495      "/api/v1/repositories/{repo}/validate": {
  3496        "post": {
  3497          "tags": [
  3498            "RepositoryService"
  3499          ],
  3500          "summary": "ValidateAccess validates access to a repository with given parameters",
  3501          "operationId": "RepositoryService_ValidateAccess",
  3502          "parameters": [
  3503            {
  3504              "type": "string",
  3505              "description": "The URL to the repo",
  3506              "name": "repo",
  3507              "in": "path",
  3508              "required": true
  3509            },
  3510            {
  3511              "description": "The URL to the repo",
  3512              "name": "body",
  3513              "in": "body",
  3514              "required": true,
  3515              "schema": {
  3516                "type": "string"
  3517              }
  3518            },
  3519            {
  3520              "type": "string",
  3521              "description": "Username for accessing repo.",
  3522              "name": "username",
  3523              "in": "query"
  3524            },
  3525            {
  3526              "type": "string",
  3527              "description": "Password for accessing repo.",
  3528              "name": "password",
  3529              "in": "query"
  3530            },
  3531            {
  3532              "type": "string",
  3533              "description": "Private key data for accessing SSH repository.",
  3534              "name": "sshPrivateKey",
  3535              "in": "query"
  3536            },
  3537            {
  3538              "type": "boolean",
  3539              "description": "Whether to skip certificate or host key validation.",
  3540              "name": "insecure",
  3541              "in": "query"
  3542            },
  3543            {
  3544              "type": "string",
  3545              "description": "TLS client cert data for accessing HTTPS repository.",
  3546              "name": "tlsClientCertData",
  3547              "in": "query"
  3548            },
  3549            {
  3550              "type": "string",
  3551              "description": "TLS client cert key for accessing HTTPS repository.",
  3552              "name": "tlsClientCertKey",
  3553              "in": "query"
  3554            },
  3555            {
  3556              "type": "string",
  3557              "description": "The type of the repo.",
  3558              "name": "type",
  3559              "in": "query"
  3560            },
  3561            {
  3562              "type": "string",
  3563              "description": "The name of the repo.",
  3564              "name": "name",
  3565              "in": "query"
  3566            },
  3567            {
  3568              "type": "boolean",
  3569              "description": "Whether helm-oci support should be enabled for this repo.",
  3570              "name": "enableOci",
  3571              "in": "query"
  3572            },
  3573            {
  3574              "type": "string",
  3575              "description": "Github App Private Key PEM data.",
  3576              "name": "githubAppPrivateKey",
  3577              "in": "query"
  3578            },
  3579            {
  3580              "type": "string",
  3581              "format": "int64",
  3582              "description": "Github App ID of the app used to access the repo.",
  3583              "name": "githubAppID",
  3584              "in": "query"
  3585            },
  3586            {
  3587              "type": "string",
  3588              "format": "int64",
  3589              "description": "Github App Installation ID of the installed GitHub App.",
  3590              "name": "githubAppInstallationID",
  3591              "in": "query"
  3592            },
  3593            {
  3594              "type": "string",
  3595              "description": "Github App Enterprise base url if empty will default to https://api.github.com.",
  3596              "name": "githubAppEnterpriseBaseUrl",
  3597              "in": "query"
  3598            },
  3599            {
  3600              "type": "string",
  3601              "description": "HTTP/HTTPS proxy to access the repository.",
  3602              "name": "proxy",
  3603              "in": "query"
  3604            },
  3605            {
  3606              "type": "string",
  3607              "description": "Reference between project and repository that allow you automatically to be added as item inside SourceRepos project entity.",
  3608              "name": "project",
  3609              "in": "query"
  3610            },
  3611            {
  3612              "type": "string",
  3613              "description": "Google Cloud Platform service account key.",
  3614              "name": "gcpServiceAccountKey",
  3615              "in": "query"
  3616            },
  3617            {
  3618              "type": "boolean",
  3619              "description": "Whether to force HTTP basic auth.",
  3620              "name": "forceHttpBasicAuth",
  3621              "in": "query"
  3622            }
  3623          ],
  3624          "responses": {
  3625            "200": {
  3626              "description": "A successful response.",
  3627              "schema": {
  3628                "$ref": "#/definitions/repositoryRepoResponse"
  3629              }
  3630            },
  3631            "default": {
  3632              "description": "An unexpected error response.",
  3633              "schema": {
  3634                "$ref": "#/definitions/runtimeError"
  3635              }
  3636            }
  3637          }
  3638        }
  3639      },
  3640      "/api/v1/repositories/{source.repoURL}/appdetails": {
  3641        "post": {
  3642          "tags": [
  3643            "RepositoryService"
  3644          ],
  3645          "summary": "GetAppDetails returns application details by given path",
  3646          "operationId": "RepositoryService_GetAppDetails",
  3647          "parameters": [
  3648            {
  3649              "type": "string",
  3650              "description": "RepoURL is the URL to the repository (Git or Helm) that contains the application manifests",
  3651              "name": "source.repoURL",
  3652              "in": "path",
  3653              "required": true
  3654            },
  3655            {
  3656              "name": "body",
  3657              "in": "body",
  3658              "required": true,
  3659              "schema": {
  3660                "$ref": "#/definitions/repositoryRepoAppDetailsQuery"
  3661              }
  3662            }
  3663          ],
  3664          "responses": {
  3665            "200": {
  3666              "description": "A successful response.",
  3667              "schema": {
  3668                "$ref": "#/definitions/repositoryRepoAppDetailsResponse"
  3669              }
  3670            },
  3671            "default": {
  3672              "description": "An unexpected error response.",
  3673              "schema": {
  3674                "$ref": "#/definitions/runtimeError"
  3675              }
  3676            }
  3677          }
  3678        }
  3679      },
  3680      "/api/v1/session": {
  3681        "post": {
  3682          "tags": [
  3683            "SessionService"
  3684          ],
  3685          "summary": "Create a new JWT for authentication and set a cookie if using HTTP",
  3686          "operationId": "SessionService_Create",
  3687          "parameters": [
  3688            {
  3689              "name": "body",
  3690              "in": "body",
  3691              "required": true,
  3692              "schema": {
  3693                "$ref": "#/definitions/sessionSessionCreateRequest"
  3694              }
  3695            }
  3696          ],
  3697          "responses": {
  3698            "200": {
  3699              "description": "A successful response.",
  3700              "schema": {
  3701                "$ref": "#/definitions/sessionSessionResponse"
  3702              }
  3703            },
  3704            "default": {
  3705              "description": "An unexpected error response.",
  3706              "schema": {
  3707                "$ref": "#/definitions/runtimeError"
  3708              }
  3709            }
  3710          }
  3711        },
  3712        "delete": {
  3713          "tags": [
  3714            "SessionService"
  3715          ],
  3716          "summary": "Delete an existing JWT cookie if using HTTP",
  3717          "operationId": "SessionService_Delete",
  3718          "responses": {
  3719            "200": {
  3720              "description": "A successful response.",
  3721              "schema": {
  3722                "$ref": "#/definitions/sessionSessionResponse"
  3723              }
  3724            },
  3725            "default": {
  3726              "description": "An unexpected error response.",
  3727              "schema": {
  3728                "$ref": "#/definitions/runtimeError"
  3729              }
  3730            }
  3731          }
  3732        }
  3733      },
  3734      "/api/v1/session/userinfo": {
  3735        "get": {
  3736          "tags": [
  3737            "SessionService"
  3738          ],
  3739          "summary": "Get the current user's info",
  3740          "operationId": "SessionService_GetUserInfo",
  3741          "responses": {
  3742            "200": {
  3743              "description": "A successful response.",
  3744              "schema": {
  3745                "$ref": "#/definitions/sessionGetUserInfoResponse"
  3746              }
  3747            },
  3748            "default": {
  3749              "description": "An unexpected error response.",
  3750              "schema": {
  3751                "$ref": "#/definitions/runtimeError"
  3752              }
  3753            }
  3754          }
  3755        }
  3756      },
  3757      "/api/v1/settings": {
  3758        "get": {
  3759          "tags": [
  3760            "SettingsService"
  3761          ],
  3762          "summary": "Get returns Argo CD settings",
  3763          "operationId": "SettingsService_Get",
  3764          "responses": {
  3765            "200": {
  3766              "description": "A successful response.",
  3767              "schema": {
  3768                "$ref": "#/definitions/clusterSettings"
  3769              }
  3770            },
  3771            "default": {
  3772              "description": "An unexpected error response.",
  3773              "schema": {
  3774                "$ref": "#/definitions/runtimeError"
  3775              }
  3776            }
  3777          }
  3778        }
  3779      },
  3780      "/api/v1/settings/plugins": {
  3781        "get": {
  3782          "tags": [
  3783            "SettingsService"
  3784          ],
  3785          "summary": "Get returns Argo CD plugins",
  3786          "operationId": "SettingsService_GetPlugins",
  3787          "responses": {
  3788            "200": {
  3789              "description": "A successful response.",
  3790              "schema": {
  3791                "$ref": "#/definitions/clusterSettingsPluginsResponse"
  3792              }
  3793            },
  3794            "default": {
  3795              "description": "An unexpected error response.",
  3796              "schema": {
  3797                "$ref": "#/definitions/runtimeError"
  3798              }
  3799            }
  3800          }
  3801        }
  3802      },
  3803      "/api/v1/stream/applications": {
  3804        "get": {
  3805          "tags": [
  3806            "ApplicationService"
  3807          ],
  3808          "summary": "Watch returns stream of application change events",
  3809          "operationId": "ApplicationService_Watch",
  3810          "parameters": [
  3811            {
  3812              "type": "string",
  3813              "description": "the application's name.",
  3814              "name": "name",
  3815              "in": "query"
  3816            },
  3817            {
  3818              "type": "string",
  3819              "description": "forces application reconciliation if set to 'hard'.",
  3820              "name": "refresh",
  3821              "in": "query"
  3822            },
  3823            {
  3824              "type": "array",
  3825              "items": {
  3826                "type": "string"
  3827              },
  3828              "collectionFormat": "multi",
  3829              "description": "the project names to restrict returned list applications.",
  3830              "name": "projects",
  3831              "in": "query"
  3832            },
  3833            {
  3834              "type": "string",
  3835              "description": "when specified with a watch call, shows changes that occur after that particular version of a resource.",
  3836              "name": "resourceVersion",
  3837              "in": "query"
  3838            },
  3839            {
  3840              "type": "string",
  3841              "description": "the selector to restrict returned list to applications only with matched labels.",
  3842              "name": "selector",
  3843              "in": "query"
  3844            },
  3845            {
  3846              "type": "string",
  3847              "description": "the repoURL to restrict returned list applications.",
  3848              "name": "repo",
  3849              "in": "query"
  3850            },
  3851            {
  3852              "type": "string",
  3853              "description": "the application's namespace.",
  3854              "name": "appNamespace",
  3855              "in": "query"
  3856            },
  3857            {
  3858              "type": "array",
  3859              "items": {
  3860                "type": "string"
  3861              },
  3862              "collectionFormat": "multi",
  3863              "description": "the project names to restrict returned list applications (legacy name for backwards-compatibility).",
  3864              "name": "project",
  3865              "in": "query"
  3866            }
  3867          ],
  3868          "responses": {
  3869            "200": {
  3870              "description": "A successful response.(streaming responses)",
  3871              "schema": {
  3872                "type": "object",
  3873                "title": "Stream result of v1alpha1ApplicationWatchEvent",
  3874                "properties": {
  3875                  "error": {
  3876                    "$ref": "#/definitions/runtimeStreamError"
  3877                  },
  3878                  "result": {
  3879                    "$ref": "#/definitions/v1alpha1ApplicationWatchEvent"
  3880                  }
  3881                }
  3882              }
  3883            },
  3884            "default": {
  3885              "description": "An unexpected error response.",
  3886              "schema": {
  3887                "$ref": "#/definitions/runtimeError"
  3888              }
  3889            }
  3890          }
  3891        }
  3892      },
  3893      "/api/v1/stream/applications/{applicationName}/resource-tree": {
  3894        "get": {
  3895          "tags": [
  3896            "ApplicationService"
  3897          ],
  3898          "summary": "Watch returns stream of application resource tree",
  3899          "operationId": "ApplicationService_WatchResourceTree",
  3900          "parameters": [
  3901            {
  3902              "type": "string",
  3903              "name": "applicationName",
  3904              "in": "path",
  3905              "required": true
  3906            },
  3907            {
  3908              "type": "string",
  3909              "name": "namespace",
  3910              "in": "query"
  3911            },
  3912            {
  3913              "type": "string",
  3914              "name": "name",
  3915              "in": "query"
  3916            },
  3917            {
  3918              "type": "string",
  3919              "name": "version",
  3920              "in": "query"
  3921            },
  3922            {
  3923              "type": "string",
  3924              "name": "group",
  3925              "in": "query"
  3926            },
  3927            {
  3928              "type": "string",
  3929              "name": "kind",
  3930              "in": "query"
  3931            },
  3932            {
  3933              "type": "string",
  3934              "name": "appNamespace",
  3935              "in": "query"
  3936            },
  3937            {
  3938              "type": "string",
  3939              "name": "project",
  3940              "in": "query"
  3941            }
  3942          ],
  3943          "responses": {
  3944            "200": {
  3945              "description": "A successful response.(streaming responses)",
  3946              "schema": {
  3947                "type": "object",
  3948                "title": "Stream result of v1alpha1ApplicationTree",
  3949                "properties": {
  3950                  "error": {
  3951                    "$ref": "#/definitions/runtimeStreamError"
  3952                  },
  3953                  "result": {
  3954                    "$ref": "#/definitions/v1alpha1ApplicationTree"
  3955                  }
  3956                }
  3957              }
  3958            },
  3959            "default": {
  3960              "description": "An unexpected error response.",
  3961              "schema": {
  3962                "$ref": "#/definitions/runtimeError"
  3963              }
  3964            }
  3965          }
  3966        }
  3967      },
  3968      "/api/version": {
  3969        "get": {
  3970          "tags": [
  3971            "VersionService"
  3972          ],
  3973          "summary": "Version returns version information of the API server",
  3974          "operationId": "VersionService_Version",
  3975          "responses": {
  3976            "200": {
  3977              "description": "A successful response.",
  3978              "schema": {
  3979                "$ref": "#/definitions/versionVersionMessage"
  3980              }
  3981            },
  3982            "default": {
  3983              "description": "An unexpected error response.",
  3984              "schema": {
  3985                "$ref": "#/definitions/runtimeError"
  3986              }
  3987            }
  3988          }
  3989        }
  3990      }
  3991    },
  3992    "definitions": {
  3993      "accountAccount": {
  3994        "type": "object",
  3995        "properties": {
  3996          "capabilities": {
  3997            "type": "array",
  3998            "items": {
  3999              "type": "string"
  4000            }
  4001          },
  4002          "enabled": {
  4003            "type": "boolean"
  4004          },
  4005          "name": {
  4006            "type": "string"
  4007          },
  4008          "tokens": {
  4009            "type": "array",
  4010            "items": {
  4011              "$ref": "#/definitions/accountToken"
  4012            }
  4013          }
  4014        }
  4015      },
  4016      "accountAccountsList": {
  4017        "type": "object",
  4018        "properties": {
  4019          "items": {
  4020            "type": "array",
  4021            "items": {
  4022              "$ref": "#/definitions/accountAccount"
  4023            }
  4024          }
  4025        }
  4026      },
  4027      "accountCanIResponse": {
  4028        "type": "object",
  4029        "properties": {
  4030          "value": {
  4031            "type": "string"
  4032          }
  4033        }
  4034      },
  4035      "accountCreateTokenRequest": {
  4036        "type": "object",
  4037        "properties": {
  4038          "expiresIn": {
  4039            "type": "integer",
  4040            "format": "int64",
  4041            "title": "expiresIn represents a duration in seconds"
  4042          },
  4043          "id": {
  4044            "type": "string"
  4045          },
  4046          "name": {
  4047            "type": "string"
  4048          }
  4049        }
  4050      },
  4051      "accountCreateTokenResponse": {
  4052        "type": "object",
  4053        "properties": {
  4054          "token": {
  4055            "type": "string"
  4056          }
  4057        }
  4058      },
  4059      "accountEmptyResponse": {
  4060        "type": "object"
  4061      },
  4062      "accountToken": {
  4063        "type": "object",
  4064        "properties": {
  4065          "expiresAt": {
  4066            "type": "integer",
  4067            "format": "int64"
  4068          },
  4069          "id": {
  4070            "type": "string"
  4071          },
  4072          "issuedAt": {
  4073            "type": "integer",
  4074            "format": "int64"
  4075          }
  4076        }
  4077      },
  4078      "accountUpdatePasswordRequest": {
  4079        "type": "object",
  4080        "properties": {
  4081          "currentPassword": {
  4082            "type": "string"
  4083          },
  4084          "name": {
  4085            "type": "string"
  4086          },
  4087          "newPassword": {
  4088            "type": "string"
  4089          }
  4090        }
  4091      },
  4092      "accountUpdatePasswordResponse": {
  4093        "type": "object"
  4094      },
  4095      "applicationApplicationManifestQueryWithFiles": {
  4096        "type": "object",
  4097        "properties": {
  4098          "appNamespace": {
  4099            "type": "string"
  4100          },
  4101          "checksum": {
  4102            "type": "string"
  4103          },
  4104          "name": {
  4105            "type": "string"
  4106          },
  4107          "project": {
  4108            "type": "string"
  4109          }
  4110        }
  4111      },
  4112      "applicationApplicationManifestQueryWithFilesWrapper": {
  4113        "type": "object",
  4114        "properties": {
  4115          "chunk": {
  4116            "$ref": "#/definitions/applicationFileChunk"
  4117          },
  4118          "query": {
  4119            "$ref": "#/definitions/applicationApplicationManifestQueryWithFiles"
  4120          }
  4121        }
  4122      },
  4123      "applicationApplicationPatchRequest": {
  4124        "type": "object",
  4125        "title": "ApplicationPatchRequest is a request to patch an application",
  4126        "properties": {
  4127          "appNamespace": {
  4128            "type": "string"
  4129          },
  4130          "name": {
  4131            "type": "string"
  4132          },
  4133          "patch": {
  4134            "type": "string"
  4135          },
  4136          "patchType": {
  4137            "type": "string"
  4138          },
  4139          "project": {
  4140            "type": "string"
  4141          }
  4142        }
  4143      },
  4144      "applicationApplicationResourceResponse": {
  4145        "type": "object",
  4146        "properties": {
  4147          "manifest": {
  4148            "type": "string"
  4149          }
  4150        }
  4151      },
  4152      "applicationApplicationResponse": {
  4153        "type": "object"
  4154      },
  4155      "applicationApplicationRollbackRequest": {
  4156        "type": "object",
  4157        "properties": {
  4158          "appNamespace": {
  4159            "type": "string"
  4160          },
  4161          "dryRun": {
  4162            "type": "boolean"
  4163          },
  4164          "id": {
  4165            "type": "integer",
  4166            "format": "int64"
  4167          },
  4168          "name": {
  4169            "type": "string"
  4170          },
  4171          "project": {
  4172            "type": "string"
  4173          },
  4174          "prune": {
  4175            "type": "boolean"
  4176          }
  4177        }
  4178      },
  4179      "applicationApplicationSyncRequest": {
  4180        "type": "object",
  4181        "title": "ApplicationSyncRequest is a request to apply the config state to live state",
  4182        "properties": {
  4183          "appNamespace": {
  4184            "type": "string"
  4185          },
  4186          "dryRun": {
  4187            "type": "boolean"
  4188          },
  4189          "infos": {
  4190            "type": "array",
  4191            "items": {
  4192              "$ref": "#/definitions/v1alpha1Info"
  4193            }
  4194          },
  4195          "manifests": {
  4196            "type": "array",
  4197            "items": {
  4198              "type": "string"
  4199            }
  4200          },
  4201          "name": {
  4202            "type": "string"
  4203          },
  4204          "project": {
  4205            "type": "string"
  4206          },
  4207          "prune": {
  4208            "type": "boolean"
  4209          },
  4210          "resources": {
  4211            "type": "array",
  4212            "items": {
  4213              "$ref": "#/definitions/v1alpha1SyncOperationResource"
  4214            }
  4215          },
  4216          "retryStrategy": {
  4217            "$ref": "#/definitions/v1alpha1RetryStrategy"
  4218          },
  4219          "revision": {
  4220            "type": "string"
  4221          },
  4222          "strategy": {
  4223            "$ref": "#/definitions/v1alpha1SyncStrategy"
  4224          },
  4225          "syncOptions": {
  4226            "$ref": "#/definitions/applicationSyncOptions"
  4227          }
  4228        }
  4229      },
  4230      "applicationApplicationSyncWindow": {
  4231        "type": "object",
  4232        "properties": {
  4233          "duration": {
  4234            "type": "string"
  4235          },
  4236          "kind": {
  4237            "type": "string"
  4238          },
  4239          "manualSync": {
  4240            "type": "boolean"
  4241          },
  4242          "schedule": {
  4243            "type": "string"
  4244          }
  4245        }
  4246      },
  4247      "applicationApplicationSyncWindowsResponse": {
  4248        "type": "object",
  4249        "properties": {
  4250          "activeWindows": {
  4251            "type": "array",
  4252            "items": {
  4253              "$ref": "#/definitions/applicationApplicationSyncWindow"
  4254            }
  4255          },
  4256          "assignedWindows": {
  4257            "type": "array",
  4258            "items": {
  4259              "$ref": "#/definitions/applicationApplicationSyncWindow"
  4260            }
  4261          },
  4262          "canSync": {
  4263            "type": "boolean"
  4264          }
  4265        }
  4266      },
  4267      "applicationFileChunk": {
  4268        "type": "object",
  4269        "properties": {
  4270          "chunk": {
  4271            "type": "string",
  4272            "format": "byte"
  4273          }
  4274        }
  4275      },
  4276      "applicationLinkInfo": {
  4277        "type": "object",
  4278        "properties": {
  4279          "description": {
  4280            "type": "string"
  4281          },
  4282          "iconClass": {
  4283            "type": "string"
  4284          },
  4285          "title": {
  4286            "type": "string"
  4287          },
  4288          "url": {
  4289            "type": "string"
  4290          }
  4291        }
  4292      },
  4293      "applicationLinksResponse": {
  4294        "type": "object",
  4295        "properties": {
  4296          "items": {
  4297            "type": "array",
  4298            "items": {
  4299              "$ref": "#/definitions/applicationLinkInfo"
  4300            }
  4301          }
  4302        }
  4303      },
  4304      "applicationLogEntry": {
  4305        "type": "object",
  4306        "properties": {
  4307          "content": {
  4308            "type": "string"
  4309          },
  4310          "last": {
  4311            "type": "boolean"
  4312          },
  4313          "podName": {
  4314            "type": "string"
  4315          },
  4316          "timeStamp": {
  4317            "$ref": "#/definitions/v1Time"
  4318          },
  4319          "timeStampStr": {
  4320            "type": "string"
  4321          }
  4322        }
  4323      },
  4324      "applicationManagedResourcesResponse": {
  4325        "type": "object",
  4326        "properties": {
  4327          "items": {
  4328            "type": "array",
  4329            "items": {
  4330              "$ref": "#/definitions/v1alpha1ResourceDiff"
  4331            }
  4332          }
  4333        }
  4334      },
  4335      "applicationOperationTerminateResponse": {
  4336        "type": "object"
  4337      },
  4338      "applicationResourceActionsListResponse": {
  4339        "type": "object",
  4340        "properties": {
  4341          "actions": {
  4342            "type": "array",
  4343            "items": {
  4344              "$ref": "#/definitions/v1alpha1ResourceAction"
  4345            }
  4346          }
  4347        }
  4348      },
  4349      "applicationSyncOptions": {
  4350        "type": "object",
  4351        "properties": {
  4352          "items": {
  4353            "type": "array",
  4354            "items": {
  4355              "type": "string"
  4356            }
  4357          }
  4358        }
  4359      },
  4360      "applicationsetApplicationSetResponse": {
  4361        "type": "object",
  4362        "properties": {
  4363          "applicationset": {
  4364            "$ref": "#/definitions/v1alpha1ApplicationSet"
  4365          },
  4366          "project": {
  4367            "type": "string"
  4368          }
  4369        }
  4370      },
  4371      "applicationv1alpha1EnvEntry": {
  4372        "type": "object",
  4373        "title": "EnvEntry represents an entry in the application's environment",
  4374        "properties": {
  4375          "name": {
  4376            "type": "string",
  4377            "title": "Name is the name of the variable, usually expressed in uppercase"
  4378          },
  4379          "value": {
  4380            "type": "string",
  4381            "title": "Value is the value of the variable"
  4382          }
  4383        }
  4384      },
  4385      "clusterClusterID": {
  4386        "type": "object",
  4387        "title": "ClusterID holds a cluster server URL or cluster name",
  4388        "properties": {
  4389          "type": {
  4390            "type": "string",
  4391            "title": "type is the type of the specified cluster identifier ( \"server\" - default, \"name\" )"
  4392          },
  4393          "value": {
  4394            "type": "string",
  4395            "title": "value holds the cluster server URL or cluster name"
  4396          }
  4397        }
  4398      },
  4399      "clusterClusterResponse": {
  4400        "type": "object"
  4401      },
  4402      "clusterConnector": {
  4403        "type": "object",
  4404        "properties": {
  4405          "name": {
  4406            "type": "string"
  4407          },
  4408          "type": {
  4409            "type": "string"
  4410          }
  4411        }
  4412      },
  4413      "clusterDexConfig": {
  4414        "type": "object",
  4415        "properties": {
  4416          "connectors": {
  4417            "type": "array",
  4418            "items": {
  4419              "$ref": "#/definitions/clusterConnector"
  4420            }
  4421          }
  4422        }
  4423      },
  4424      "clusterGoogleAnalyticsConfig": {
  4425        "type": "object",
  4426        "properties": {
  4427          "anonymizeUsers": {
  4428            "type": "boolean"
  4429          },
  4430          "trackingID": {
  4431            "type": "string"
  4432          }
  4433        }
  4434      },
  4435      "clusterHelp": {
  4436        "type": "object",
  4437        "title": "Help settings",
  4438        "properties": {
  4439          "binaryUrls": {
  4440            "type": "object",
  4441            "title": "the URLs for downloading argocd binaries",
  4442            "additionalProperties": {
  4443              "type": "string"
  4444            }
  4445          },
  4446          "chatText": {
  4447            "type": "string",
  4448            "title": "the text for getting chat help, defaults to \"Chat now!\""
  4449          },
  4450          "chatUrl": {
  4451            "type": "string",
  4452            "title": "the URL for getting chat help, this will typically be your Slack channel for support"
  4453          }
  4454        }
  4455      },
  4456      "clusterOIDCConfig": {
  4457        "type": "object",
  4458        "properties": {
  4459          "cliClientID": {
  4460            "type": "string"
  4461          },
  4462          "clientID": {
  4463            "type": "string"
  4464          },
  4465          "enablePKCEAuthentication": {
  4466            "type": "boolean"
  4467          },
  4468          "idTokenClaims": {
  4469            "type": "object",
  4470            "additionalProperties": {
  4471              "$ref": "#/definitions/oidcClaim"
  4472            }
  4473          },
  4474          "issuer": {
  4475            "type": "string"
  4476          },
  4477          "name": {
  4478            "type": "string"
  4479          },
  4480          "scopes": {
  4481            "type": "array",
  4482            "items": {
  4483              "type": "string"
  4484            }
  4485          }
  4486        }
  4487      },
  4488      "clusterPlugin": {
  4489        "type": "object",
  4490        "title": "Plugin settings",
  4491        "properties": {
  4492          "name": {
  4493            "type": "string",
  4494            "title": "the name of the plugin, e.g. \"kasane\""
  4495          }
  4496        }
  4497      },
  4498      "clusterSettings": {
  4499        "type": "object",
  4500        "properties": {
  4501          "appLabelKey": {
  4502            "type": "string"
  4503          },
  4504          "appsInAnyNamespaceEnabled": {
  4505            "type": "boolean"
  4506          },
  4507          "configManagementPlugins": {
  4508            "description": "Deprecated: use sidecar plugins instead.",
  4509            "type": "array",
  4510            "items": {
  4511              "$ref": "#/definitions/v1alpha1ConfigManagementPlugin"
  4512            }
  4513          },
  4514          "controllerNamespace": {
  4515            "type": "string"
  4516          },
  4517          "dexConfig": {
  4518            "$ref": "#/definitions/clusterDexConfig"
  4519          },
  4520          "execEnabled": {
  4521            "type": "boolean"
  4522          },
  4523          "googleAnalytics": {
  4524            "$ref": "#/definitions/clusterGoogleAnalyticsConfig"
  4525          },
  4526          "help": {
  4527            "$ref": "#/definitions/clusterHelp"
  4528          },
  4529          "kustomizeOptions": {
  4530            "$ref": "#/definitions/v1alpha1KustomizeOptions"
  4531          },
  4532          "kustomizeVersions": {
  4533            "type": "array",
  4534            "items": {
  4535              "type": "string"
  4536            }
  4537          },
  4538          "oidcConfig": {
  4539            "$ref": "#/definitions/clusterOIDCConfig"
  4540          },
  4541          "passwordPattern": {
  4542            "type": "string"
  4543          },
  4544          "plugins": {
  4545            "type": "array",
  4546            "items": {
  4547              "$ref": "#/definitions/clusterPlugin"
  4548            }
  4549          },
  4550          "resourceOverrides": {
  4551            "type": "object",
  4552            "additionalProperties": {
  4553              "$ref": "#/definitions/v1alpha1ResourceOverride"
  4554            }
  4555          },
  4556          "statusBadgeEnabled": {
  4557            "type": "boolean"
  4558          },
  4559          "statusBadgeRootUrl": {
  4560            "type": "string"
  4561          },
  4562          "trackingMethod": {
  4563            "type": "string"
  4564          },
  4565          "uiBannerContent": {
  4566            "type": "string"
  4567          },
  4568          "uiBannerPermanent": {
  4569            "type": "boolean"
  4570          },
  4571          "uiBannerPosition": {
  4572            "type": "string"
  4573          },
  4574          "uiBannerURL": {
  4575            "type": "string"
  4576          },
  4577          "uiCssURL": {
  4578            "type": "string"
  4579          },
  4580          "url": {
  4581            "type": "string"
  4582          },
  4583          "userLoginsDisabled": {
  4584            "type": "boolean"
  4585          }
  4586        }
  4587      },
  4588      "clusterSettingsPluginsResponse": {
  4589        "type": "object",
  4590        "properties": {
  4591          "plugins": {
  4592            "type": "array",
  4593            "items": {
  4594              "$ref": "#/definitions/clusterPlugin"
  4595            }
  4596          }
  4597        }
  4598      },
  4599      "gpgkeyGnuPGPublicKeyCreateResponse": {
  4600        "type": "object",
  4601        "title": "Response to a public key creation request",
  4602        "properties": {
  4603          "created": {
  4604            "$ref": "#/definitions/v1alpha1GnuPGPublicKeyList"
  4605          },
  4606          "skipped": {
  4607            "type": "array",
  4608            "title": "List of key IDs that haven been skipped because they already exist on the server",
  4609            "items": {
  4610              "type": "string"
  4611            }
  4612          }
  4613        }
  4614      },
  4615      "gpgkeyGnuPGPublicKeyResponse": {
  4616        "type": "object",
  4617        "title": "Generic (empty) response for GPG public key CRUD requests"
  4618      },
  4619      "intstrIntOrString": {
  4620        "description": "+protobuf=true\n+protobuf.options.(gogoproto.goproto_stringer)=false\n+k8s:openapi-gen=true",
  4621        "type": "object",
  4622        "title": "IntOrString is a type that can hold an int32 or a string.  When used in\nJSON or YAML marshalling and unmarshalling, it produces or consumes the\ninner type.  This allows you to have, for example, a JSON field that can\naccept a name or number.\nTODO: Rename to Int32OrString",
  4623        "properties": {
  4624          "intVal": {
  4625            "type": "integer",
  4626            "format": "int32"
  4627          },
  4628          "strVal": {
  4629            "type": "string"
  4630          },
  4631          "type": {
  4632            "type": "integer",
  4633            "format": "int64"
  4634          }
  4635        }
  4636      },
  4637      "notificationService": {
  4638        "type": "object",
  4639        "properties": {
  4640          "name": {
  4641            "type": "string"
  4642          }
  4643        }
  4644      },
  4645      "notificationServiceList": {
  4646        "type": "object",
  4647        "properties": {
  4648          "items": {
  4649            "type": "array",
  4650            "items": {
  4651              "$ref": "#/definitions/notificationService"
  4652            }
  4653          }
  4654        }
  4655      },
  4656      "notificationTemplate": {
  4657        "type": "object",
  4658        "properties": {
  4659          "name": {
  4660            "type": "string"
  4661          }
  4662        }
  4663      },
  4664      "notificationTemplateList": {
  4665        "type": "object",
  4666        "properties": {
  4667          "items": {
  4668            "type": "array",
  4669            "items": {
  4670              "$ref": "#/definitions/notificationTemplate"
  4671            }
  4672          }
  4673        }
  4674      },
  4675      "notificationTrigger": {
  4676        "type": "object",
  4677        "properties": {
  4678          "name": {
  4679            "type": "string"
  4680          }
  4681        }
  4682      },
  4683      "notificationTriggerList": {
  4684        "type": "object",
  4685        "properties": {
  4686          "items": {
  4687            "type": "array",
  4688            "items": {
  4689              "$ref": "#/definitions/notificationTrigger"
  4690            }
  4691          }
  4692        }
  4693      },
  4694      "oidcClaim": {
  4695        "type": "object",
  4696        "properties": {
  4697          "essential": {
  4698            "type": "boolean"
  4699          },
  4700          "value": {
  4701            "type": "string"
  4702          },
  4703          "values": {
  4704            "type": "array",
  4705            "items": {
  4706              "type": "string"
  4707            }
  4708          }
  4709        }
  4710      },
  4711      "projectDetailedProjectsResponse": {
  4712        "type": "object",
  4713        "properties": {
  4714          "clusters": {
  4715            "type": "array",
  4716            "items": {
  4717              "$ref": "#/definitions/v1alpha1Cluster"
  4718            }
  4719          },
  4720          "globalProjects": {
  4721            "type": "array",
  4722            "items": {
  4723              "$ref": "#/definitions/v1alpha1AppProject"
  4724            }
  4725          },
  4726          "project": {
  4727            "$ref": "#/definitions/v1alpha1AppProject"
  4728          },
  4729          "repositories": {
  4730            "type": "array",
  4731            "items": {
  4732              "$ref": "#/definitions/v1alpha1Repository"
  4733            }
  4734          }
  4735        }
  4736      },
  4737      "projectEmptyResponse": {
  4738        "type": "object"
  4739      },
  4740      "projectGlobalProjectsResponse": {
  4741        "type": "object",
  4742        "properties": {
  4743          "items": {
  4744            "type": "array",
  4745            "items": {
  4746              "$ref": "#/definitions/v1alpha1AppProject"
  4747            }
  4748          }
  4749        }
  4750      },
  4751      "projectProjectCreateRequest": {
  4752        "description": "ProjectCreateRequest defines project creation parameters.",
  4753        "type": "object",
  4754        "properties": {
  4755          "project": {
  4756            "$ref": "#/definitions/v1alpha1AppProject"
  4757          },
  4758          "upsert": {
  4759            "type": "boolean"
  4760          }
  4761        }
  4762      },
  4763      "projectProjectTokenCreateRequest": {
  4764        "description": "ProjectTokenCreateRequest defines project token creation parameters.",
  4765        "type": "object",
  4766        "properties": {
  4767          "description": {
  4768            "type": "string"
  4769          },
  4770          "expiresIn": {
  4771            "type": "integer",
  4772            "format": "int64",
  4773            "title": "expiresIn represents a duration in seconds"
  4774          },
  4775          "id": {
  4776            "type": "string"
  4777          },
  4778          "project": {
  4779            "type": "string"
  4780          },
  4781          "role": {
  4782            "type": "string"
  4783          }
  4784        }
  4785      },
  4786      "projectProjectTokenResponse": {
  4787        "description": "ProjectTokenResponse wraps the created token or returns an empty string if deleted.",
  4788        "type": "object",
  4789        "properties": {
  4790          "token": {
  4791            "type": "string"
  4792          }
  4793        }
  4794      },
  4795      "projectProjectUpdateRequest": {
  4796        "type": "object",
  4797        "properties": {
  4798          "project": {
  4799            "$ref": "#/definitions/v1alpha1AppProject"
  4800          }
  4801        }
  4802      },
  4803      "projectSyncWindowsResponse": {
  4804        "type": "object",
  4805        "properties": {
  4806          "windows": {
  4807            "type": "array",
  4808            "items": {
  4809              "$ref": "#/definitions/v1alpha1SyncWindow"
  4810            }
  4811          }
  4812        }
  4813      },
  4814      "protobufAny": {
  4815        "type": "object",
  4816        "properties": {
  4817          "type_url": {
  4818            "type": "string"
  4819          },
  4820          "value": {
  4821            "type": "string",
  4822            "format": "byte"
  4823          }
  4824        }
  4825      },
  4826      "repocredsRepoCredsResponse": {
  4827        "type": "object",
  4828        "title": "RepoCredsResponse is a response to most repository credentials requests"
  4829      },
  4830      "repositoryAppInfo": {
  4831        "type": "object",
  4832        "title": "AppInfo contains application type and app file path",
  4833        "properties": {
  4834          "path": {
  4835            "type": "string"
  4836          },
  4837          "type": {
  4838            "type": "string"
  4839          }
  4840        }
  4841      },
  4842      "repositoryDirectoryAppSpec": {
  4843        "type": "object",
  4844        "title": "DirectoryAppSpec contains directory"
  4845      },
  4846      "repositoryHelmAppSpec": {
  4847        "type": "object",
  4848        "title": "HelmAppSpec contains helm app name  in source repo",
  4849        "properties": {
  4850          "fileParameters": {
  4851            "type": "array",
  4852            "title": "helm file parameters",
  4853            "items": {
  4854              "$ref": "#/definitions/v1alpha1HelmFileParameter"
  4855            }
  4856          },
  4857          "name": {
  4858            "type": "string"
  4859          },
  4860          "parameters": {
  4861            "type": "array",
  4862            "title": "the output of `helm inspect values`",
  4863            "items": {
  4864              "$ref": "#/definitions/v1alpha1HelmParameter"
  4865            }
  4866          },
  4867          "valueFiles": {
  4868            "type": "array",
  4869            "items": {
  4870              "type": "string"
  4871            }
  4872          },
  4873          "values": {
  4874            "type": "string",
  4875            "title": "the contents of values.yaml"
  4876          }
  4877        }
  4878      },
  4879      "repositoryHelmChart": {
  4880        "type": "object",
  4881        "properties": {
  4882          "name": {
  4883            "type": "string"
  4884          },
  4885          "versions": {
  4886            "type": "array",
  4887            "items": {
  4888              "type": "string"
  4889            }
  4890          }
  4891        }
  4892      },
  4893      "repositoryHelmChartsResponse": {
  4894        "type": "object",
  4895        "properties": {
  4896          "items": {
  4897            "type": "array",
  4898            "items": {
  4899              "$ref": "#/definitions/repositoryHelmChart"
  4900            }
  4901          }
  4902        }
  4903      },
  4904      "repositoryKustomizeAppSpec": {
  4905        "type": "object",
  4906        "title": "KustomizeAppSpec contains kustomize images",
  4907        "properties": {
  4908          "images": {
  4909            "description": "images is a list of available images.",
  4910            "type": "array",
  4911            "items": {
  4912              "type": "string"
  4913            }
  4914          }
  4915        }
  4916      },
  4917      "repositoryManifestResponse": {
  4918        "type": "object",
  4919        "properties": {
  4920          "manifests": {
  4921            "type": "array",
  4922            "items": {
  4923              "type": "string"
  4924            }
  4925          },
  4926          "namespace": {
  4927            "type": "string"
  4928          },
  4929          "revision": {
  4930            "type": "string",
  4931            "title": "resolved revision"
  4932          },
  4933          "server": {
  4934            "type": "string"
  4935          },
  4936          "sourceType": {
  4937            "type": "string"
  4938          },
  4939          "verifyResult": {
  4940            "type": "string",
  4941            "title": "Raw response of git verify-commit operation (always the empty string for Helm)"
  4942          }
  4943        }
  4944      },
  4945      "repositoryParameterAnnouncement": {
  4946        "type": "object",
  4947        "properties": {
  4948          "array": {
  4949            "description": "array is the default value of the parameter if the parameter is an array.",
  4950            "type": "array",
  4951            "items": {
  4952              "type": "string"
  4953            }
  4954          },
  4955          "collectionType": {
  4956            "description": "collectionType is the type of value this parameter holds - either a single value (a string) or a collection\n(array or map). If collectionType is set, only the field with that type will be used. If collectionType is not\nset, `string` is the default. If collectionType is set to an invalid value, a validation error is thrown.",
  4957            "type": "string"
  4958          },
  4959          "itemType": {
  4960            "description": "itemType determines the primitive data type represented by the parameter. Parameters are always encoded as\nstrings, but this field lets them be interpreted as other primitive types.",
  4961            "type": "string"
  4962          },
  4963          "map": {
  4964            "description": "map is the default value of the parameter if the parameter is a map.",
  4965            "type": "object",
  4966            "additionalProperties": {
  4967              "type": "string"
  4968            }
  4969          },
  4970          "name": {
  4971            "description": "name is the name identifying a parameter.",
  4972            "type": "string"
  4973          },
  4974          "required": {
  4975            "description": "required defines if this given parameter is mandatory.",
  4976            "type": "boolean"
  4977          },
  4978          "string": {
  4979            "description": "string is the default value of the parameter if the parameter is a string.",
  4980            "type": "string"
  4981          },
  4982          "title": {
  4983            "description": "title is a human-readable text of the parameter name.",
  4984            "type": "string"
  4985          },
  4986          "tooltip": {
  4987            "description": "tooltip is a human-readable description of the parameter.",
  4988            "type": "string"
  4989          }
  4990        }
  4991      },
  4992      "repositoryPluginAppSpec": {
  4993        "type": "object",
  4994        "title": "PluginAppSpec contains details about a plugin-type Application",
  4995        "properties": {
  4996          "parametersAnnouncement": {
  4997            "type": "array",
  4998            "items": {
  4999              "$ref": "#/definitions/repositoryParameterAnnouncement"
  5000            }
  5001          }
  5002        }
  5003      },
  5004      "repositoryRefs": {
  5005        "type": "object",
  5006        "title": "A subset of the repository's named refs",
  5007        "properties": {
  5008          "branches": {
  5009            "type": "array",
  5010            "items": {
  5011              "type": "string"
  5012            }
  5013          },
  5014          "tags": {
  5015            "type": "array",
  5016            "items": {
  5017              "type": "string"
  5018            }
  5019          }
  5020        }
  5021      },
  5022      "repositoryRepoAppDetailsQuery": {
  5023        "type": "object",
  5024        "title": "RepoAppDetailsQuery contains query information for app details request",
  5025        "properties": {
  5026          "appName": {
  5027            "type": "string"
  5028          },
  5029          "appProject": {
  5030            "type": "string"
  5031          },
  5032          "source": {
  5033            "$ref": "#/definitions/v1alpha1ApplicationSource"
  5034          }
  5035        }
  5036      },
  5037      "repositoryRepoAppDetailsResponse": {
  5038        "type": "object",
  5039        "title": "RepoAppDetailsResponse application details",
  5040        "properties": {
  5041          "directory": {
  5042            "$ref": "#/definitions/repositoryDirectoryAppSpec"
  5043          },
  5044          "helm": {
  5045            "$ref": "#/definitions/repositoryHelmAppSpec"
  5046          },
  5047          "kustomize": {
  5048            "$ref": "#/definitions/repositoryKustomizeAppSpec"
  5049          },
  5050          "plugin": {
  5051            "$ref": "#/definitions/repositoryPluginAppSpec"
  5052          },
  5053          "type": {
  5054            "type": "string"
  5055          }
  5056        }
  5057      },
  5058      "repositoryRepoAppsResponse": {
  5059        "type": "object",
  5060        "title": "RepoAppsResponse contains applications of specified repository",
  5061        "properties": {
  5062          "items": {
  5063            "type": "array",
  5064            "items": {
  5065              "$ref": "#/definitions/repositoryAppInfo"
  5066            }
  5067          }
  5068        }
  5069      },
  5070      "repositoryRepoResponse": {
  5071        "type": "object"
  5072      },
  5073      "runtimeError": {
  5074        "type": "object",
  5075        "properties": {
  5076          "code": {
  5077            "type": "integer",
  5078            "format": "int32"
  5079          },
  5080          "details": {
  5081            "type": "array",
  5082            "items": {
  5083              "$ref": "#/definitions/protobufAny"
  5084            }
  5085          },
  5086          "error": {
  5087            "type": "string"
  5088          },
  5089          "message": {
  5090            "type": "string"
  5091          }
  5092        }
  5093      },
  5094      "runtimeRawExtension": {
  5095        "description": "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned\nstruct, and Object in your internal struct. You also need to register your\nvarious plugin types.\n\n// Internal package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.Object `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// External package:\n\n\ttype MyAPIObject struct {\n\t\truntime.TypeMeta `json:\",inline\"`\n\t\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n\t}\n\n\ttype PluginA struct {\n\t\tAOption string `json:\"aOption\"`\n\t}\n\n// On the wire, the JSON will look something like this:\n\n\t{\n\t\t\"kind\":\"MyAPIObject\",\n\t\t\"apiVersion\":\"v1\",\n\t\t\"myPlugin\": {\n\t\t\t\"kind\":\"PluginA\",\n\t\t\t\"aOption\":\"foo\",\n\t\t},\n\t}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into\nyour external MyAPIObject. That causes the raw JSON to be stored, but not unpacked.\nThe next step is to copy (using pkg/conversion) into the internal struct. The runtime\npackage's DefaultScheme has conversion functions installed which will unpack the\nJSON stored in RawExtension, turning it into the correct object type, and storing it\nin the Object. (TODO: In the case where the object is of an unknown type, a\nruntime.Unknown object will be created and stored.)\n\n+k8s:deepcopy-gen=true\n+protobuf=true\n+k8s:openapi-gen=true",
  5096        "type": "object",
  5097        "properties": {
  5098          "raw": {
  5099            "description": "Raw is the underlying serialization of this object.\n\nTODO: Determine how to detect ContentType and ContentEncoding of 'Raw' data.",
  5100            "type": "string",
  5101            "format": "byte"
  5102          }
  5103        }
  5104      },
  5105      "runtimeStreamError": {
  5106        "type": "object",
  5107        "properties": {
  5108          "details": {
  5109            "type": "array",
  5110            "items": {
  5111              "$ref": "#/definitions/protobufAny"
  5112            }
  5113          },
  5114          "grpc_code": {
  5115            "type": "integer",
  5116            "format": "int32"
  5117          },
  5118          "http_code": {
  5119            "type": "integer",
  5120            "format": "int32"
  5121          },
  5122          "http_status": {
  5123            "type": "string"
  5124          },
  5125          "message": {
  5126            "type": "string"
  5127          }
  5128        }
  5129      },
  5130      "sessionGetUserInfoResponse": {
  5131        "type": "object",
  5132        "title": "The current user's userInfo info",
  5133        "properties": {
  5134          "groups": {
  5135            "type": "array",
  5136            "items": {
  5137              "type": "string"
  5138            }
  5139          },
  5140          "iss": {
  5141            "type": "string"
  5142          },
  5143          "loggedIn": {
  5144            "type": "boolean"
  5145          },
  5146          "username": {
  5147            "type": "string"
  5148          }
  5149        }
  5150      },
  5151      "sessionSessionCreateRequest": {
  5152        "description": "SessionCreateRequest is for logging in.",
  5153        "type": "object",
  5154        "properties": {
  5155          "password": {
  5156            "type": "string"
  5157          },
  5158          "token": {
  5159            "type": "string"
  5160          },
  5161          "username": {
  5162            "type": "string"
  5163          }
  5164        }
  5165      },
  5166      "sessionSessionResponse": {
  5167        "description": "SessionResponse wraps the created token or returns an empty string if deleted.",
  5168        "type": "object",
  5169        "properties": {
  5170          "token": {
  5171            "type": "string"
  5172          }
  5173        }
  5174      },
  5175      "v1Event": {
  5176        "description": "Event is a report of an event somewhere in the cluster.  Events\nhave a limited retention time and triggers and messages may evolve\nwith time.  Event consumers should not rely on the timing of an event\nwith a given Reason reflecting a consistent underlying trigger, or the\ncontinued existence of events with that Reason.  Events should be\ntreated as informative, best-effort, supplemental data.",
  5177        "type": "object",
  5178        "properties": {
  5179          "action": {
  5180            "type": "string",
  5181            "title": "What action was taken/failed regarding to the Regarding object.\n+optional"
  5182          },
  5183          "count": {
  5184            "type": "integer",
  5185            "format": "int32",
  5186            "title": "The number of times this event has occurred.\n+optional"
  5187          },
  5188          "eventTime": {
  5189            "$ref": "#/definitions/v1MicroTime"
  5190          },
  5191          "firstTimestamp": {
  5192            "$ref": "#/definitions/v1Time"
  5193          },
  5194          "involvedObject": {
  5195            "$ref": "#/definitions/v1ObjectReference"
  5196          },
  5197          "lastTimestamp": {
  5198            "$ref": "#/definitions/v1Time"
  5199          },
  5200          "message": {
  5201            "type": "string",
  5202            "title": "A human-readable description of the status of this operation.\nTODO: decide on maximum length.\n+optional"
  5203          },
  5204          "metadata": {
  5205            "$ref": "#/definitions/v1ObjectMeta"
  5206          },
  5207          "reason": {
  5208            "type": "string",
  5209            "title": "This should be a short, machine understandable string that gives the reason\nfor the transition into the object's current status.\nTODO: provide exact specification for format.\n+optional"
  5210          },
  5211          "related": {
  5212            "$ref": "#/definitions/v1ObjectReference"
  5213          },
  5214          "reportingComponent": {
  5215            "type": "string",
  5216            "title": "Name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.\n+optional"
  5217          },
  5218          "reportingInstance": {
  5219            "type": "string",
  5220            "title": "ID of the controller instance, e.g. `kubelet-xyzf`.\n+optional"
  5221          },
  5222          "series": {
  5223            "$ref": "#/definitions/v1EventSeries"
  5224          },
  5225          "source": {
  5226            "$ref": "#/definitions/v1EventSource"
  5227          },
  5228          "type": {
  5229            "type": "string",
  5230            "title": "Type of this event (Normal, Warning), new types could be added in the future\n+optional"
  5231          }
  5232        }
  5233      },
  5234      "v1EventList": {
  5235        "description": "EventList is a list of events.",
  5236        "type": "object",
  5237        "properties": {
  5238          "items": {
  5239            "type": "array",
  5240            "title": "List of events",
  5241            "items": {
  5242              "$ref": "#/definitions/v1Event"
  5243            }
  5244          },
  5245          "metadata": {
  5246            "$ref": "#/definitions/v1ListMeta"
  5247          }
  5248        }
  5249      },
  5250      "v1EventSeries": {
  5251        "description": "EventSeries contain information on series of events, i.e. thing that was/is happening\ncontinuously for some time.",
  5252        "type": "object",
  5253        "properties": {
  5254          "count": {
  5255            "type": "integer",
  5256            "format": "int32",
  5257            "title": "Number of occurrences in this series up to the last heartbeat time"
  5258          },
  5259          "lastObservedTime": {
  5260            "$ref": "#/definitions/v1MicroTime"
  5261          }
  5262        }
  5263      },
  5264      "v1EventSource": {
  5265        "description": "EventSource contains information for an event.",
  5266        "type": "object",
  5267        "properties": {
  5268          "component": {
  5269            "type": "string",
  5270            "title": "Component from which the event is generated.\n+optional"
  5271          },
  5272          "host": {
  5273            "type": "string",
  5274            "title": "Node name on which the event is generated.\n+optional"
  5275          }
  5276        }
  5277      },
  5278      "v1FieldsV1": {
  5279        "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,\nor a string representing a sub-field or item. The string will follow one of these four formats:\n'f:<name>', where <name> is the name of a field in a struct, or key in a map\n'v:<value>', where <value> is the exact json formatted value of a list item\n'i:<index>', where <index> is position of a item in a list\n'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values\nIf 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\n+protobuf.options.(gogoproto.goproto_stringer)=false",
  5280        "type": "object",
  5281        "properties": {
  5282          "Raw": {
  5283            "description": "Raw is the underlying serialization of this object.",
  5284            "type": "string",
  5285            "format": "byte"
  5286          }
  5287        }
  5288      },
  5289      "v1GroupKind": {
  5290        "description": "+protobuf.options.(gogoproto.goproto_stringer)=false",
  5291        "type": "object",
  5292        "title": "GroupKind specifies a Group and a Kind, but does not force a version.  This is useful for identifying\nconcepts during lookup stages without having partially valid types",
  5293        "properties": {
  5294          "group": {
  5295            "type": "string"
  5296          },
  5297          "kind": {
  5298            "type": "string"
  5299          }
  5300        }
  5301      },
  5302      "v1JSON": {
  5303        "description": "JSON represents any valid JSON value.\nThese types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.",
  5304        "type": "object",
  5305        "properties": {
  5306          "raw": {
  5307            "type": "string",
  5308            "format": "byte"
  5309          }
  5310        }
  5311      },
  5312      "v1LabelSelector": {
  5313        "type": "object",
  5314        "title": "A label selector is a label query over a set of resources. The result of matchLabels and\nmatchExpressions are ANDed. An empty label selector matches all objects. A null\nlabel selector matches no objects.\n+structType=atomic",
  5315        "properties": {
  5316          "matchExpressions": {
  5317            "type": "array",
  5318            "title": "matchExpressions is a list of label selector requirements. The requirements are ANDed.\n+optional",
  5319            "items": {
  5320              "$ref": "#/definitions/v1LabelSelectorRequirement"
  5321            }
  5322          },
  5323          "matchLabels": {
  5324            "type": "object",
  5325            "title": "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels\nmap is equivalent to an element of matchExpressions, whose key field is \"key\", the\noperator is \"In\", and the values array contains only \"value\". The requirements are ANDed.\n+optional",
  5326            "additionalProperties": {
  5327              "type": "string"
  5328            }
  5329          }
  5330        }
  5331      },
  5332      "v1LabelSelectorRequirement": {
  5333        "description": "A label selector requirement is a selector that contains values, a key, and an operator that\nrelates the key and values.",
  5334        "type": "object",
  5335        "properties": {
  5336          "key": {
  5337            "type": "string",
  5338            "title": "key is the label key that the selector applies to.\n+patchMergeKey=key\n+patchStrategy=merge"
  5339          },
  5340          "operator": {
  5341            "description": "operator represents a key's relationship to a set of values.\nValid operators are In, NotIn, Exists and DoesNotExist.",
  5342            "type": "string"
  5343          },
  5344          "values": {
  5345            "type": "array",
  5346            "title": "values is an array of string values. If the operator is In or NotIn,\nthe values array must be non-empty. If the operator is Exists or DoesNotExist,\nthe values array must be empty. This array is replaced during a strategic\nmerge patch.\n+optional",
  5347            "items": {
  5348              "type": "string"
  5349            }
  5350          }
  5351        }
  5352      },
  5353      "v1ListMeta": {
  5354        "description": "ListMeta describes metadata that synthetic resources must have, including lists and\nvarious status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
  5355        "type": "object",
  5356        "properties": {
  5357          "continue": {
  5358            "description": "continue may be set if the user set a limit on the number of items returned, and indicates that\nthe server has more data available. The value is opaque and may be used to issue another request\nto the endpoint that served this list to retrieve the next set of available objects. Continuing a\nconsistent list may not be possible if the server configuration has changed or more than a few\nminutes have passed. The resourceVersion field returned when using this continue value will be\nidentical to the value in the first response, unless you have received this token from an error\nmessage.",
  5359            "type": "string"
  5360          },
  5361          "remainingItemCount": {
  5362            "type": "integer",
  5363            "format": "int64",
  5364            "title": "remainingItemCount is the number of subsequent items in the list which are not included in this\nlist response. If the list request contained label or field selectors, then the number of\nremaining items is unknown and the field will be left unset and omitted during serialization.\nIf the list is complete (either because it is not chunking or because this is the last chunk),\nthen there are no more remaining items and this field will be left unset and omitted during\nserialization.\nServers older than v1.15 do not set this field.\nThe intended use of the remainingItemCount is *estimating* the size of a collection. Clients\nshould not rely on the remainingItemCount to be set or to be exact.\n+optional"
  5365          },
  5366          "resourceVersion": {
  5367            "type": "string",
  5368            "title": "String that identifies the server's internal version of this object that\ncan be used by clients to determine when objects have changed.\nValue must be treated as opaque by clients and passed unmodified back to the server.\nPopulated by the system.\nRead-only.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n+optional"
  5369          },
  5370          "selfLink": {
  5371            "type": "string",
  5372            "title": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.\n+optional"
  5373          }
  5374        }
  5375      },
  5376      "v1LoadBalancerIngress": {
  5377        "description": "LoadBalancerIngress represents the status of a load-balancer ingress point:\ntraffic intended for the service should be sent to an ingress point.",
  5378        "type": "object",
  5379        "properties": {
  5380          "hostname": {
  5381            "type": "string",
  5382            "title": "Hostname is set for load-balancer ingress points that are DNS based\n(typically AWS load-balancers)\n+optional"
  5383          },
  5384          "ip": {
  5385            "type": "string",
  5386            "title": "IP is set for load-balancer ingress points that are IP based\n(typically GCE or OpenStack load-balancers)\n+optional"
  5387          },
  5388          "ports": {
  5389            "type": "array",
  5390            "title": "Ports is a list of records of service ports\nIf used, every port defined in the service should have an entry in it\n+listType=atomic\n+optional",
  5391            "items": {
  5392              "$ref": "#/definitions/v1PortStatus"
  5393            }
  5394          }
  5395        }
  5396      },
  5397      "v1ManagedFieldsEntry": {
  5398        "description": "ManagedFieldsEntry is a workflow-id, a FieldSet and the group version of the resource\nthat the fieldset applies to.",
  5399        "type": "object",
  5400        "properties": {
  5401          "apiVersion": {
  5402            "description": "APIVersion defines the version of this resource that this field set\napplies to. The format is \"group/version\" just like the top-level\nAPIVersion field. It is necessary to track the version of a field\nset because it cannot be automatically converted.",
  5403            "type": "string"
  5404          },
  5405          "fieldsType": {
  5406            "type": "string",
  5407            "title": "FieldsType is the discriminator for the different fields format and version.\nThere is currently only one possible value: \"FieldsV1\""
  5408          },
  5409          "fieldsV1": {
  5410            "$ref": "#/definitions/v1FieldsV1"
  5411          },
  5412          "manager": {
  5413            "description": "Manager is an identifier of the workflow managing these fields.",
  5414            "type": "string"
  5415          },
  5416          "operation": {
  5417            "description": "Operation is the type of operation which lead to this ManagedFieldsEntry being created.\nThe only valid values for this field are 'Apply' and 'Update'.",
  5418            "type": "string"
  5419          },
  5420          "subresource": {
  5421            "description": "Subresource is the name of the subresource used to update that object, or\nempty string if the object was updated through the main resource. The\nvalue of this field is used to distinguish between managers, even if they\nshare the same name. For example, a status update will be distinct from a\nregular update using the same manager name.\nNote that the APIVersion field is not related to the Subresource field and\nit always corresponds to the version of the main resource.",
  5422            "type": "string"
  5423          },
  5424          "time": {
  5425            "$ref": "#/definitions/v1Time"
  5426          }
  5427        }
  5428      },
  5429      "v1MicroTime": {
  5430        "description": "MicroTime is version of Time with microsecond level precision.\n\n+protobuf.options.marshal=false\n+protobuf.as=Timestamp\n+protobuf.options.(gogoproto.goproto_stringer)=false",
  5431        "type": "object",
  5432        "properties": {
  5433          "nanos": {
  5434            "description": "Non-negative fractions of a second at nanosecond resolution. Negative\nsecond values with fractions must still have non-negative nanos values\nthat count forward in time. Must be from 0 to 999,999,999\ninclusive. This field may be limited in precision depending on context.",
  5435            "type": "integer",
  5436            "format": "int32"
  5437          },
  5438          "seconds": {
  5439            "description": "Represents seconds of UTC time since Unix epoch\n1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to\n9999-12-31T23:59:59Z inclusive.",
  5440            "type": "integer",
  5441            "format": "int64"
  5442          }
  5443        }
  5444      },
  5445      "v1NodeSystemInfo": {
  5446        "description": "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.",
  5447        "type": "object",
  5448        "properties": {
  5449          "architecture": {
  5450            "type": "string",
  5451            "title": "The Architecture reported by the node"
  5452          },
  5453          "bootID": {
  5454            "description": "Boot ID reported by the node.",
  5455            "type": "string"
  5456          },
  5457          "containerRuntimeVersion": {
  5458            "description": "ContainerRuntime Version reported by the node through runtime remote API (e.g. containerd://1.4.2).",
  5459            "type": "string"
  5460          },
  5461          "kernelVersion": {
  5462            "description": "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).",
  5463            "type": "string"
  5464          },
  5465          "kubeProxyVersion": {
  5466            "description": "KubeProxy Version reported by the node.",
  5467            "type": "string"
  5468          },
  5469          "kubeletVersion": {
  5470            "description": "Kubelet Version reported by the node.",
  5471            "type": "string"
  5472          },
  5473          "machineID": {
  5474            "type": "string",
  5475            "title": "MachineID reported by the node. For unique machine identification\nin the cluster this field is preferred. Learn more from man(5)\nmachine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html"
  5476          },
  5477          "operatingSystem": {
  5478            "type": "string",
  5479            "title": "The Operating System reported by the node"
  5480          },
  5481          "osImage": {
  5482            "description": "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).",
  5483            "type": "string"
  5484          },
  5485          "systemUUID": {
  5486            "type": "string",
  5487            "title": "SystemUUID reported by the node. For unique machine identification\nMachineID is preferred. This field is specific to Red Hat hosts\nhttps://access.redhat.com/documentation/en-us/red_hat_subscription_management/1/html/rhsm/uuid"
  5488          }
  5489        }
  5490      },
  5491      "v1ObjectMeta": {
  5492        "description": "ObjectMeta is metadata that all persisted resources must have, which includes all objects\nusers must create.",
  5493        "type": "object",
  5494        "properties": {
  5495          "annotations": {
  5496            "type": "object",
  5497            "title": "Annotations is an unstructured key value map stored with a resource that may be\nset by external tools to store and retrieve arbitrary metadata. They are not\nqueryable and should be preserved when modifying objects.\nMore info: http://kubernetes.io/docs/user-guide/annotations\n+optional",
  5498            "additionalProperties": {
  5499              "type": "string"
  5500            }
  5501          },
  5502          "creationTimestamp": {
  5503            "$ref": "#/definitions/v1Time"
  5504          },
  5505          "deletionGracePeriodSeconds": {
  5506            "type": "integer",
  5507            "format": "int64",
  5508            "title": "Number of seconds allowed for this object to gracefully terminate before\nit will be removed from the system. Only set when deletionTimestamp is also set.\nMay only be shortened.\nRead-only.\n+optional"
  5509          },
  5510          "deletionTimestamp": {
  5511            "$ref": "#/definitions/v1Time"
  5512          },
  5513          "finalizers": {
  5514            "type": "array",
  5515            "title": "Must be empty before the object is deleted from the registry. Each entry\nis an identifier for the responsible component that will remove the entry\nfrom the list. If the deletionTimestamp of the object is non-nil, entries\nin this list can only be removed.\nFinalizers may be processed and removed in any order.  Order is NOT enforced\nbecause it introduces significant risk of stuck finalizers.\nfinalizers is a shared field, any actor with permission can reorder it.\nIf the finalizer list is processed in order, then this can lead to a situation\nin which the component responsible for the first finalizer in the list is\nwaiting for a signal (field value, external system, or other) produced by a\ncomponent responsible for a finalizer later in the list, resulting in a deadlock.\nWithout enforced ordering finalizers are free to order amongst themselves and\nare not vulnerable to ordering changes in the list.\n+optional\n+patchStrategy=merge",
  5516            "items": {
  5517              "type": "string"
  5518            }
  5519          },
  5520          "generateName": {
  5521            "description": "GenerateName is an optional prefix, used by the server, to generate a unique\nname ONLY IF the Name field has not been provided.\nIf this field is used, the name returned to the client will be different\nthan the name passed. This value will also be combined with a unique suffix.\nThe provided value has the same validation rules as the Name field,\nand may be truncated by the length of the suffix required to make the value\nunique on the server.\n\nIf this field is specified and the generated name exists, the server will return a 409.\n\nApplied only if Name is not specified.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\n+optional",
  5522            "type": "string"
  5523          },
  5524          "generation": {
  5525            "type": "integer",
  5526            "format": "int64",
  5527            "title": "A sequence number representing a specific generation of the desired state.\nPopulated by the system. Read-only.\n+optional"
  5528          },
  5529          "labels": {
  5530            "type": "object",
  5531            "title": "Map of string keys and values that can be used to organize and categorize\n(scope and select) objects. May match selectors of replication controllers\nand services.\nMore info: http://kubernetes.io/docs/user-guide/labels\n+optional",
  5532            "additionalProperties": {
  5533              "type": "string"
  5534            }
  5535          },
  5536          "managedFields": {
  5537            "description": "ManagedFields maps workflow-id and version to the set of fields\nthat are managed by that workflow. This is mostly for internal\nhousekeeping, and users typically shouldn't need to set or\nunderstand this field. A workflow can be the user's name, a\ncontroller's name, or the name of a specific apply path like\n\"ci-cd\". The set of fields is always in the version that the\nworkflow used when modifying the object.\n\n+optional",
  5538            "type": "array",
  5539            "items": {
  5540              "$ref": "#/definitions/v1ManagedFieldsEntry"
  5541            }
  5542          },
  5543          "name": {
  5544            "type": "string",
  5545            "title": "Name must be unique within a namespace. Is required when creating resources, although\nsome resources may allow a client to request the generation of an appropriate name\nautomatically. Name is primarily intended for creation idempotence and configuration\ndefinition.\nCannot be updated.\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names\n+optional"
  5546          },
  5547          "namespace": {
  5548            "description": "Namespace defines the space within which each name must be unique. An empty namespace is\nequivalent to the \"default\" namespace, but \"default\" is the canonical representation.\nNot all objects are required to be scoped to a namespace - the value of this field for\nthose objects will be empty.\n\nMust be a DNS_LABEL.\nCannot be updated.\nMore info: http://kubernetes.io/docs/user-guide/namespaces\n+optional",
  5549            "type": "string"
  5550          },
  5551          "ownerReferences": {
  5552            "type": "array",
  5553            "title": "List of objects depended by this object. If ALL objects in the list have\nbeen deleted, this object will be garbage collected. If this object is managed by a controller,\nthen an entry in this list will point to this controller, with the controller field set to true.\nThere cannot be more than one managing controller.\n+optional\n+patchMergeKey=uid\n+patchStrategy=merge",
  5554            "items": {
  5555              "$ref": "#/definitions/v1OwnerReference"
  5556            }
  5557          },
  5558          "resourceVersion": {
  5559            "description": "An opaque value that represents the internal version of this object that can\nbe used by clients to determine when objects have changed. May be used for optimistic\nconcurrency, change detection, and the watch operation on a resource or set of resources.\nClients must treat these values as opaque and passed unmodified back to the server.\nThey may only be valid for a particular resource or set of resources.\n\nPopulated by the system.\nRead-only.\nValue must be treated as opaque by clients and .\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n+optional",
  5560            "type": "string"
  5561          },
  5562          "selfLink": {
  5563            "type": "string",
  5564            "title": "Deprecated: selfLink is a legacy read-only field that is no longer populated by the system.\n+optional"
  5565          },
  5566          "uid": {
  5567            "description": "UID is the unique in time and space value for this object. It is typically generated by\nthe server on successful creation of a resource and is not allowed to change on PUT\noperations.\n\nPopulated by the system.\nRead-only.\nMore info: http://kubernetes.io/docs/user-guide/identifiers#uids\n+optional",
  5568            "type": "string"
  5569          }
  5570        }
  5571      },
  5572      "v1ObjectReference": {
  5573        "description": "ObjectReference contains enough information to let you inspect or modify the referred object.\n---\nNew uses of this type are discouraged because of difficulty describing its usage when embedded in APIs.\n 1. Ignored fields.  It includes many fields which are not generally honored.  For instance, ResourceVersion and FieldPath are both very rarely valid in actual usage.\n 2. Invalid usage help.  It is impossible to add specific help for individual usage.  In most embedded usages, there are particular\n    restrictions like, \"must refer only to types A and B\" or \"UID not honored\" or \"name must be restricted\".\n    Those cannot be well described when embedded.\n 3. Inconsistent validation.  Because the usages are different, the validation rules are different by usage, which makes it hard for users to predict what will happen.\n 4. The fields are both imprecise and overly precise.  Kind is not a precise mapping to a URL. This can produce ambiguity\n    during interpretation and require a REST mapping.  In most cases, the dependency is on the group,resource tuple\n    and the version of the actual struct is irrelevant.\n 5. We cannot easily change it.  Because this type is embedded in many locations, updates to this type\n    will affect numerous schemas.  Don't make new APIs embed an underspecified API type they do not control.\n\nInstead of using this type, create a locally provided and used type that is well-focused on your reference.\nFor example, ServiceReferences for admission registration: https://github.com/kubernetes/api/blob/release-1.17/admissionregistration/v1/types.go#L533 .\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object\n+structType=atomic",
  5574        "type": "object",
  5575        "properties": {
  5576          "apiVersion": {
  5577            "type": "string",
  5578            "title": "API version of the referent.\n+optional"
  5579          },
  5580          "fieldPath": {
  5581            "type": "string",
  5582            "title": "If referring to a piece of an object instead of an entire object, this string\nshould contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2].\nFor example, if the object reference is to a container within a pod, this would take on a value like:\n\"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered\nthe event) or if no container name is specified \"spec.containers[2]\" (container with\nindex 2 in this pod). This syntax is chosen only to have some well-defined way of\nreferencing a part of an object.\nTODO: this design is not final and this field is subject to change in the future.\n+optional"
  5583          },
  5584          "kind": {
  5585            "type": "string",
  5586            "title": "Kind of the referent.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\n+optional"
  5587          },
  5588          "name": {
  5589            "type": "string",
  5590            "title": "Name of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names\n+optional"
  5591          },
  5592          "namespace": {
  5593            "type": "string",
  5594            "title": "Namespace of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/\n+optional"
  5595          },
  5596          "resourceVersion": {
  5597            "type": "string",
  5598            "title": "Specific resourceVersion to which this reference is made, if any.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n+optional"
  5599          },
  5600          "uid": {
  5601            "type": "string",
  5602            "title": "UID of the referent.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids\n+optional"
  5603          }
  5604        }
  5605      },
  5606      "v1OwnerReference": {
  5607        "type": "object",
  5608        "title": "OwnerReference contains enough information to let you identify an owning\nobject. An owning object must be in the same namespace as the dependent, or\nbe cluster-scoped, so there is no namespace field.\n+structType=atomic",
  5609        "properties": {
  5610          "apiVersion": {
  5611            "description": "API version of the referent.",
  5612            "type": "string"
  5613          },
  5614          "blockOwnerDeletion": {
  5615            "type": "boolean",
  5616            "title": "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then\nthe owner cannot be deleted from the key-value store until this\nreference is removed.\nSee https://kubernetes.io/docs/concepts/architecture/garbage-collection/#foreground-deletion\nfor how the garbage collector interacts with this field and enforces the foreground deletion.\nDefaults to false.\nTo set this field, a user needs \"delete\" permission of the owner,\notherwise 422 (Unprocessable Entity) will be returned.\n+optional"
  5617          },
  5618          "controller": {
  5619            "type": "boolean",
  5620            "title": "If true, this reference points to the managing controller.\n+optional"
  5621          },
  5622          "kind": {
  5623            "type": "string",
  5624            "title": "Kind of the referent.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds"
  5625          },
  5626          "name": {
  5627            "type": "string",
  5628            "title": "Name of the referent.\nMore info: http://kubernetes.io/docs/user-guide/identifiers#names"
  5629          },
  5630          "uid": {
  5631            "type": "string",
  5632            "title": "UID of the referent.\nMore info: http://kubernetes.io/docs/user-guide/identifiers#uids"
  5633          }
  5634        }
  5635      },
  5636      "v1PortStatus": {
  5637        "type": "object",
  5638        "properties": {
  5639          "error": {
  5640            "type": "string",
  5641            "title": "Error is to record the problem with the service port\nThe format of the error shall comply with the following rules:\n- built-in error values shall be specified in this file and those shall use\n  CamelCase names\n- cloud provider specific error values must have names that comply with the\n  format foo.example.com/CamelCase.\n---\nThe regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)\n+optional\n+kubebuilder:validation:Required\n+kubebuilder:validation:Pattern=`^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$`\n+kubebuilder:validation:MaxLength=316"
  5642          },
  5643          "port": {
  5644            "type": "integer",
  5645            "format": "int32",
  5646            "title": "Port is the port number of the service port of which status is recorded here"
  5647          },
  5648          "protocol": {
  5649            "type": "string",
  5650            "title": "Protocol is the protocol of the service port of which status is recorded here\nThe supported values are: \"TCP\", \"UDP\", \"SCTP\""
  5651          }
  5652        }
  5653      },
  5654      "v1Time": {
  5655        "description": "Time is a wrapper around time.Time which supports correct\nmarshaling to YAML and JSON.  Wrappers are provided for many\nof the factory methods that the time package offers.\n\n+protobuf.options.marshal=false\n+protobuf.as=Timestamp\n+protobuf.options.(gogoproto.goproto_stringer)=false",
  5656        "type": "string",
  5657        "format": "date-time"
  5658      },
  5659      "v1alpha1AWSAuthConfig": {
  5660        "type": "object",
  5661        "title": "AWSAuthConfig is an AWS IAM authentication configuration",
  5662        "properties": {
  5663          "clusterName": {
  5664            "type": "string",
  5665            "title": "ClusterName contains AWS cluster name"
  5666          },
  5667          "roleARN": {
  5668            "description": "RoleARN contains optional role ARN. If set then AWS IAM Authenticator assume a role to perform cluster operations instead of the default AWS credential provider chain.",
  5669            "type": "string"
  5670          }
  5671        }
  5672      },
  5673      "v1alpha1AppProject": {
  5674        "type": "object",
  5675        "title": "AppProject provides a logical grouping of applications, providing controls for:\n* where the apps may deploy to (cluster whitelist)\n* what may be deployed (repository whitelist, resource whitelist/blacklist)\n* who can access these applications (roles, OIDC group claims bindings)\n* and what they can do (RBAC policies)\n* automation access to these roles (JWT tokens)\n+genclient\n+genclient:noStatus\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object\n+kubebuilder:resource:path=appprojects,shortName=appproj;appprojs",
  5676        "properties": {
  5677          "metadata": {
  5678            "$ref": "#/definitions/v1ObjectMeta"
  5679          },
  5680          "spec": {
  5681            "$ref": "#/definitions/v1alpha1AppProjectSpec"
  5682          },
  5683          "status": {
  5684            "$ref": "#/definitions/v1alpha1AppProjectStatus"
  5685          }
  5686        }
  5687      },
  5688      "v1alpha1AppProjectList": {
  5689        "type": "object",
  5690        "title": "AppProjectList is list of AppProject resources\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object",
  5691        "properties": {
  5692          "items": {
  5693            "type": "array",
  5694            "items": {
  5695              "$ref": "#/definitions/v1alpha1AppProject"
  5696            }
  5697          },
  5698          "metadata": {
  5699            "$ref": "#/definitions/v1ListMeta"
  5700          }
  5701        }
  5702      },
  5703      "v1alpha1AppProjectSpec": {
  5704        "type": "object",
  5705        "title": "AppProjectSpec is the specification of an AppProject",
  5706        "properties": {
  5707          "clusterResourceBlacklist": {
  5708            "type": "array",
  5709            "title": "ClusterResourceBlacklist contains list of blacklisted cluster level resources",
  5710            "items": {
  5711              "$ref": "#/definitions/v1GroupKind"
  5712            }
  5713          },
  5714          "clusterResourceWhitelist": {
  5715            "type": "array",
  5716            "title": "ClusterResourceWhitelist contains list of whitelisted cluster level resources",
  5717            "items": {
  5718              "$ref": "#/definitions/v1GroupKind"
  5719            }
  5720          },
  5721          "description": {
  5722            "type": "string",
  5723            "title": "Description contains optional project description"
  5724          },
  5725          "destinations": {
  5726            "type": "array",
  5727            "title": "Destinations contains list of destinations available for deployment",
  5728            "items": {
  5729              "$ref": "#/definitions/v1alpha1ApplicationDestination"
  5730            }
  5731          },
  5732          "namespaceResourceBlacklist": {
  5733            "type": "array",
  5734            "title": "NamespaceResourceBlacklist contains list of blacklisted namespace level resources",
  5735            "items": {
  5736              "$ref": "#/definitions/v1GroupKind"
  5737            }
  5738          },
  5739          "namespaceResourceWhitelist": {
  5740            "type": "array",
  5741            "title": "NamespaceResourceWhitelist contains list of whitelisted namespace level resources",
  5742            "items": {
  5743              "$ref": "#/definitions/v1GroupKind"
  5744            }
  5745          },
  5746          "orphanedResources": {
  5747            "$ref": "#/definitions/v1alpha1OrphanedResourcesMonitorSettings"
  5748          },
  5749          "permitOnlyProjectScopedClusters": {
  5750            "type": "boolean",
  5751            "title": "PermitOnlyProjectScopedClusters determines whether destinations can only reference clusters which are project-scoped"
  5752          },
  5753          "roles": {
  5754            "type": "array",
  5755            "title": "Roles are user defined RBAC roles associated with this project",
  5756            "items": {
  5757              "$ref": "#/definitions/v1alpha1ProjectRole"
  5758            }
  5759          },
  5760          "signatureKeys": {
  5761            "type": "array",
  5762            "title": "SignatureKeys contains a list of PGP key IDs that commits in Git must be signed with in order to be allowed for sync",
  5763            "items": {
  5764              "$ref": "#/definitions/v1alpha1SignatureKey"
  5765            }
  5766          },
  5767          "sourceNamespaces": {
  5768            "type": "array",
  5769            "title": "SourceNamespaces defines the namespaces application resources are allowed to be created in",
  5770            "items": {
  5771              "type": "string"
  5772            }
  5773          },
  5774          "sourceRepos": {
  5775            "type": "array",
  5776            "title": "SourceRepos contains list of repository URLs which can be used for deployment",
  5777            "items": {
  5778              "type": "string"
  5779            }
  5780          },
  5781          "syncWindows": {
  5782            "type": "array",
  5783            "title": "SyncWindows controls when syncs can be run for apps in this project",
  5784            "items": {
  5785              "$ref": "#/definitions/v1alpha1SyncWindow"
  5786            }
  5787          }
  5788        }
  5789      },
  5790      "v1alpha1AppProjectStatus": {
  5791        "type": "object",
  5792        "title": "AppProjectStatus contains status information for AppProject CRs",
  5793        "properties": {
  5794          "jwtTokensByRole": {
  5795            "type": "object",
  5796            "title": "JWTTokensByRole contains a list of JWT tokens issued for a given role",
  5797            "additionalProperties": {
  5798              "$ref": "#/definitions/v1alpha1JWTTokens"
  5799            }
  5800          }
  5801        }
  5802      },
  5803      "v1alpha1Application": {
  5804        "type": "object",
  5805        "title": "Application is a definition of Application resource.\n+genclient\n+genclient:noStatus\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object\n+kubebuilder:resource:path=applications,shortName=app;apps\n+kubebuilder:printcolumn:name=\"Sync Status\",type=string,JSONPath=`.status.sync.status`\n+kubebuilder:printcolumn:name=\"Health Status\",type=string,JSONPath=`.status.health.status`\n+kubebuilder:printcolumn:name=\"Revision\",type=string,JSONPath=`.status.sync.revision`,priority=10",
  5806        "properties": {
  5807          "metadata": {
  5808            "$ref": "#/definitions/v1ObjectMeta"
  5809          },
  5810          "operation": {
  5811            "$ref": "#/definitions/v1alpha1Operation"
  5812          },
  5813          "spec": {
  5814            "$ref": "#/definitions/v1alpha1ApplicationSpec"
  5815          },
  5816          "status": {
  5817            "$ref": "#/definitions/v1alpha1ApplicationStatus"
  5818          }
  5819        }
  5820      },
  5821      "v1alpha1ApplicationCondition": {
  5822        "type": "object",
  5823        "title": "ApplicationCondition contains details about an application condition, which is usually an error or warning",
  5824        "properties": {
  5825          "lastTransitionTime": {
  5826            "$ref": "#/definitions/v1Time"
  5827          },
  5828          "message": {
  5829            "type": "string",
  5830            "title": "Message contains human-readable message indicating details about condition"
  5831          },
  5832          "type": {
  5833            "type": "string",
  5834            "title": "Type is an application condition type"
  5835          }
  5836        }
  5837      },
  5838      "v1alpha1ApplicationDestination": {
  5839        "type": "object",
  5840        "title": "ApplicationDestination holds information about the application's destination",
  5841        "properties": {
  5842          "name": {
  5843            "description": "Name is an alternate way of specifying the target cluster by its symbolic name. This must be set if Server is not set.",
  5844            "type": "string"
  5845          },
  5846          "namespace": {
  5847            "type": "string",
  5848            "title": "Namespace specifies the target namespace for the application's resources.\nThe namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace"
  5849          },
  5850          "server": {
  5851            "description": "Server specifies the URL of the target cluster's Kubernetes control plane API. This must be set if Name is not set.",
  5852            "type": "string"
  5853          }
  5854        }
  5855      },
  5856      "v1alpha1ApplicationList": {
  5857        "type": "object",
  5858        "title": "ApplicationList is list of Application resources\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object",
  5859        "properties": {
  5860          "items": {
  5861            "type": "array",
  5862            "items": {
  5863              "$ref": "#/definitions/v1alpha1Application"
  5864            }
  5865          },
  5866          "metadata": {
  5867            "$ref": "#/definitions/v1ListMeta"
  5868          }
  5869        }
  5870      },
  5871      "v1alpha1ApplicationMatchExpression": {
  5872        "type": "object",
  5873        "properties": {
  5874          "key": {
  5875            "type": "string"
  5876          },
  5877          "operator": {
  5878            "type": "string"
  5879          },
  5880          "values": {
  5881            "type": "array",
  5882            "items": {
  5883              "type": "string"
  5884            }
  5885          }
  5886        }
  5887      },
  5888      "v1alpha1ApplicationPreservedFields": {
  5889        "type": "object",
  5890        "properties": {
  5891          "annotations": {
  5892            "type": "array",
  5893            "items": {
  5894              "type": "string"
  5895            }
  5896          },
  5897          "labels": {
  5898            "type": "array",
  5899            "items": {
  5900              "type": "string"
  5901            }
  5902          }
  5903        }
  5904      },
  5905      "v1alpha1ApplicationSet": {
  5906        "type": "object",
  5907        "title": "ApplicationSet is a set of Application resources\n+genclient\n+genclient:noStatus\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object\n+kubebuilder:resource:path=applicationsets,shortName=appset;appsets\n+kubebuilder:subresource:status",
  5908        "properties": {
  5909          "metadata": {
  5910            "$ref": "#/definitions/v1ObjectMeta"
  5911          },
  5912          "spec": {
  5913            "$ref": "#/definitions/v1alpha1ApplicationSetSpec"
  5914          },
  5915          "status": {
  5916            "$ref": "#/definitions/v1alpha1ApplicationSetStatus"
  5917          }
  5918        }
  5919      },
  5920      "v1alpha1ApplicationSetApplicationStatus": {
  5921        "type": "object",
  5922        "title": "ApplicationSetApplicationStatus contains details about each Application managed by the ApplicationSet",
  5923        "properties": {
  5924          "application": {
  5925            "type": "string",
  5926            "title": "Application contains the name of the Application resource"
  5927          },
  5928          "lastTransitionTime": {
  5929            "$ref": "#/definitions/v1Time"
  5930          },
  5931          "message": {
  5932            "type": "string",
  5933            "title": "Message contains human-readable message indicating details about the status"
  5934          },
  5935          "status": {
  5936            "type": "string",
  5937            "title": "Status contains the AppSet's perceived status of the managed Application resource: (Waiting, Pending, Progressing, Healthy)"
  5938          },
  5939          "step": {
  5940            "type": "string",
  5941            "title": "Step tracks which step this Application should be updated in"
  5942          }
  5943        }
  5944      },
  5945      "v1alpha1ApplicationSetCondition": {
  5946        "type": "object",
  5947        "title": "ApplicationSetCondition contains details about an applicationset condition, which is usally an error or warning",
  5948        "properties": {
  5949          "lastTransitionTime": {
  5950            "$ref": "#/definitions/v1Time"
  5951          },
  5952          "message": {
  5953            "type": "string",
  5954            "title": "Message contains human-readable message indicating details about condition"
  5955          },
  5956          "reason": {
  5957            "type": "string",
  5958            "title": "Single word camelcase representing the reason for the status eg ErrorOccurred"
  5959          },
  5960          "status": {
  5961            "type": "string",
  5962            "title": "True/False/Unknown"
  5963          },
  5964          "type": {
  5965            "type": "string",
  5966            "title": "Type is an applicationset condition type"
  5967          }
  5968        }
  5969      },
  5970      "v1alpha1ApplicationSetGenerator": {
  5971        "description": "ApplicationSetGenerator represents a generator at the top level of an ApplicationSet.",
  5972        "type": "object",
  5973        "properties": {
  5974          "clusterDecisionResource": {
  5975            "$ref": "#/definitions/v1alpha1DuckTypeGenerator"
  5976          },
  5977          "clusters": {
  5978            "$ref": "#/definitions/v1alpha1ClusterGenerator"
  5979          },
  5980          "git": {
  5981            "$ref": "#/definitions/v1alpha1GitGenerator"
  5982          },
  5983          "list": {
  5984            "$ref": "#/definitions/v1alpha1ListGenerator"
  5985          },
  5986          "matrix": {
  5987            "$ref": "#/definitions/v1alpha1MatrixGenerator"
  5988          },
  5989          "merge": {
  5990            "$ref": "#/definitions/v1alpha1MergeGenerator"
  5991          },
  5992          "plugin": {
  5993            "$ref": "#/definitions/v1alpha1PluginGenerator"
  5994          },
  5995          "pullRequest": {
  5996            "$ref": "#/definitions/v1alpha1PullRequestGenerator"
  5997          },
  5998          "scmProvider": {
  5999            "$ref": "#/definitions/v1alpha1SCMProviderGenerator"
  6000          },
  6001          "selector": {
  6002            "$ref": "#/definitions/v1LabelSelector"
  6003          }
  6004        }
  6005      },
  6006      "v1alpha1ApplicationSetList": {
  6007        "type": "object",
  6008        "title": "ApplicationSetList contains a list of ApplicationSet\n+k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object\n+kubebuilder:object:root=true",
  6009        "properties": {
  6010          "items": {
  6011            "type": "array",
  6012            "items": {
  6013              "$ref": "#/definitions/v1alpha1ApplicationSet"
  6014            }
  6015          },
  6016          "metadata": {
  6017            "$ref": "#/definitions/v1ListMeta"
  6018          }
  6019        }
  6020      },
  6021      "v1alpha1ApplicationSetNestedGenerator": {
  6022        "description": "ApplicationSetNestedGenerator represents a generator nested within a combination-type generator (MatrixGenerator or\nMergeGenerator).",
  6023        "type": "object",
  6024        "properties": {
  6025          "clusterDecisionResource": {
  6026            "$ref": "#/definitions/v1alpha1DuckTypeGenerator"
  6027          },
  6028          "clusters": {
  6029            "$ref": "#/definitions/v1alpha1ClusterGenerator"
  6030          },
  6031          "git": {
  6032            "$ref": "#/definitions/v1alpha1GitGenerator"
  6033          },
  6034          "list": {
  6035            "$ref": "#/definitions/v1alpha1ListGenerator"
  6036          },
  6037          "matrix": {
  6038            "$ref": "#/definitions/v1JSON"
  6039          },
  6040          "merge": {
  6041            "$ref": "#/definitions/v1JSON"
  6042          },
  6043          "plugin": {
  6044            "$ref": "#/definitions/v1alpha1PluginGenerator"
  6045          },
  6046          "pullRequest": {
  6047            "$ref": "#/definitions/v1alpha1PullRequestGenerator"
  6048          },
  6049          "scmProvider": {
  6050            "$ref": "#/definitions/v1alpha1SCMProviderGenerator"
  6051          },
  6052          "selector": {
  6053            "$ref": "#/definitions/v1LabelSelector"
  6054          }
  6055        }
  6056      },
  6057      "v1alpha1ApplicationSetResourceIgnoreDifferences": {
  6058        "description": "ApplicationSetResourceIgnoreDifferences configures how the ApplicationSet controller will ignore differences in live\napplications when applying changes from generated applications.",
  6059        "type": "object",
  6060        "properties": {
  6061          "jqPathExpressions": {
  6062            "description": "JQPathExpressions is a list of JQ path expressions to fields to ignore differences for.",
  6063            "type": "array",
  6064            "items": {
  6065              "type": "string"
  6066            }
  6067          },
  6068          "jsonPointers": {
  6069            "description": "JSONPointers is a list of JSON pointers to fields to ignore differences for.",
  6070            "type": "array",
  6071            "items": {
  6072              "type": "string"
  6073            }
  6074          },
  6075          "name": {
  6076            "description": "Name is the name of the application to ignore differences for. If not specified, the rule applies to all applications.",
  6077            "type": "string"
  6078          }
  6079        }
  6080      },
  6081      "v1alpha1ApplicationSetRolloutStep": {
  6082        "type": "object",
  6083        "properties": {
  6084          "matchExpressions": {
  6085            "type": "array",
  6086            "items": {
  6087              "$ref": "#/definitions/v1alpha1ApplicationMatchExpression"
  6088            }
  6089          },
  6090          "maxUpdate": {
  6091            "$ref": "#/definitions/intstrIntOrString"
  6092          }
  6093        }
  6094      },
  6095      "v1alpha1ApplicationSetRolloutStrategy": {
  6096        "type": "object",
  6097        "properties": {
  6098          "steps": {
  6099            "type": "array",
  6100            "items": {
  6101              "$ref": "#/definitions/v1alpha1ApplicationSetRolloutStep"
  6102            }
  6103          }
  6104        }
  6105      },
  6106      "v1alpha1ApplicationSetSpec": {
  6107        "description": "ApplicationSetSpec represents a class of application set state.",
  6108        "type": "object",
  6109        "properties": {
  6110          "applyNestedSelectors": {
  6111            "type": "boolean",
  6112            "title": "ApplyNestedSelectors enables selectors defined within the generators of two level-nested matrix or merge generators"
  6113          },
  6114          "generators": {
  6115            "type": "array",
  6116            "items": {
  6117              "$ref": "#/definitions/v1alpha1ApplicationSetGenerator"
  6118            }
  6119          },
  6120          "goTemplate": {
  6121            "type": "boolean"
  6122          },
  6123          "goTemplateOptions": {
  6124            "type": "array",
  6125            "items": {
  6126              "type": "string"
  6127            }
  6128          },
  6129          "ignoreApplicationDifferences": {
  6130            "type": "array",
  6131            "items": {
  6132              "$ref": "#/definitions/v1alpha1ApplicationSetResourceIgnoreDifferences"
  6133            }
  6134          },
  6135          "preservedFields": {
  6136            "$ref": "#/definitions/v1alpha1ApplicationPreservedFields"
  6137          },
  6138          "strategy": {
  6139            "$ref": "#/definitions/v1alpha1ApplicationSetStrategy"
  6140          },
  6141          "syncPolicy": {
  6142            "$ref": "#/definitions/v1alpha1ApplicationSetSyncPolicy"
  6143          },
  6144          "template": {
  6145            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  6146          },
  6147          "templatePatch": {
  6148            "type": "string"
  6149          }
  6150        }
  6151      },
  6152      "v1alpha1ApplicationSetStatus": {
  6153        "type": "object",
  6154        "title": "ApplicationSetStatus defines the observed state of ApplicationSet",
  6155        "properties": {
  6156          "applicationStatus": {
  6157            "type": "array",
  6158            "items": {
  6159              "$ref": "#/definitions/v1alpha1ApplicationSetApplicationStatus"
  6160            }
  6161          },
  6162          "conditions": {
  6163            "type": "array",
  6164            "title": "INSERT ADDITIONAL STATUS FIELD - define observed state of cluster\nImportant: Run \"make\" to regenerate code after modifying this file",
  6165            "items": {
  6166              "$ref": "#/definitions/v1alpha1ApplicationSetCondition"
  6167            }
  6168          }
  6169        }
  6170      },
  6171      "v1alpha1ApplicationSetStrategy": {
  6172        "description": "ApplicationSetStrategy configures how generated Applications are updated in sequence.",
  6173        "type": "object",
  6174        "properties": {
  6175          "rollingSync": {
  6176            "$ref": "#/definitions/v1alpha1ApplicationSetRolloutStrategy"
  6177          },
  6178          "type": {
  6179            "type": "string"
  6180          }
  6181        }
  6182      },
  6183      "v1alpha1ApplicationSetSyncPolicy": {
  6184        "description": "ApplicationSetSyncPolicy configures how generated Applications will relate to their\nApplicationSet.",
  6185        "type": "object",
  6186        "properties": {
  6187          "applicationsSync": {
  6188            "type": "string",
  6189            "title": "ApplicationsSync represents the policy applied on the generated applications. Possible values are create-only, create-update, create-delete, sync\n+kubebuilder:validation:Optional\n+kubebuilder:validation:Enum=create-only;create-update;create-delete;sync"
  6190          },
  6191          "preserveResourcesOnDeletion": {
  6192            "description": "PreserveResourcesOnDeletion will preserve resources on deletion. If PreserveResourcesOnDeletion is set to true, these Applications will not be deleted.",
  6193            "type": "boolean"
  6194          }
  6195        }
  6196      },
  6197      "v1alpha1ApplicationSetTemplate": {
  6198        "type": "object",
  6199        "title": "ApplicationSetTemplate represents argocd ApplicationSpec",
  6200        "properties": {
  6201          "metadata": {
  6202            "$ref": "#/definitions/v1alpha1ApplicationSetTemplateMeta"
  6203          },
  6204          "spec": {
  6205            "$ref": "#/definitions/v1alpha1ApplicationSpec"
  6206          }
  6207        }
  6208      },
  6209      "v1alpha1ApplicationSetTemplateMeta": {
  6210        "type": "object",
  6211        "title": "ApplicationSetTemplateMeta represents the Argo CD application fields that may\nbe used for Applications generated from the ApplicationSet (based on metav1.ObjectMeta)",
  6212        "properties": {
  6213          "annotations": {
  6214            "type": "object",
  6215            "additionalProperties": {
  6216              "type": "string"
  6217            }
  6218          },
  6219          "finalizers": {
  6220            "type": "array",
  6221            "items": {
  6222              "type": "string"
  6223            }
  6224          },
  6225          "labels": {
  6226            "type": "object",
  6227            "additionalProperties": {
  6228              "type": "string"
  6229            }
  6230          },
  6231          "name": {
  6232            "type": "string"
  6233          },
  6234          "namespace": {
  6235            "type": "string"
  6236          }
  6237        }
  6238      },
  6239      "v1alpha1ApplicationSource": {
  6240        "type": "object",
  6241        "title": "ApplicationSource contains all required information about the source of an application",
  6242        "properties": {
  6243          "chart": {
  6244            "description": "Chart is a Helm chart name, and must be specified for applications sourced from a Helm repo.",
  6245            "type": "string"
  6246          },
  6247          "directory": {
  6248            "$ref": "#/definitions/v1alpha1ApplicationSourceDirectory"
  6249          },
  6250          "helm": {
  6251            "$ref": "#/definitions/v1alpha1ApplicationSourceHelm"
  6252          },
  6253          "kustomize": {
  6254            "$ref": "#/definitions/v1alpha1ApplicationSourceKustomize"
  6255          },
  6256          "path": {
  6257            "description": "Path is a directory path within the Git repository, and is only valid for applications sourced from Git.",
  6258            "type": "string"
  6259          },
  6260          "plugin": {
  6261            "$ref": "#/definitions/v1alpha1ApplicationSourcePlugin"
  6262          },
  6263          "ref": {
  6264            "description": "Ref is reference to another source within sources field. This field will not be used if used with a `source` tag.",
  6265            "type": "string"
  6266          },
  6267          "repoURL": {
  6268            "type": "string",
  6269            "title": "RepoURL is the URL to the repository (Git or Helm) that contains the application manifests"
  6270          },
  6271          "targetRevision": {
  6272            "description": "TargetRevision defines the revision of the source to sync the application to.\nIn case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD.\nIn case of Helm, this is a semver tag for the Chart's version.",
  6273            "type": "string"
  6274          }
  6275        }
  6276      },
  6277      "v1alpha1ApplicationSourceDirectory": {
  6278        "type": "object",
  6279        "title": "ApplicationSourceDirectory holds options for applications of type plain YAML or Jsonnet",
  6280        "properties": {
  6281          "exclude": {
  6282            "type": "string",
  6283            "title": "Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation"
  6284          },
  6285          "include": {
  6286            "type": "string",
  6287            "title": "Include contains a glob pattern to match paths against that should be explicitly included during manifest generation"
  6288          },
  6289          "jsonnet": {
  6290            "$ref": "#/definitions/v1alpha1ApplicationSourceJsonnet"
  6291          },
  6292          "recurse": {
  6293            "type": "boolean",
  6294            "title": "Recurse specifies whether to scan a directory recursively for manifests"
  6295          }
  6296        }
  6297      },
  6298      "v1alpha1ApplicationSourceHelm": {
  6299        "type": "object",
  6300        "title": "ApplicationSourceHelm holds helm specific options",
  6301        "properties": {
  6302          "fileParameters": {
  6303            "type": "array",
  6304            "title": "FileParameters are file parameters to the helm template",
  6305            "items": {
  6306              "$ref": "#/definitions/v1alpha1HelmFileParameter"
  6307            }
  6308          },
  6309          "ignoreMissingValueFiles": {
  6310            "type": "boolean",
  6311            "title": "IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values"
  6312          },
  6313          "parameters": {
  6314            "type": "array",
  6315            "title": "Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation",
  6316            "items": {
  6317              "$ref": "#/definitions/v1alpha1HelmParameter"
  6318            }
  6319          },
  6320          "passCredentials": {
  6321            "type": "boolean",
  6322            "title": "PassCredentials pass credentials to all domains (Helm's --pass-credentials)"
  6323          },
  6324          "releaseName": {
  6325            "type": "string",
  6326            "title": "ReleaseName is the Helm release name to use. If omitted it will use the application name"
  6327          },
  6328          "skipCrds": {
  6329            "type": "boolean",
  6330            "title": "SkipCrds skips custom resource definition installation step (Helm's --skip-crds)"
  6331          },
  6332          "valueFiles": {
  6333            "type": "array",
  6334            "title": "ValuesFiles is a list of Helm value files to use when generating a template",
  6335            "items": {
  6336              "type": "string"
  6337            }
  6338          },
  6339          "values": {
  6340            "type": "string",
  6341            "title": "Values specifies Helm values to be passed to helm template, typically defined as a block. ValuesObject takes precedence over Values, so use one or the other.\n+patchStrategy=replace"
  6342          },
  6343          "valuesObject": {
  6344            "$ref": "#/definitions/runtimeRawExtension"
  6345          },
  6346          "version": {
  6347            "type": "string",
  6348            "title": "Version is the Helm version to use for templating (\"3\")"
  6349          }
  6350        }
  6351      },
  6352      "v1alpha1ApplicationSourceJsonnet": {
  6353        "type": "object",
  6354        "title": "ApplicationSourceJsonnet holds options specific to applications of type Jsonnet",
  6355        "properties": {
  6356          "extVars": {
  6357            "type": "array",
  6358            "title": "ExtVars is a list of Jsonnet External Variables",
  6359            "items": {
  6360              "$ref": "#/definitions/v1alpha1JsonnetVar"
  6361            }
  6362          },
  6363          "libs": {
  6364            "type": "array",
  6365            "title": "Additional library search dirs",
  6366            "items": {
  6367              "type": "string"
  6368            }
  6369          },
  6370          "tlas": {
  6371            "type": "array",
  6372            "title": "TLAS is a list of Jsonnet Top-level Arguments",
  6373            "items": {
  6374              "$ref": "#/definitions/v1alpha1JsonnetVar"
  6375            }
  6376          }
  6377        }
  6378      },
  6379      "v1alpha1ApplicationSourceKustomize": {
  6380        "type": "object",
  6381        "title": "ApplicationSourceKustomize holds options specific to an Application source specific to Kustomize",
  6382        "properties": {
  6383          "commonAnnotations": {
  6384            "type": "object",
  6385            "title": "CommonAnnotations is a list of additional annotations to add to rendered manifests",
  6386            "additionalProperties": {
  6387              "type": "string"
  6388            }
  6389          },
  6390          "commonAnnotationsEnvsubst": {
  6391            "type": "boolean",
  6392            "title": "CommonAnnotationsEnvsubst specifies whether to apply env variables substitution for annotation values"
  6393          },
  6394          "commonLabels": {
  6395            "type": "object",
  6396            "title": "CommonLabels is a list of additional labels to add to rendered manifests",
  6397            "additionalProperties": {
  6398              "type": "string"
  6399            }
  6400          },
  6401          "components": {
  6402            "type": "array",
  6403            "title": "Components specifies a list of kustomize components to add to the kustomization before building",
  6404            "items": {
  6405              "type": "string"
  6406            }
  6407          },
  6408          "forceCommonAnnotations": {
  6409            "type": "boolean",
  6410            "title": "ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps"
  6411          },
  6412          "forceCommonLabels": {
  6413            "type": "boolean",
  6414            "title": "ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps"
  6415          },
  6416          "images": {
  6417            "type": "array",
  6418            "title": "Images is a list of Kustomize image override specifications",
  6419            "items": {
  6420              "type": "string"
  6421            }
  6422          },
  6423          "namePrefix": {
  6424            "type": "string",
  6425            "title": "NamePrefix is a prefix appended to resources for Kustomize apps"
  6426          },
  6427          "nameSuffix": {
  6428            "type": "string",
  6429            "title": "NameSuffix is a suffix appended to resources for Kustomize apps"
  6430          },
  6431          "namespace": {
  6432            "type": "string",
  6433            "title": "Namespace sets the namespace that Kustomize adds to all resources"
  6434          },
  6435          "patches": {
  6436            "type": "array",
  6437            "title": "Patches is a list of Kustomize patches",
  6438            "items": {
  6439              "$ref": "#/definitions/v1alpha1KustomizePatch"
  6440            }
  6441          },
  6442          "replicas": {
  6443            "type": "array",
  6444            "title": "Replicas is a list of Kustomize Replicas override specifications",
  6445            "items": {
  6446              "$ref": "#/definitions/v1alpha1KustomizeReplica"
  6447            }
  6448          },
  6449          "version": {
  6450            "type": "string",
  6451            "title": "Version controls which version of Kustomize to use for rendering manifests"
  6452          }
  6453        }
  6454      },
  6455      "v1alpha1ApplicationSourcePlugin": {
  6456        "type": "object",
  6457        "title": "ApplicationSourcePlugin holds options specific to config management plugins",
  6458        "properties": {
  6459          "env": {
  6460            "type": "array",
  6461            "items": {
  6462              "$ref": "#/definitions/applicationv1alpha1EnvEntry"
  6463            }
  6464          },
  6465          "name": {
  6466            "type": "string"
  6467          },
  6468          "parameters": {
  6469            "type": "array",
  6470            "items": {
  6471              "$ref": "#/definitions/v1alpha1ApplicationSourcePluginParameter"
  6472            }
  6473          }
  6474        }
  6475      },
  6476      "v1alpha1ApplicationSourcePluginParameter": {
  6477        "type": "object",
  6478        "properties": {
  6479          "array": {
  6480            "description": "Array is the value of an array type parameter.",
  6481            "type": "array",
  6482            "items": {
  6483              "type": "string"
  6484            }
  6485          },
  6486          "map": {
  6487            "description": "Map is the value of a map type parameter.",
  6488            "type": "object",
  6489            "additionalProperties": {
  6490              "type": "string"
  6491            }
  6492          },
  6493          "name": {
  6494            "description": "Name is the name identifying a parameter.",
  6495            "type": "string"
  6496          },
  6497          "string": {
  6498            "description": "String_ is the value of a string type parameter.",
  6499            "type": "string"
  6500          }
  6501        }
  6502      },
  6503      "v1alpha1ApplicationSpec": {
  6504        "description": "ApplicationSpec represents desired application state. Contains link to repository with application definition and additional parameters link definition revision.",
  6505        "type": "object",
  6506        "properties": {
  6507          "destination": {
  6508            "$ref": "#/definitions/v1alpha1ApplicationDestination"
  6509          },
  6510          "ignoreDifferences": {
  6511            "type": "array",
  6512            "title": "IgnoreDifferences is a list of resources and their fields which should be ignored during comparison",
  6513            "items": {
  6514              "$ref": "#/definitions/v1alpha1ResourceIgnoreDifferences"
  6515            }
  6516          },
  6517          "info": {
  6518            "type": "array",
  6519            "title": "Info contains a list of information (URLs, email addresses, and plain text) that relates to the application",
  6520            "items": {
  6521              "$ref": "#/definitions/v1alpha1Info"
  6522            }
  6523          },
  6524          "project": {
  6525            "description": "Project is a reference to the project this application belongs to.\nThe empty string means that application belongs to the 'default' project.",
  6526            "type": "string"
  6527          },
  6528          "revisionHistoryLimit": {
  6529            "description": "RevisionHistoryLimit limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions.\nThis should only be changed in exceptional circumstances.\nSetting to zero will store no history. This will reduce storage used.\nIncreasing will increase the space used to store the history, so we do not recommend increasing it.\nDefault is 10.",
  6530            "type": "integer",
  6531            "format": "int64"
  6532          },
  6533          "source": {
  6534            "$ref": "#/definitions/v1alpha1ApplicationSource"
  6535          },
  6536          "sources": {
  6537            "type": "array",
  6538            "title": "Sources is a reference to the location of the application's manifests or chart",
  6539            "items": {
  6540              "$ref": "#/definitions/v1alpha1ApplicationSource"
  6541            }
  6542          },
  6543          "syncPolicy": {
  6544            "$ref": "#/definitions/v1alpha1SyncPolicy"
  6545          }
  6546        }
  6547      },
  6548      "v1alpha1ApplicationStatus": {
  6549        "type": "object",
  6550        "title": "ApplicationStatus contains status information for the application",
  6551        "properties": {
  6552          "conditions": {
  6553            "type": "array",
  6554            "title": "Conditions is a list of currently observed application conditions",
  6555            "items": {
  6556              "$ref": "#/definitions/v1alpha1ApplicationCondition"
  6557            }
  6558          },
  6559          "controllerNamespace": {
  6560            "type": "string",
  6561            "title": "ControllerNamespace indicates the namespace in which the application controller is located"
  6562          },
  6563          "health": {
  6564            "$ref": "#/definitions/v1alpha1HealthStatus"
  6565          },
  6566          "history": {
  6567            "type": "array",
  6568            "title": "History contains information about the application's sync history",
  6569            "items": {
  6570              "$ref": "#/definitions/v1alpha1RevisionHistory"
  6571            }
  6572          },
  6573          "observedAt": {
  6574            "$ref": "#/definitions/v1Time"
  6575          },
  6576          "operationState": {
  6577            "$ref": "#/definitions/v1alpha1OperationState"
  6578          },
  6579          "reconciledAt": {
  6580            "$ref": "#/definitions/v1Time"
  6581          },
  6582          "resourceHealthSource": {
  6583            "type": "string",
  6584            "title": "ResourceHealthSource indicates where the resource health status is stored: inline if not set or appTree"
  6585          },
  6586          "resources": {
  6587            "type": "array",
  6588            "title": "Resources is a list of Kubernetes resources managed by this application",
  6589            "items": {
  6590              "$ref": "#/definitions/v1alpha1ResourceStatus"
  6591            }
  6592          },
  6593          "sourceType": {
  6594            "type": "string",
  6595            "title": "SourceType specifies the type of this application"
  6596          },
  6597          "sourceTypes": {
  6598            "type": "array",
  6599            "title": "SourceTypes specifies the type of the sources included in the application",
  6600            "items": {
  6601              "type": "string"
  6602            }
  6603          },
  6604          "summary": {
  6605            "$ref": "#/definitions/v1alpha1ApplicationSummary"
  6606          },
  6607          "sync": {
  6608            "$ref": "#/definitions/v1alpha1SyncStatus"
  6609          }
  6610        }
  6611      },
  6612      "v1alpha1ApplicationSummary": {
  6613        "type": "object",
  6614        "title": "ApplicationSummary contains information about URLs and container images used by an application",
  6615        "properties": {
  6616          "externalURLs": {
  6617            "description": "ExternalURLs holds all external URLs of application child resources.",
  6618            "type": "array",
  6619            "items": {
  6620              "type": "string"
  6621            }
  6622          },
  6623          "images": {
  6624            "description": "Images holds all images of application child resources.",
  6625            "type": "array",
  6626            "items": {
  6627              "type": "string"
  6628            }
  6629          }
  6630        }
  6631      },
  6632      "v1alpha1ApplicationTree": {
  6633        "type": "object",
  6634        "title": "ApplicationTree holds nodes which belongs to the application\nTODO: describe purpose of this type",
  6635        "properties": {
  6636          "hosts": {
  6637            "type": "array",
  6638            "title": "Hosts holds list of Kubernetes nodes that run application related pods",
  6639            "items": {
  6640              "$ref": "#/definitions/v1alpha1HostInfo"
  6641            }
  6642          },
  6643          "nodes": {
  6644            "description": "Nodes contains list of nodes which either directly managed by the application and children of directly managed nodes.",
  6645            "type": "array",
  6646            "items": {
  6647              "$ref": "#/definitions/v1alpha1ResourceNode"
  6648            }
  6649          },
  6650          "orphanedNodes": {
  6651            "description": "OrphanedNodes contains if or orphaned nodes: nodes which are not managed by the app but in the same namespace. List is populated only if orphaned resources enabled in app project.",
  6652            "type": "array",
  6653            "items": {
  6654              "$ref": "#/definitions/v1alpha1ResourceNode"
  6655            }
  6656          }
  6657        }
  6658      },
  6659      "v1alpha1ApplicationWatchEvent": {
  6660        "description": "ApplicationWatchEvent contains information about application change.",
  6661        "type": "object",
  6662        "properties": {
  6663          "application": {
  6664            "$ref": "#/definitions/v1alpha1Application"
  6665          },
  6666          "type": {
  6667            "type": "string"
  6668          }
  6669        }
  6670      },
  6671      "v1alpha1Backoff": {
  6672        "type": "object",
  6673        "title": "Backoff is the backoff strategy to use on subsequent retries for failing syncs",
  6674        "properties": {
  6675          "duration": {
  6676            "type": "string",
  6677            "title": "Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. \"2m\", \"1h\")"
  6678          },
  6679          "factor": {
  6680            "type": "integer",
  6681            "format": "int64",
  6682            "title": "Factor is a factor to multiply the base duration after each failed retry"
  6683          },
  6684          "maxDuration": {
  6685            "type": "string",
  6686            "title": "MaxDuration is the maximum amount of time allowed for the backoff strategy"
  6687          }
  6688        }
  6689      },
  6690      "v1alpha1BasicAuthBitbucketServer": {
  6691        "description": "BasicAuthBitbucketServer defines the username/(password or personal access token) for Basic auth.",
  6692        "type": "object",
  6693        "properties": {
  6694          "passwordRef": {
  6695            "$ref": "#/definitions/v1alpha1SecretRef"
  6696          },
  6697          "username": {
  6698            "type": "string",
  6699            "title": "Username for Basic auth"
  6700          }
  6701        }
  6702      },
  6703      "v1alpha1BearerTokenBitbucketCloud": {
  6704        "description": "BearerTokenBitbucketCloud defines the Bearer token for BitBucket AppToken auth.",
  6705        "type": "object",
  6706        "properties": {
  6707          "tokenRef": {
  6708            "$ref": "#/definitions/v1alpha1SecretRef"
  6709          }
  6710        }
  6711      },
  6712      "v1alpha1ChartDetails": {
  6713        "type": "object",
  6714        "title": "ChartDetails contains helm chart metadata for a specific version",
  6715        "properties": {
  6716          "description": {
  6717            "type": "string"
  6718          },
  6719          "home": {
  6720            "type": "string",
  6721            "title": "The URL of this projects home page, e.g. \"http://example.com\""
  6722          },
  6723          "maintainers": {
  6724            "type": "array",
  6725            "title": "List of maintainer details, name and email, e.g. [\"John Doe <john_doe@my-company.com>\"]",
  6726            "items": {
  6727              "type": "string"
  6728            }
  6729          }
  6730        }
  6731      },
  6732      "v1alpha1Cluster": {
  6733        "type": "object",
  6734        "title": "Cluster is the definition of a cluster resource",
  6735        "properties": {
  6736          "annotations": {
  6737            "type": "object",
  6738            "title": "Annotations for cluster secret metadata",
  6739            "additionalProperties": {
  6740              "type": "string"
  6741            }
  6742          },
  6743          "clusterResources": {
  6744            "description": "Indicates if cluster level resources should be managed. This setting is used only if cluster is connected in a namespaced mode.",
  6745            "type": "boolean"
  6746          },
  6747          "config": {
  6748            "$ref": "#/definitions/v1alpha1ClusterConfig"
  6749          },
  6750          "connectionState": {
  6751            "$ref": "#/definitions/v1alpha1ConnectionState"
  6752          },
  6753          "info": {
  6754            "$ref": "#/definitions/v1alpha1ClusterInfo"
  6755          },
  6756          "labels": {
  6757            "type": "object",
  6758            "title": "Labels for cluster secret metadata",
  6759            "additionalProperties": {
  6760              "type": "string"
  6761            }
  6762          },
  6763          "name": {
  6764            "type": "string",
  6765            "title": "Name of the cluster. If omitted, will use the server address"
  6766          },
  6767          "namespaces": {
  6768            "description": "Holds list of namespaces which are accessible in that cluster. Cluster level resources will be ignored if namespace list is not empty.",
  6769            "type": "array",
  6770            "items": {
  6771              "type": "string"
  6772            }
  6773          },
  6774          "project": {
  6775            "type": "string",
  6776            "title": "Reference between project and cluster that allow you automatically to be added as item inside Destinations project entity"
  6777          },
  6778          "refreshRequestedAt": {
  6779            "$ref": "#/definitions/v1Time"
  6780          },
  6781          "server": {
  6782            "type": "string",
  6783            "title": "Server is the API server URL of the Kubernetes cluster"
  6784          },
  6785          "serverVersion": {
  6786            "type": "string",
  6787            "title": "DEPRECATED: use Info.ServerVersion field instead.\nThe server version"
  6788          },
  6789          "shard": {
  6790            "description": "Shard contains optional shard number. Calculated on the fly by the application controller if not specified.",
  6791            "type": "integer",
  6792            "format": "int64"
  6793          }
  6794        }
  6795      },
  6796      "v1alpha1ClusterCacheInfo": {
  6797        "type": "object",
  6798        "title": "ClusterCacheInfo contains information about the cluster cache",
  6799        "properties": {
  6800          "apisCount": {
  6801            "type": "integer",
  6802            "format": "int64",
  6803            "title": "APIsCount holds number of observed Kubernetes API count"
  6804          },
  6805          "lastCacheSyncTime": {
  6806            "$ref": "#/definitions/v1Time"
  6807          },
  6808          "resourcesCount": {
  6809            "type": "integer",
  6810            "format": "int64",
  6811            "title": "ResourcesCount holds number of observed Kubernetes resources"
  6812          }
  6813        }
  6814      },
  6815      "v1alpha1ClusterConfig": {
  6816        "description": "ClusterConfig is the configuration attributes. This structure is subset of the go-client\nrest.Config with annotations added for marshalling.",
  6817        "type": "object",
  6818        "properties": {
  6819          "awsAuthConfig": {
  6820            "$ref": "#/definitions/v1alpha1AWSAuthConfig"
  6821          },
  6822          "bearerToken": {
  6823            "description": "Server requires Bearer authentication. This client will not attempt to use\nrefresh tokens for an OAuth2 flow.\nTODO: demonstrate an OAuth2 compatible client.",
  6824            "type": "string"
  6825          },
  6826          "execProviderConfig": {
  6827            "$ref": "#/definitions/v1alpha1ExecProviderConfig"
  6828          },
  6829          "password": {
  6830            "type": "string"
  6831          },
  6832          "tlsClientConfig": {
  6833            "$ref": "#/definitions/v1alpha1TLSClientConfig"
  6834          },
  6835          "username": {
  6836            "type": "string",
  6837            "title": "Server requires Basic authentication"
  6838          }
  6839        }
  6840      },
  6841      "v1alpha1ClusterGenerator": {
  6842        "description": "ClusterGenerator defines a generator to match against clusters registered with ArgoCD.",
  6843        "type": "object",
  6844        "properties": {
  6845          "selector": {
  6846            "$ref": "#/definitions/v1LabelSelector"
  6847          },
  6848          "template": {
  6849            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  6850          },
  6851          "values": {
  6852            "type": "object",
  6853            "title": "Values contains key/value pairs which are passed directly as parameters to the template",
  6854            "additionalProperties": {
  6855              "type": "string"
  6856            }
  6857          }
  6858        }
  6859      },
  6860      "v1alpha1ClusterInfo": {
  6861        "type": "object",
  6862        "title": "ClusterInfo contains information about the cluster",
  6863        "properties": {
  6864          "apiVersions": {
  6865            "type": "array",
  6866            "title": "APIVersions contains list of API versions supported by the cluster",
  6867            "items": {
  6868              "type": "string"
  6869            }
  6870          },
  6871          "applicationsCount": {
  6872            "type": "integer",
  6873            "format": "int64",
  6874            "title": "ApplicationsCount is the number of applications managed by Argo CD on the cluster"
  6875          },
  6876          "cacheInfo": {
  6877            "$ref": "#/definitions/v1alpha1ClusterCacheInfo"
  6878          },
  6879          "connectionState": {
  6880            "$ref": "#/definitions/v1alpha1ConnectionState"
  6881          },
  6882          "serverVersion": {
  6883            "type": "string",
  6884            "title": "ServerVersion contains information about the Kubernetes version of the cluster"
  6885          }
  6886        }
  6887      },
  6888      "v1alpha1ClusterList": {
  6889        "description": "ClusterList is a collection of Clusters.",
  6890        "type": "object",
  6891        "properties": {
  6892          "items": {
  6893            "type": "array",
  6894            "items": {
  6895              "$ref": "#/definitions/v1alpha1Cluster"
  6896            }
  6897          },
  6898          "metadata": {
  6899            "$ref": "#/definitions/v1ListMeta"
  6900          }
  6901        }
  6902      },
  6903      "v1alpha1Command": {
  6904        "type": "object",
  6905        "title": "Command holds binary path and arguments list",
  6906        "properties": {
  6907          "args": {
  6908            "type": "array",
  6909            "items": {
  6910              "type": "string"
  6911            }
  6912          },
  6913          "command": {
  6914            "type": "array",
  6915            "items": {
  6916              "type": "string"
  6917            }
  6918          }
  6919        }
  6920      },
  6921      "v1alpha1ComparedTo": {
  6922        "type": "object",
  6923        "title": "ComparedTo contains application source and target which was used for resources comparison",
  6924        "properties": {
  6925          "destination": {
  6926            "$ref": "#/definitions/v1alpha1ApplicationDestination"
  6927          },
  6928          "ignoreDifferences": {
  6929            "type": "array",
  6930            "title": "IgnoreDifferences is a reference to the application's ignored differences used for comparison",
  6931            "items": {
  6932              "$ref": "#/definitions/v1alpha1ResourceIgnoreDifferences"
  6933            }
  6934          },
  6935          "source": {
  6936            "$ref": "#/definitions/v1alpha1ApplicationSource"
  6937          },
  6938          "sources": {
  6939            "type": "array",
  6940            "title": "Sources is a reference to the application's multiple sources used for comparison",
  6941            "items": {
  6942              "$ref": "#/definitions/v1alpha1ApplicationSource"
  6943            }
  6944          }
  6945        }
  6946      },
  6947      "v1alpha1ConfigManagementPlugin": {
  6948        "type": "object",
  6949        "title": "ConfigManagementPlugin contains config management plugin configuration",
  6950        "properties": {
  6951          "generate": {
  6952            "$ref": "#/definitions/v1alpha1Command"
  6953          },
  6954          "init": {
  6955            "$ref": "#/definitions/v1alpha1Command"
  6956          },
  6957          "lockRepo": {
  6958            "type": "boolean"
  6959          },
  6960          "name": {
  6961            "type": "string"
  6962          }
  6963        }
  6964      },
  6965      "v1alpha1ConnectionState": {
  6966        "type": "object",
  6967        "title": "ConnectionState contains information about remote resource connection state, currently used for clusters and repositories",
  6968        "properties": {
  6969          "attemptedAt": {
  6970            "$ref": "#/definitions/v1Time"
  6971          },
  6972          "message": {
  6973            "type": "string",
  6974            "title": "Message contains human readable information about the connection status"
  6975          },
  6976          "status": {
  6977            "type": "string",
  6978            "title": "Status contains the current status indicator for the connection"
  6979          }
  6980        }
  6981      },
  6982      "v1alpha1DuckTypeGenerator": {
  6983        "description": "DuckType defines a generator to match against clusters registered with ArgoCD.",
  6984        "type": "object",
  6985        "properties": {
  6986          "configMapRef": {
  6987            "type": "string",
  6988            "title": "ConfigMapRef is a ConfigMap with the duck type definitions needed to retrieve the data\n             this includes apiVersion(group/version), kind, matchKey and validation settings\nName is the resource name of the kind, group and version, defined in the ConfigMapRef\nRequeueAfterSeconds is how long before the duckType will be rechecked for a change"
  6989          },
  6990          "labelSelector": {
  6991            "$ref": "#/definitions/v1LabelSelector"
  6992          },
  6993          "name": {
  6994            "type": "string"
  6995          },
  6996          "requeueAfterSeconds": {
  6997            "type": "integer",
  6998            "format": "int64"
  6999          },
  7000          "template": {
  7001            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  7002          },
  7003          "values": {
  7004            "type": "object",
  7005            "title": "Values contains key/value pairs which are passed directly as parameters to the template",
  7006            "additionalProperties": {
  7007              "type": "string"
  7008            }
  7009          }
  7010        }
  7011      },
  7012      "v1alpha1ExecProviderConfig": {
  7013        "type": "object",
  7014        "title": "ExecProviderConfig is config used to call an external command to perform cluster authentication\nSee: https://godoc.org/k8s.io/client-go/tools/clientcmd/api#ExecConfig",
  7015        "properties": {
  7016          "apiVersion": {
  7017            "type": "string",
  7018            "title": "Preferred input version of the ExecInfo"
  7019          },
  7020          "args": {
  7021            "type": "array",
  7022            "title": "Arguments to pass to the command when executing it",
  7023            "items": {
  7024              "type": "string"
  7025            }
  7026          },
  7027          "command": {
  7028            "type": "string",
  7029            "title": "Command to execute"
  7030          },
  7031          "env": {
  7032            "type": "object",
  7033            "title": "Env defines additional environment variables to expose to the process",
  7034            "additionalProperties": {
  7035              "type": "string"
  7036            }
  7037          },
  7038          "installHint": {
  7039            "type": "string",
  7040            "title": "This text is shown to the user when the executable doesn't seem to be present"
  7041          }
  7042        }
  7043      },
  7044      "v1alpha1GitDirectoryGeneratorItem": {
  7045        "type": "object",
  7046        "properties": {
  7047          "exclude": {
  7048            "type": "boolean"
  7049          },
  7050          "path": {
  7051            "type": "string"
  7052          }
  7053        }
  7054      },
  7055      "v1alpha1GitFileGeneratorItem": {
  7056        "type": "object",
  7057        "properties": {
  7058          "path": {
  7059            "type": "string"
  7060          }
  7061        }
  7062      },
  7063      "v1alpha1GitGenerator": {
  7064        "type": "object",
  7065        "properties": {
  7066          "directories": {
  7067            "type": "array",
  7068            "items": {
  7069              "$ref": "#/definitions/v1alpha1GitDirectoryGeneratorItem"
  7070            }
  7071          },
  7072          "files": {
  7073            "type": "array",
  7074            "items": {
  7075              "$ref": "#/definitions/v1alpha1GitFileGeneratorItem"
  7076            }
  7077          },
  7078          "pathParamPrefix": {
  7079            "type": "string"
  7080          },
  7081          "repoURL": {
  7082            "type": "string"
  7083          },
  7084          "requeueAfterSeconds": {
  7085            "type": "integer",
  7086            "format": "int64"
  7087          },
  7088          "revision": {
  7089            "type": "string"
  7090          },
  7091          "template": {
  7092            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  7093          },
  7094          "values": {
  7095            "type": "object",
  7096            "title": "Values contains key/value pairs which are passed directly as parameters to the template",
  7097            "additionalProperties": {
  7098              "type": "string"
  7099            }
  7100          }
  7101        }
  7102      },
  7103      "v1alpha1GnuPGPublicKey": {
  7104        "type": "object",
  7105        "title": "GnuPGPublicKey is a representation of a GnuPG public key",
  7106        "properties": {
  7107          "fingerprint": {
  7108            "type": "string",
  7109            "title": "Fingerprint is the fingerprint of the key"
  7110          },
  7111          "keyData": {
  7112            "type": "string",
  7113            "title": "KeyData holds the raw key data, in base64 encoded format"
  7114          },
  7115          "keyID": {
  7116            "type": "string",
  7117            "title": "KeyID specifies the key ID, in hexadecimal string format"
  7118          },
  7119          "owner": {
  7120            "type": "string",
  7121            "title": "Owner holds the owner identification, e.g. a name and e-mail address"
  7122          },
  7123          "subType": {
  7124            "type": "string",
  7125            "title": "SubType holds the key's sub type (e.g. rsa4096)"
  7126          },
  7127          "trust": {
  7128            "type": "string",
  7129            "title": "Trust holds the level of trust assigned to this key"
  7130          }
  7131        }
  7132      },
  7133      "v1alpha1GnuPGPublicKeyList": {
  7134        "type": "object",
  7135        "title": "GnuPGPublicKeyList is a collection of GnuPGPublicKey objects",
  7136        "properties": {
  7137          "items": {
  7138            "type": "array",
  7139            "items": {
  7140              "$ref": "#/definitions/v1alpha1GnuPGPublicKey"
  7141            }
  7142          },
  7143          "metadata": {
  7144            "$ref": "#/definitions/v1ListMeta"
  7145          }
  7146        }
  7147      },
  7148      "v1alpha1HealthStatus": {
  7149        "type": "object",
  7150        "title": "HealthStatus contains information about the currently observed health state of an application or resource",
  7151        "properties": {
  7152          "message": {
  7153            "type": "string",
  7154            "title": "Message is a human-readable informational message describing the health status"
  7155          },
  7156          "status": {
  7157            "type": "string",
  7158            "title": "Status holds the status code of the application or resource"
  7159          }
  7160        }
  7161      },
  7162      "v1alpha1HelmFileParameter": {
  7163        "type": "object",
  7164        "title": "HelmFileParameter is a file parameter that's passed to helm template during manifest generation",
  7165        "properties": {
  7166          "name": {
  7167            "type": "string",
  7168            "title": "Name is the name of the Helm parameter"
  7169          },
  7170          "path": {
  7171            "type": "string",
  7172            "title": "Path is the path to the file containing the values for the Helm parameter"
  7173          }
  7174        }
  7175      },
  7176      "v1alpha1HelmParameter": {
  7177        "type": "object",
  7178        "title": "HelmParameter is a parameter that's passed to helm template during manifest generation",
  7179        "properties": {
  7180          "forceString": {
  7181            "type": "boolean",
  7182            "title": "ForceString determines whether to tell Helm to interpret booleans and numbers as strings"
  7183          },
  7184          "name": {
  7185            "type": "string",
  7186            "title": "Name is the name of the Helm parameter"
  7187          },
  7188          "value": {
  7189            "type": "string",
  7190            "title": "Value is the value for the Helm parameter"
  7191          }
  7192        }
  7193      },
  7194      "v1alpha1HostInfo": {
  7195        "type": "object",
  7196        "title": "HostInfo holds host name and resources metrics\nTODO: describe purpose of this type\nTODO: describe members of this type",
  7197        "properties": {
  7198          "name": {
  7199            "type": "string"
  7200          },
  7201          "resourcesInfo": {
  7202            "type": "array",
  7203            "items": {
  7204              "$ref": "#/definitions/v1alpha1HostResourceInfo"
  7205            }
  7206          },
  7207          "systemInfo": {
  7208            "$ref": "#/definitions/v1NodeSystemInfo"
  7209          }
  7210        }
  7211      },
  7212      "v1alpha1HostResourceInfo": {
  7213        "type": "object",
  7214        "title": "TODO: describe this type",
  7215        "properties": {
  7216          "capacity": {
  7217            "type": "integer",
  7218            "format": "int64"
  7219          },
  7220          "requestedByApp": {
  7221            "type": "integer",
  7222            "format": "int64"
  7223          },
  7224          "requestedByNeighbors": {
  7225            "type": "integer",
  7226            "format": "int64"
  7227          },
  7228          "resourceName": {
  7229            "type": "string"
  7230          }
  7231        }
  7232      },
  7233      "v1alpha1Info": {
  7234        "type": "object",
  7235        "properties": {
  7236          "name": {
  7237            "type": "string"
  7238          },
  7239          "value": {
  7240            "type": "string"
  7241          }
  7242        }
  7243      },
  7244      "v1alpha1InfoItem": {
  7245        "type": "object",
  7246        "title": "InfoItem contains arbitrary, human readable information about an application",
  7247        "properties": {
  7248          "name": {
  7249            "description": "Name is a human readable title for this piece of information.",
  7250            "type": "string"
  7251          },
  7252          "value": {
  7253            "description": "Value is human readable content.",
  7254            "type": "string"
  7255          }
  7256        }
  7257      },
  7258      "v1alpha1JWTToken": {
  7259        "type": "object",
  7260        "title": "JWTToken holds the issuedAt and expiresAt values of a token",
  7261        "properties": {
  7262          "exp": {
  7263            "type": "integer",
  7264            "format": "int64"
  7265          },
  7266          "iat": {
  7267            "type": "integer",
  7268            "format": "int64"
  7269          },
  7270          "id": {
  7271            "type": "string"
  7272          }
  7273        }
  7274      },
  7275      "v1alpha1JWTTokens": {
  7276        "type": "object",
  7277        "title": "JWTTokens represents a list of JWT tokens",
  7278        "properties": {
  7279          "items": {
  7280            "type": "array",
  7281            "items": {
  7282              "$ref": "#/definitions/v1alpha1JWTToken"
  7283            }
  7284          }
  7285        }
  7286      },
  7287      "v1alpha1JsonnetVar": {
  7288        "type": "object",
  7289        "title": "JsonnetVar represents a variable to be passed to jsonnet during manifest generation",
  7290        "properties": {
  7291          "code": {
  7292            "type": "boolean"
  7293          },
  7294          "name": {
  7295            "type": "string"
  7296          },
  7297          "value": {
  7298            "type": "string"
  7299          }
  7300        }
  7301      },
  7302      "v1alpha1KnownTypeField": {
  7303        "type": "object",
  7304        "title": "KnownTypeField contains mapping between CRD field and known Kubernetes type.\nThis is mainly used for unit conversion in unknown resources (e.g. 0.1 == 100mi)\nTODO: Describe the members of this type",
  7305        "properties": {
  7306          "field": {
  7307            "type": "string"
  7308          },
  7309          "type": {
  7310            "type": "string"
  7311          }
  7312        }
  7313      },
  7314      "v1alpha1KustomizeGvk": {
  7315        "type": "object",
  7316        "properties": {
  7317          "group": {
  7318            "type": "string"
  7319          },
  7320          "kind": {
  7321            "type": "string"
  7322          },
  7323          "version": {
  7324            "type": "string"
  7325          }
  7326        }
  7327      },
  7328      "v1alpha1KustomizeOptions": {
  7329        "type": "object",
  7330        "title": "KustomizeOptions are options for kustomize to use when building manifests",
  7331        "properties": {
  7332          "binaryPath": {
  7333            "type": "string",
  7334            "title": "BinaryPath holds optional path to kustomize binary"
  7335          },
  7336          "buildOptions": {
  7337            "type": "string",
  7338            "title": "BuildOptions is a string of build parameters to use when calling `kustomize build`"
  7339          }
  7340        }
  7341      },
  7342      "v1alpha1KustomizePatch": {
  7343        "type": "object",
  7344        "properties": {
  7345          "options": {
  7346            "type": "object",
  7347            "additionalProperties": {
  7348              "type": "boolean"
  7349            }
  7350          },
  7351          "patch": {
  7352            "type": "string"
  7353          },
  7354          "path": {
  7355            "type": "string"
  7356          },
  7357          "target": {
  7358            "$ref": "#/definitions/v1alpha1KustomizeSelector"
  7359          }
  7360        }
  7361      },
  7362      "v1alpha1KustomizeReplica": {
  7363        "type": "object",
  7364        "properties": {
  7365          "count": {
  7366            "$ref": "#/definitions/intstrIntOrString"
  7367          },
  7368          "name": {
  7369            "type": "string",
  7370            "title": "Name of Deployment or StatefulSet"
  7371          }
  7372        }
  7373      },
  7374      "v1alpha1KustomizeResId": {
  7375        "type": "object",
  7376        "properties": {
  7377          "gvk": {
  7378            "$ref": "#/definitions/v1alpha1KustomizeGvk"
  7379          },
  7380          "name": {
  7381            "type": "string"
  7382          },
  7383          "namespace": {
  7384            "type": "string"
  7385          }
  7386        }
  7387      },
  7388      "v1alpha1KustomizeSelector": {
  7389        "type": "object",
  7390        "properties": {
  7391          "annotationSelector": {
  7392            "type": "string"
  7393          },
  7394          "labelSelector": {
  7395            "type": "string"
  7396          },
  7397          "resId": {
  7398            "$ref": "#/definitions/v1alpha1KustomizeResId"
  7399          }
  7400        }
  7401      },
  7402      "v1alpha1ListGenerator": {
  7403        "type": "object",
  7404        "title": "ListGenerator include items info",
  7405        "properties": {
  7406          "elements": {
  7407            "type": "array",
  7408            "title": "+kubebuilder:validation:Optional",
  7409            "items": {
  7410              "$ref": "#/definitions/v1JSON"
  7411            }
  7412          },
  7413          "elementsYaml": {
  7414            "type": "string"
  7415          },
  7416          "template": {
  7417            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  7418          }
  7419        }
  7420      },
  7421      "v1alpha1ManagedNamespaceMetadata": {
  7422        "type": "object",
  7423        "properties": {
  7424          "annotations": {
  7425            "type": "object",
  7426            "additionalProperties": {
  7427              "type": "string"
  7428            }
  7429          },
  7430          "labels": {
  7431            "type": "object",
  7432            "additionalProperties": {
  7433              "type": "string"
  7434            }
  7435          }
  7436        }
  7437      },
  7438      "v1alpha1MatrixGenerator": {
  7439        "description": "MatrixGenerator generates the cartesian product of two sets of parameters. The parameters are defined by two nested\ngenerators.",
  7440        "type": "object",
  7441        "properties": {
  7442          "generators": {
  7443            "type": "array",
  7444            "items": {
  7445              "$ref": "#/definitions/v1alpha1ApplicationSetNestedGenerator"
  7446            }
  7447          },
  7448          "template": {
  7449            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  7450          }
  7451        }
  7452      },
  7453      "v1alpha1MergeGenerator": {
  7454        "description": "MergeGenerator merges the output of two or more generators. Where the values for all specified merge keys are equal\nbetween two sets of generated parameters, the parameter sets will be merged with the parameters from the latter\ngenerator taking precedence. Parameter sets with merge keys not present in the base generator's params will be\nignored.\nFor example, if the first generator produced [{a: '1', b: '2'}, {c: '1', d: '1'}] and the second generator produced\n[{'a': 'override'}], the united parameters for merge keys = ['a'] would be\n[{a: 'override', b: '1'}, {c: '1', d: '1'}].\n\nMergeGenerator supports template overriding. If a MergeGenerator is one of multiple top-level generators, its\ntemplate will be merged with the top-level generator before the parameters are applied.",
  7455        "type": "object",
  7456        "properties": {
  7457          "generators": {
  7458            "type": "array",
  7459            "items": {
  7460              "$ref": "#/definitions/v1alpha1ApplicationSetNestedGenerator"
  7461            }
  7462          },
  7463          "mergeKeys": {
  7464            "type": "array",
  7465            "items": {
  7466              "type": "string"
  7467            }
  7468          },
  7469          "template": {
  7470            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  7471          }
  7472        }
  7473      },
  7474      "v1alpha1Operation": {
  7475        "type": "object",
  7476        "title": "Operation contains information about a requested or running operation",
  7477        "properties": {
  7478          "info": {
  7479            "type": "array",
  7480            "title": "Info is a list of informational items for this operation",
  7481            "items": {
  7482              "$ref": "#/definitions/v1alpha1Info"
  7483            }
  7484          },
  7485          "initiatedBy": {
  7486            "$ref": "#/definitions/v1alpha1OperationInitiator"
  7487          },
  7488          "retry": {
  7489            "$ref": "#/definitions/v1alpha1RetryStrategy"
  7490          },
  7491          "sync": {
  7492            "$ref": "#/definitions/v1alpha1SyncOperation"
  7493          }
  7494        }
  7495      },
  7496      "v1alpha1OperationInitiator": {
  7497        "type": "object",
  7498        "title": "OperationInitiator contains information about the initiator of an operation",
  7499        "properties": {
  7500          "automated": {
  7501            "description": "Automated is set to true if operation was initiated automatically by the application controller.",
  7502            "type": "boolean"
  7503          },
  7504          "username": {
  7505            "type": "string",
  7506            "title": "Username contains the name of a user who started operation"
  7507          }
  7508        }
  7509      },
  7510      "v1alpha1OperationState": {
  7511        "type": "object",
  7512        "title": "OperationState contains information about state of a running operation",
  7513        "properties": {
  7514          "finishedAt": {
  7515            "$ref": "#/definitions/v1Time"
  7516          },
  7517          "message": {
  7518            "description": "Message holds any pertinent messages when attempting to perform operation (typically errors).",
  7519            "type": "string"
  7520          },
  7521          "operation": {
  7522            "$ref": "#/definitions/v1alpha1Operation"
  7523          },
  7524          "phase": {
  7525            "type": "string",
  7526            "title": "Phase is the current phase of the operation"
  7527          },
  7528          "retryCount": {
  7529            "type": "integer",
  7530            "format": "int64",
  7531            "title": "RetryCount contains time of operation retries"
  7532          },
  7533          "startedAt": {
  7534            "$ref": "#/definitions/v1Time"
  7535          },
  7536          "syncResult": {
  7537            "$ref": "#/definitions/v1alpha1SyncOperationResult"
  7538          }
  7539        }
  7540      },
  7541      "v1alpha1OrphanedResourceKey": {
  7542        "type": "object",
  7543        "title": "OrphanedResourceKey is a reference to a resource to be ignored from",
  7544        "properties": {
  7545          "group": {
  7546            "type": "string"
  7547          },
  7548          "kind": {
  7549            "type": "string"
  7550          },
  7551          "name": {
  7552            "type": "string"
  7553          }
  7554        }
  7555      },
  7556      "v1alpha1OrphanedResourcesMonitorSettings": {
  7557        "type": "object",
  7558        "title": "OrphanedResourcesMonitorSettings holds settings of orphaned resources monitoring",
  7559        "properties": {
  7560          "ignore": {
  7561            "type": "array",
  7562            "title": "Ignore contains a list of resources that are to be excluded from orphaned resources monitoring",
  7563            "items": {
  7564              "$ref": "#/definitions/v1alpha1OrphanedResourceKey"
  7565            }
  7566          },
  7567          "warn": {
  7568            "type": "boolean",
  7569            "title": "Warn indicates if warning condition should be created for apps which have orphaned resources"
  7570          }
  7571        }
  7572      },
  7573      "v1alpha1OverrideIgnoreDiff": {
  7574        "type": "object",
  7575        "title": "OverrideIgnoreDiff contains configurations about how fields should be ignored during diffs between\nthe desired state and live state",
  7576        "properties": {
  7577          "jSONPointers": {
  7578            "type": "array",
  7579            "title": "JSONPointers is a JSON path list following the format defined in RFC4627 (https://datatracker.ietf.org/doc/html/rfc6902#section-3)",
  7580            "items": {
  7581              "type": "string"
  7582            }
  7583          },
  7584          "jqPathExpressions": {
  7585            "type": "array",
  7586            "title": "JQPathExpressions is a JQ path list that will be evaludated during the diff process",
  7587            "items": {
  7588              "type": "string"
  7589            }
  7590          },
  7591          "managedFieldsManagers": {
  7592            "type": "array",
  7593            "title": "ManagedFieldsManagers is a list of trusted managers. Fields mutated by those managers will take precedence over the\ndesired state defined in the SCM and won't be displayed in diffs",
  7594            "items": {
  7595              "type": "string"
  7596            }
  7597          }
  7598        }
  7599      },
  7600      "v1alpha1PluginConfigMapRef": {
  7601        "type": "object",
  7602        "properties": {
  7603          "name": {
  7604            "type": "string",
  7605            "title": "Name of the ConfigMap"
  7606          }
  7607        }
  7608      },
  7609      "v1alpha1PluginGenerator": {
  7610        "description": "PluginGenerator defines connection info specific to Plugin.",
  7611        "type": "object",
  7612        "properties": {
  7613          "configMapRef": {
  7614            "$ref": "#/definitions/v1alpha1PluginConfigMapRef"
  7615          },
  7616          "input": {
  7617            "$ref": "#/definitions/v1alpha1PluginInput"
  7618          },
  7619          "requeueAfterSeconds": {
  7620            "description": "RequeueAfterSeconds determines how long the ApplicationSet controller will wait before reconciling the ApplicationSet again.",
  7621            "type": "integer",
  7622            "format": "int64"
  7623          },
  7624          "template": {
  7625            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  7626          },
  7627          "values": {
  7628            "description": "Values contains key/value pairs which are passed directly as parameters to the template. These values will not be\nsent as parameters to the plugin.",
  7629            "type": "object",
  7630            "additionalProperties": {
  7631              "type": "string"
  7632            }
  7633          }
  7634        }
  7635      },
  7636      "v1alpha1PluginInput": {
  7637        "type": "object",
  7638        "properties": {
  7639          "parameters": {
  7640            "description": "Parameters contains the information to pass to the plugin. It is a map. The keys must be strings, and the\nvalues can be any type.",
  7641            "type": "object",
  7642            "additionalProperties": {
  7643              "$ref": "#/definitions/v1JSON"
  7644            }
  7645          }
  7646        }
  7647      },
  7648      "v1alpha1ProjectRole": {
  7649        "type": "object",
  7650        "title": "ProjectRole represents a role that has access to a project",
  7651        "properties": {
  7652          "description": {
  7653            "type": "string",
  7654            "title": "Description is a description of the role"
  7655          },
  7656          "groups": {
  7657            "type": "array",
  7658            "title": "Groups are a list of OIDC group claims bound to this role",
  7659            "items": {
  7660              "type": "string"
  7661            }
  7662          },
  7663          "jwtTokens": {
  7664            "type": "array",
  7665            "title": "JWTTokens are a list of generated JWT tokens bound to this role",
  7666            "items": {
  7667              "$ref": "#/definitions/v1alpha1JWTToken"
  7668            }
  7669          },
  7670          "name": {
  7671            "type": "string",
  7672            "title": "Name is a name for this role"
  7673          },
  7674          "policies": {
  7675            "type": "array",
  7676            "title": "Policies Stores a list of casbin formatted strings that define access policies for the role in the project",
  7677            "items": {
  7678              "type": "string"
  7679            }
  7680          }
  7681        }
  7682      },
  7683      "v1alpha1PullRequestGenerator": {
  7684        "description": "PullRequestGenerator defines a generator that scrapes a PullRequest API to find candidate pull requests.",
  7685        "type": "object",
  7686        "properties": {
  7687          "azuredevops": {
  7688            "$ref": "#/definitions/v1alpha1PullRequestGeneratorAzureDevOps"
  7689          },
  7690          "bitbucket": {
  7691            "$ref": "#/definitions/v1alpha1PullRequestGeneratorBitbucket"
  7692          },
  7693          "bitbucketServer": {
  7694            "$ref": "#/definitions/v1alpha1PullRequestGeneratorBitbucketServer"
  7695          },
  7696          "filters": {
  7697            "description": "Filters for which pull requests should be considered.",
  7698            "type": "array",
  7699            "items": {
  7700              "$ref": "#/definitions/v1alpha1PullRequestGeneratorFilter"
  7701            }
  7702          },
  7703          "gitea": {
  7704            "$ref": "#/definitions/v1alpha1PullRequestGeneratorGitea"
  7705          },
  7706          "github": {
  7707            "$ref": "#/definitions/v1alpha1PullRequestGeneratorGithub"
  7708          },
  7709          "gitlab": {
  7710            "$ref": "#/definitions/v1alpha1PullRequestGeneratorGitLab"
  7711          },
  7712          "requeueAfterSeconds": {
  7713            "description": "Standard parameters.",
  7714            "type": "integer",
  7715            "format": "int64"
  7716          },
  7717          "template": {
  7718            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  7719          }
  7720        }
  7721      },
  7722      "v1alpha1PullRequestGeneratorAzureDevOps": {
  7723        "description": "PullRequestGeneratorAzureDevOps defines connection info specific to AzureDevOps.",
  7724        "type": "object",
  7725        "properties": {
  7726          "api": {
  7727            "description": "The Azure DevOps API URL to talk to. If blank, use https://dev.azure.com/.",
  7728            "type": "string"
  7729          },
  7730          "labels": {
  7731            "type": "array",
  7732            "title": "Labels is used to filter the PRs that you want to target",
  7733            "items": {
  7734              "type": "string"
  7735            }
  7736          },
  7737          "organization": {
  7738            "description": "Azure DevOps org to scan. Required.",
  7739            "type": "string"
  7740          },
  7741          "project": {
  7742            "description": "Azure DevOps project name to scan. Required.",
  7743            "type": "string"
  7744          },
  7745          "repo": {
  7746            "description": "Azure DevOps repo name to scan. Required.",
  7747            "type": "string"
  7748          },
  7749          "tokenRef": {
  7750            "$ref": "#/definitions/v1alpha1SecretRef"
  7751          }
  7752        }
  7753      },
  7754      "v1alpha1PullRequestGeneratorBitbucket": {
  7755        "description": "PullRequestGeneratorBitbucket defines connection info specific to Bitbucket.",
  7756        "type": "object",
  7757        "properties": {
  7758          "api": {
  7759            "description": "The Bitbucket REST API URL to talk to. If blank, uses https://api.bitbucket.org/2.0.",
  7760            "type": "string"
  7761          },
  7762          "basicAuth": {
  7763            "$ref": "#/definitions/v1alpha1BasicAuthBitbucketServer"
  7764          },
  7765          "bearerToken": {
  7766            "$ref": "#/definitions/v1alpha1BearerTokenBitbucketCloud"
  7767          },
  7768          "owner": {
  7769            "description": "Workspace to scan. Required.",
  7770            "type": "string"
  7771          },
  7772          "repo": {
  7773            "description": "Repo name to scan. Required.",
  7774            "type": "string"
  7775          }
  7776        }
  7777      },
  7778      "v1alpha1PullRequestGeneratorBitbucketServer": {
  7779        "description": "PullRequestGeneratorBitbucketServer defines connection info specific to BitbucketServer.",
  7780        "type": "object",
  7781        "properties": {
  7782          "api": {
  7783            "description": "The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest Required.",
  7784            "type": "string"
  7785          },
  7786          "basicAuth": {
  7787            "$ref": "#/definitions/v1alpha1BasicAuthBitbucketServer"
  7788          },
  7789          "project": {
  7790            "description": "Project to scan. Required.",
  7791            "type": "string"
  7792          },
  7793          "repo": {
  7794            "description": "Repo name to scan. Required.",
  7795            "type": "string"
  7796          }
  7797        }
  7798      },
  7799      "v1alpha1PullRequestGeneratorFilter": {
  7800        "description": "PullRequestGeneratorFilter is a single pull request filter.\nIf multiple filter types are set on a single struct, they will be AND'd together. All filters must\npass for a pull request to be included.",
  7801        "type": "object",
  7802        "properties": {
  7803          "branchMatch": {
  7804            "type": "string"
  7805          },
  7806          "targetBranchMatch": {
  7807            "type": "string"
  7808          }
  7809        }
  7810      },
  7811      "v1alpha1PullRequestGeneratorGitLab": {
  7812        "description": "PullRequestGeneratorGitLab defines connection info specific to GitLab.",
  7813        "type": "object",
  7814        "properties": {
  7815          "api": {
  7816            "description": "The GitLab API URL to talk to. If blank, uses https://gitlab.com/.",
  7817            "type": "string"
  7818          },
  7819          "insecure": {
  7820            "type": "boolean",
  7821            "title": "Skips validating the SCM provider's TLS certificate - useful for self-signed certificates.; default: false"
  7822          },
  7823          "labels": {
  7824            "type": "array",
  7825            "title": "Labels is used to filter the MRs that you want to target",
  7826            "items": {
  7827              "type": "string"
  7828            }
  7829          },
  7830          "project": {
  7831            "description": "GitLab project to scan. Required.",
  7832            "type": "string"
  7833          },
  7834          "pullRequestState": {
  7835            "type": "string",
  7836            "title": "PullRequestState is an additional MRs filter to get only those with a certain state. Default: \"\" (all states)"
  7837          },
  7838          "tokenRef": {
  7839            "$ref": "#/definitions/v1alpha1SecretRef"
  7840          }
  7841        }
  7842      },
  7843      "v1alpha1PullRequestGeneratorGitea": {
  7844        "description": "PullRequestGeneratorGitea defines connection info specific to Gitea.",
  7845        "type": "object",
  7846        "properties": {
  7847          "api": {
  7848            "type": "string",
  7849            "title": "The Gitea API URL to talk to. Required"
  7850          },
  7851          "insecure": {
  7852            "description": "Allow insecure tls, for self-signed certificates; default: false.",
  7853            "type": "boolean"
  7854          },
  7855          "owner": {
  7856            "description": "Gitea org or user to scan. Required.",
  7857            "type": "string"
  7858          },
  7859          "repo": {
  7860            "description": "Gitea repo name to scan. Required.",
  7861            "type": "string"
  7862          },
  7863          "tokenRef": {
  7864            "$ref": "#/definitions/v1alpha1SecretRef"
  7865          }
  7866        }
  7867      },
  7868      "v1alpha1PullRequestGeneratorGithub": {
  7869        "description": "PullRequestGenerator defines connection info specific to GitHub.",
  7870        "type": "object",
  7871        "properties": {
  7872          "api": {
  7873            "description": "The GitHub API URL to talk to. If blank, use https://api.github.com/.",
  7874            "type": "string"
  7875          },
  7876          "appSecretName": {
  7877            "description": "AppSecretName is a reference to a GitHub App repo-creds secret with permission to access pull requests.",
  7878            "type": "string"
  7879          },
  7880          "labels": {
  7881            "type": "array",
  7882            "title": "Labels is used to filter the PRs that you want to target",
  7883            "items": {
  7884              "type": "string"
  7885            }
  7886          },
  7887          "owner": {
  7888            "description": "GitHub org or user to scan. Required.",
  7889            "type": "string"
  7890          },
  7891          "repo": {
  7892            "description": "GitHub repo name to scan. Required.",
  7893            "type": "string"
  7894          },
  7895          "tokenRef": {
  7896            "$ref": "#/definitions/v1alpha1SecretRef"
  7897          }
  7898        }
  7899      },
  7900      "v1alpha1RepoCreds": {
  7901        "type": "object",
  7902        "title": "RepoCreds holds the definition for repository credentials",
  7903        "properties": {
  7904          "enableOCI": {
  7905            "type": "boolean",
  7906            "title": "EnableOCI specifies whether helm-oci support should be enabled for this repo"
  7907          },
  7908          "forceHttpBasicAuth": {
  7909            "type": "boolean",
  7910            "title": "ForceHttpBasicAuth specifies whether Argo CD should attempt to force basic auth for HTTP connections"
  7911          },
  7912          "gcpServiceAccountKey": {
  7913            "type": "string",
  7914            "title": "GCPServiceAccountKey specifies the service account key in JSON format to be used for getting credentials to Google Cloud Source repos"
  7915          },
  7916          "githubAppEnterpriseBaseUrl": {
  7917            "type": "string",
  7918            "title": "GithubAppEnterpriseBaseURL specifies the GitHub API URL for GitHub app authentication. If empty will default to https://api.github.com"
  7919          },
  7920          "githubAppID": {
  7921            "type": "integer",
  7922            "format": "int64",
  7923            "title": "GithubAppId specifies the Github App ID of the app used to access the repo for GitHub app authentication"
  7924          },
  7925          "githubAppInstallationID": {
  7926            "type": "integer",
  7927            "format": "int64",
  7928            "title": "GithubAppInstallationId specifies the ID of the installed GitHub App for GitHub app authentication"
  7929          },
  7930          "githubAppPrivateKey": {
  7931            "type": "string",
  7932            "title": "GithubAppPrivateKey specifies the private key PEM data for authentication via GitHub app"
  7933          },
  7934          "password": {
  7935            "type": "string",
  7936            "title": "Password for authenticating at the repo server"
  7937          },
  7938          "proxy": {
  7939            "type": "string",
  7940            "title": "Proxy specifies the HTTP/HTTPS proxy used to access repos at the repo server"
  7941          },
  7942          "sshPrivateKey": {
  7943            "type": "string",
  7944            "title": "SSHPrivateKey contains the private key data for authenticating at the repo server using SSH (only Git repos)"
  7945          },
  7946          "tlsClientCertData": {
  7947            "type": "string",
  7948            "title": "TLSClientCertData specifies the TLS client cert data for authenticating at the repo server"
  7949          },
  7950          "tlsClientCertKey": {
  7951            "type": "string",
  7952            "title": "TLSClientCertKey specifies the TLS client cert key for authenticating at the repo server"
  7953          },
  7954          "type": {
  7955            "description": "Type specifies the type of the repoCreds. Can be either \"git\" or \"helm. \"git\" is assumed if empty or absent.",
  7956            "type": "string"
  7957          },
  7958          "url": {
  7959            "type": "string",
  7960            "title": "URL is the URL that this credentials matches to"
  7961          },
  7962          "username": {
  7963            "type": "string",
  7964            "title": "Username for authenticating at the repo server"
  7965          }
  7966        }
  7967      },
  7968      "v1alpha1RepoCredsList": {
  7969        "description": "RepositoryList is a collection of Repositories.",
  7970        "type": "object",
  7971        "properties": {
  7972          "items": {
  7973            "type": "array",
  7974            "items": {
  7975              "$ref": "#/definitions/v1alpha1RepoCreds"
  7976            }
  7977          },
  7978          "metadata": {
  7979            "$ref": "#/definitions/v1ListMeta"
  7980          }
  7981        }
  7982      },
  7983      "v1alpha1Repository": {
  7984        "type": "object",
  7985        "title": "Repository is a repository holding application configurations",
  7986        "properties": {
  7987          "connectionState": {
  7988            "$ref": "#/definitions/v1alpha1ConnectionState"
  7989          },
  7990          "enableLfs": {
  7991            "description": "EnableLFS specifies whether git-lfs support should be enabled for this repo. Only valid for Git repositories.",
  7992            "type": "boolean"
  7993          },
  7994          "enableOCI": {
  7995            "type": "boolean",
  7996            "title": "EnableOCI specifies whether helm-oci support should be enabled for this repo"
  7997          },
  7998          "forceHttpBasicAuth": {
  7999            "type": "boolean",
  8000            "title": "ForceHttpBasicAuth specifies whether Argo CD should attempt to force basic auth for HTTP connections"
  8001          },
  8002          "gcpServiceAccountKey": {
  8003            "type": "string",
  8004            "title": "GCPServiceAccountKey specifies the service account key in JSON format to be used for getting credentials to Google Cloud Source repos"
  8005          },
  8006          "githubAppEnterpriseBaseUrl": {
  8007            "type": "string",
  8008            "title": "GithubAppEnterpriseBaseURL specifies the base URL of GitHub Enterprise installation. If empty will default to https://api.github.com"
  8009          },
  8010          "githubAppID": {
  8011            "type": "integer",
  8012            "format": "int64",
  8013            "title": "GithubAppId specifies the ID of the GitHub app used to access the repo"
  8014          },
  8015          "githubAppInstallationID": {
  8016            "type": "integer",
  8017            "format": "int64",
  8018            "title": "GithubAppInstallationId specifies the installation ID of the GitHub App used to access the repo"
  8019          },
  8020          "githubAppPrivateKey": {
  8021            "type": "string",
  8022            "title": "Github App Private Key PEM data"
  8023          },
  8024          "inheritedCreds": {
  8025            "type": "boolean",
  8026            "title": "Whether credentials were inherited from a credential set"
  8027          },
  8028          "insecure": {
  8029            "type": "boolean",
  8030            "title": "Insecure specifies whether the connection to the repository ignores any errors when verifying TLS certificates or SSH host keys"
  8031          },
  8032          "insecureIgnoreHostKey": {
  8033            "type": "boolean",
  8034            "title": "InsecureIgnoreHostKey should not be used anymore, Insecure is favoured\nUsed only for Git repos"
  8035          },
  8036          "name": {
  8037            "type": "string",
  8038            "title": "Name specifies a name to be used for this repo. Only used with Helm repos"
  8039          },
  8040          "password": {
  8041            "type": "string",
  8042            "title": "Password contains the password or PAT used for authenticating at the remote repository"
  8043          },
  8044          "project": {
  8045            "type": "string",
  8046            "title": "Reference between project and repository that allow you automatically to be added as item inside SourceRepos project entity"
  8047          },
  8048          "proxy": {
  8049            "type": "string",
  8050            "title": "Proxy specifies the HTTP/HTTPS proxy used to access the repo"
  8051          },
  8052          "repo": {
  8053            "type": "string",
  8054            "title": "Repo contains the URL to the remote repository"
  8055          },
  8056          "sshPrivateKey": {
  8057            "description": "SSHPrivateKey contains the PEM data for authenticating at the repo server. Only used with Git repos.",
  8058            "type": "string"
  8059          },
  8060          "tlsClientCertData": {
  8061            "type": "string",
  8062            "title": "TLSClientCertData contains a certificate in PEM format for authenticating at the repo server"
  8063          },
  8064          "tlsClientCertKey": {
  8065            "type": "string",
  8066            "title": "TLSClientCertKey contains a private key in PEM format for authenticating at the repo server"
  8067          },
  8068          "type": {
  8069            "description": "Type specifies the type of the repo. Can be either \"git\" or \"helm. \"git\" is assumed if empty or absent.",
  8070            "type": "string"
  8071          },
  8072          "username": {
  8073            "type": "string",
  8074            "title": "Username contains the user name used for authenticating at the remote repository"
  8075          }
  8076        }
  8077      },
  8078      "v1alpha1RepositoryCertificate": {
  8079        "type": "object",
  8080        "title": "A RepositoryCertificate is either SSH known hosts entry or TLS certificate",
  8081        "properties": {
  8082          "certData": {
  8083            "type": "string",
  8084            "format": "byte",
  8085            "title": "CertData contains the actual certificate data, dependent on the certificate type"
  8086          },
  8087          "certInfo": {
  8088            "type": "string",
  8089            "title": "CertInfo will hold additional certificate info, depdendent on the certificate type (e.g. SSH fingerprint, X509 CommonName)"
  8090          },
  8091          "certSubType": {
  8092            "type": "string",
  8093            "title": "CertSubType specifies the sub type of the cert, i.e. \"ssh-rsa\""
  8094          },
  8095          "certType": {
  8096            "type": "string",
  8097            "title": "CertType specifies the type of the certificate - currently one of \"https\" or \"ssh\""
  8098          },
  8099          "serverName": {
  8100            "type": "string",
  8101            "title": "ServerName specifies the DNS name of the server this certificate is intended for"
  8102          }
  8103        }
  8104      },
  8105      "v1alpha1RepositoryCertificateList": {
  8106        "type": "object",
  8107        "title": "RepositoryCertificateList is a collection of RepositoryCertificates",
  8108        "properties": {
  8109          "items": {
  8110            "type": "array",
  8111            "title": "List of certificates to be processed",
  8112            "items": {
  8113              "$ref": "#/definitions/v1alpha1RepositoryCertificate"
  8114            }
  8115          },
  8116          "metadata": {
  8117            "$ref": "#/definitions/v1ListMeta"
  8118          }
  8119        }
  8120      },
  8121      "v1alpha1RepositoryList": {
  8122        "description": "RepositoryList is a collection of Repositories.",
  8123        "type": "object",
  8124        "properties": {
  8125          "items": {
  8126            "type": "array",
  8127            "items": {
  8128              "$ref": "#/definitions/v1alpha1Repository"
  8129            }
  8130          },
  8131          "metadata": {
  8132            "$ref": "#/definitions/v1ListMeta"
  8133          }
  8134        }
  8135      },
  8136      "v1alpha1ResourceAction": {
  8137        "type": "object",
  8138        "title": "TODO: describe this type\nTODO: describe members of this type",
  8139        "properties": {
  8140          "disabled": {
  8141            "type": "boolean"
  8142          },
  8143          "displayName": {
  8144            "type": "string"
  8145          },
  8146          "iconClass": {
  8147            "type": "string"
  8148          },
  8149          "name": {
  8150            "type": "string"
  8151          },
  8152          "params": {
  8153            "type": "array",
  8154            "items": {
  8155              "$ref": "#/definitions/v1alpha1ResourceActionParam"
  8156            }
  8157          }
  8158        }
  8159      },
  8160      "v1alpha1ResourceActionParam": {
  8161        "type": "object",
  8162        "title": "TODO: describe this type\nTODO: describe members of this type",
  8163        "properties": {
  8164          "default": {
  8165            "type": "string"
  8166          },
  8167          "name": {
  8168            "type": "string"
  8169          },
  8170          "type": {
  8171            "type": "string"
  8172          },
  8173          "value": {
  8174            "type": "string"
  8175          }
  8176        }
  8177      },
  8178      "v1alpha1ResourceDiff": {
  8179        "type": "object",
  8180        "title": "ResourceDiff holds the diff of a live and target resource object\nTODO: describe members of this type",
  8181        "properties": {
  8182          "diff": {
  8183            "type": "string",
  8184            "title": "Diff contains the JSON patch between target and live resource\nDeprecated: use NormalizedLiveState and PredictedLiveState to render the difference"
  8185          },
  8186          "group": {
  8187            "type": "string"
  8188          },
  8189          "hook": {
  8190            "type": "boolean"
  8191          },
  8192          "kind": {
  8193            "type": "string"
  8194          },
  8195          "liveState": {
  8196            "type": "string",
  8197            "title": "TargetState contains the JSON live resource manifest"
  8198          },
  8199          "modified": {
  8200            "type": "boolean"
  8201          },
  8202          "name": {
  8203            "type": "string"
  8204          },
  8205          "namespace": {
  8206            "type": "string"
  8207          },
  8208          "normalizedLiveState": {
  8209            "type": "string",
  8210            "title": "NormalizedLiveState contains JSON serialized live resource state with applied normalizations"
  8211          },
  8212          "predictedLiveState": {
  8213            "type": "string",
  8214            "title": "PredictedLiveState contains JSON serialized resource state that is calculated based on normalized and target resource state"
  8215          },
  8216          "resourceVersion": {
  8217            "type": "string"
  8218          },
  8219          "targetState": {
  8220            "type": "string",
  8221            "title": "TargetState contains the JSON serialized resource manifest defined in the Git/Helm"
  8222          }
  8223        }
  8224      },
  8225      "v1alpha1ResourceIgnoreDifferences": {
  8226        "description": "ResourceIgnoreDifferences contains resource filter and list of json paths which should be ignored during comparison with live state.",
  8227        "type": "object",
  8228        "properties": {
  8229          "group": {
  8230            "type": "string"
  8231          },
  8232          "jqPathExpressions": {
  8233            "type": "array",
  8234            "items": {
  8235              "type": "string"
  8236            }
  8237          },
  8238          "jsonPointers": {
  8239            "type": "array",
  8240            "items": {
  8241              "type": "string"
  8242            }
  8243          },
  8244          "kind": {
  8245            "type": "string"
  8246          },
  8247          "managedFieldsManagers": {
  8248            "type": "array",
  8249            "title": "ManagedFieldsManagers is a list of trusted managers. Fields mutated by those managers will take precedence over the\ndesired state defined in the SCM and won't be displayed in diffs",
  8250            "items": {
  8251              "type": "string"
  8252            }
  8253          },
  8254          "name": {
  8255            "type": "string"
  8256          },
  8257          "namespace": {
  8258            "type": "string"
  8259          }
  8260        }
  8261      },
  8262      "v1alpha1ResourceNetworkingInfo": {
  8263        "type": "object",
  8264        "title": "ResourceNetworkingInfo holds networking resource related information\nTODO: describe members of this type",
  8265        "properties": {
  8266          "externalURLs": {
  8267            "description": "ExternalURLs holds list of URLs which should be available externally. List is populated for ingress resources using rules hostnames.",
  8268            "type": "array",
  8269            "items": {
  8270              "type": "string"
  8271            }
  8272          },
  8273          "ingress": {
  8274            "type": "array",
  8275            "items": {
  8276              "$ref": "#/definitions/v1LoadBalancerIngress"
  8277            }
  8278          },
  8279          "labels": {
  8280            "type": "object",
  8281            "additionalProperties": {
  8282              "type": "string"
  8283            }
  8284          },
  8285          "targetLabels": {
  8286            "type": "object",
  8287            "additionalProperties": {
  8288              "type": "string"
  8289            }
  8290          },
  8291          "targetRefs": {
  8292            "type": "array",
  8293            "items": {
  8294              "$ref": "#/definitions/v1alpha1ResourceRef"
  8295            }
  8296          }
  8297        }
  8298      },
  8299      "v1alpha1ResourceNode": {
  8300        "type": "object",
  8301        "title": "ResourceNode contains information about live resource and its children\nTODO: describe members of this type",
  8302        "properties": {
  8303          "createdAt": {
  8304            "$ref": "#/definitions/v1Time"
  8305          },
  8306          "health": {
  8307            "$ref": "#/definitions/v1alpha1HealthStatus"
  8308          },
  8309          "images": {
  8310            "type": "array",
  8311            "items": {
  8312              "type": "string"
  8313            }
  8314          },
  8315          "info": {
  8316            "type": "array",
  8317            "items": {
  8318              "$ref": "#/definitions/v1alpha1InfoItem"
  8319            }
  8320          },
  8321          "networkingInfo": {
  8322            "$ref": "#/definitions/v1alpha1ResourceNetworkingInfo"
  8323          },
  8324          "parentRefs": {
  8325            "type": "array",
  8326            "items": {
  8327              "$ref": "#/definitions/v1alpha1ResourceRef"
  8328            }
  8329          },
  8330          "resourceVersion": {
  8331            "type": "string"
  8332          }
  8333        },
  8334        "allOf": [
  8335          {
  8336            "$ref": "#/definitions/v1alpha1ResourceRef"
  8337          }
  8338        ]
  8339      },
  8340      "v1alpha1ResourceOverride": {
  8341        "type": "object",
  8342        "title": "ResourceOverride holds configuration to customize resource diffing and health assessment\nTODO: describe the members of this type",
  8343        "properties": {
  8344          "actions": {
  8345            "type": "string"
  8346          },
  8347          "healthLua": {
  8348            "type": "string"
  8349          },
  8350          "ignoreDifferences": {
  8351            "$ref": "#/definitions/v1alpha1OverrideIgnoreDiff"
  8352          },
  8353          "ignoreResourceUpdates": {
  8354            "$ref": "#/definitions/v1alpha1OverrideIgnoreDiff"
  8355          },
  8356          "knownTypeFields": {
  8357            "type": "array",
  8358            "items": {
  8359              "$ref": "#/definitions/v1alpha1KnownTypeField"
  8360            }
  8361          },
  8362          "useOpenLibs": {
  8363            "type": "boolean"
  8364          }
  8365        }
  8366      },
  8367      "v1alpha1ResourceRef": {
  8368        "type": "object",
  8369        "title": "ResourceRef includes fields which uniquely identify a resource",
  8370        "properties": {
  8371          "group": {
  8372            "type": "string"
  8373          },
  8374          "kind": {
  8375            "type": "string"
  8376          },
  8377          "name": {
  8378            "type": "string"
  8379          },
  8380          "namespace": {
  8381            "type": "string"
  8382          },
  8383          "uid": {
  8384            "type": "string"
  8385          },
  8386          "version": {
  8387            "type": "string"
  8388          }
  8389        }
  8390      },
  8391      "v1alpha1ResourceResult": {
  8392        "type": "object",
  8393        "title": "ResourceResult holds the operation result details of a specific resource",
  8394        "properties": {
  8395          "group": {
  8396            "type": "string",
  8397            "title": "Group specifies the API group of the resource"
  8398          },
  8399          "hookPhase": {
  8400            "description": "HookPhase contains the state of any operation associated with this resource OR hook\nThis can also contain values for non-hook resources.",
  8401            "type": "string"
  8402          },
  8403          "hookType": {
  8404            "type": "string",
  8405            "title": "HookType specifies the type of the hook. Empty for non-hook resources"
  8406          },
  8407          "kind": {
  8408            "type": "string",
  8409            "title": "Kind specifies the API kind of the resource"
  8410          },
  8411          "message": {
  8412            "type": "string",
  8413            "title": "Message contains an informational or error message for the last sync OR operation"
  8414          },
  8415          "name": {
  8416            "type": "string",
  8417            "title": "Name specifies the name of the resource"
  8418          },
  8419          "namespace": {
  8420            "type": "string",
  8421            "title": "Namespace specifies the target namespace of the resource"
  8422          },
  8423          "status": {
  8424            "type": "string",
  8425            "title": "Status holds the final result of the sync. Will be empty if the resources is yet to be applied/pruned and is always zero-value for hooks"
  8426          },
  8427          "syncPhase": {
  8428            "type": "string",
  8429            "title": "SyncPhase indicates the particular phase of the sync that this result was acquired in"
  8430          },
  8431          "version": {
  8432            "type": "string",
  8433            "title": "Version specifies the API version of the resource"
  8434          }
  8435        }
  8436      },
  8437      "v1alpha1ResourceStatus": {
  8438        "type": "object",
  8439        "title": "ResourceStatus holds the current sync and health status of a resource\nTODO: describe members of this type",
  8440        "properties": {
  8441          "group": {
  8442            "type": "string"
  8443          },
  8444          "health": {
  8445            "$ref": "#/definitions/v1alpha1HealthStatus"
  8446          },
  8447          "hook": {
  8448            "type": "boolean"
  8449          },
  8450          "kind": {
  8451            "type": "string"
  8452          },
  8453          "name": {
  8454            "type": "string"
  8455          },
  8456          "namespace": {
  8457            "type": "string"
  8458          },
  8459          "requiresPruning": {
  8460            "type": "boolean"
  8461          },
  8462          "status": {
  8463            "type": "string"
  8464          },
  8465          "syncWave": {
  8466            "type": "integer",
  8467            "format": "int64"
  8468          },
  8469          "version": {
  8470            "type": "string"
  8471          }
  8472        }
  8473      },
  8474      "v1alpha1RetryStrategy": {
  8475        "type": "object",
  8476        "title": "RetryStrategy contains information about the strategy to apply when a sync failed",
  8477        "properties": {
  8478          "backoff": {
  8479            "$ref": "#/definitions/v1alpha1Backoff"
  8480          },
  8481          "limit": {
  8482            "description": "Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.",
  8483            "type": "integer",
  8484            "format": "int64"
  8485          }
  8486        }
  8487      },
  8488      "v1alpha1RevisionHistory": {
  8489        "type": "object",
  8490        "title": "RevisionHistory contains history information about a previous sync",
  8491        "properties": {
  8492          "deployStartedAt": {
  8493            "$ref": "#/definitions/v1Time"
  8494          },
  8495          "deployedAt": {
  8496            "$ref": "#/definitions/v1Time"
  8497          },
  8498          "id": {
  8499            "type": "integer",
  8500            "format": "int64",
  8501            "title": "ID is an auto incrementing identifier of the RevisionHistory"
  8502          },
  8503          "revision": {
  8504            "type": "string",
  8505            "title": "Revision holds the revision the sync was performed against"
  8506          },
  8507          "revisions": {
  8508            "type": "array",
  8509            "title": "Revisions holds the revision of each source in sources field the sync was performed against",
  8510            "items": {
  8511              "type": "string"
  8512            }
  8513          },
  8514          "source": {
  8515            "$ref": "#/definitions/v1alpha1ApplicationSource"
  8516          },
  8517          "sources": {
  8518            "type": "array",
  8519            "title": "Sources is a reference to the application sources used for the sync operation",
  8520            "items": {
  8521              "$ref": "#/definitions/v1alpha1ApplicationSource"
  8522            }
  8523          }
  8524        }
  8525      },
  8526      "v1alpha1RevisionMetadata": {
  8527        "type": "object",
  8528        "title": "RevisionMetadata contains metadata for a specific revision in a Git repository",
  8529        "properties": {
  8530          "author": {
  8531            "type": "string",
  8532            "title": "who authored this revision,\ntypically their name and email, e.g. \"John Doe <john_doe@my-company.com>\",\nbut might not match this example"
  8533          },
  8534          "date": {
  8535            "$ref": "#/definitions/v1Time"
  8536          },
  8537          "message": {
  8538            "description": "Message contains the message associated with the revision, most likely the commit message.",
  8539            "type": "string"
  8540          },
  8541          "signatureInfo": {
  8542            "description": "SignatureInfo contains a hint on the signer if the revision was signed with GPG, and signature verification is enabled.",
  8543            "type": "string"
  8544          },
  8545          "tags": {
  8546            "type": "array",
  8547            "title": "Tags specifies any tags currently attached to the revision\nFloating tags can move from one revision to another",
  8548            "items": {
  8549              "type": "string"
  8550            }
  8551          }
  8552        }
  8553      },
  8554      "v1alpha1SCMProviderGenerator": {
  8555        "description": "SCMProviderGenerator defines a generator that scrapes a SCMaaS API to find candidate repos.",
  8556        "type": "object",
  8557        "properties": {
  8558          "awsCodeCommit": {
  8559            "$ref": "#/definitions/v1alpha1SCMProviderGeneratorAWSCodeCommit"
  8560          },
  8561          "azureDevOps": {
  8562            "$ref": "#/definitions/v1alpha1SCMProviderGeneratorAzureDevOps"
  8563          },
  8564          "bitbucket": {
  8565            "$ref": "#/definitions/v1alpha1SCMProviderGeneratorBitbucket"
  8566          },
  8567          "bitbucketServer": {
  8568            "$ref": "#/definitions/v1alpha1SCMProviderGeneratorBitbucketServer"
  8569          },
  8570          "cloneProtocol": {
  8571            "description": "Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers\nnecessarily support all protocols.",
  8572            "type": "string"
  8573          },
  8574          "filters": {
  8575            "description": "Filters for which repos should be considered.",
  8576            "type": "array",
  8577            "items": {
  8578              "$ref": "#/definitions/v1alpha1SCMProviderGeneratorFilter"
  8579            }
  8580          },
  8581          "gitea": {
  8582            "$ref": "#/definitions/v1alpha1SCMProviderGeneratorGitea"
  8583          },
  8584          "github": {
  8585            "$ref": "#/definitions/v1alpha1SCMProviderGeneratorGithub"
  8586          },
  8587          "gitlab": {
  8588            "$ref": "#/definitions/v1alpha1SCMProviderGeneratorGitlab"
  8589          },
  8590          "requeueAfterSeconds": {
  8591            "description": "Standard parameters.",
  8592            "type": "integer",
  8593            "format": "int64"
  8594          },
  8595          "template": {
  8596            "$ref": "#/definitions/v1alpha1ApplicationSetTemplate"
  8597          },
  8598          "values": {
  8599            "type": "object",
  8600            "title": "Values contains key/value pairs which are passed directly as parameters to the template",
  8601            "additionalProperties": {
  8602              "type": "string"
  8603            }
  8604          }
  8605        }
  8606      },
  8607      "v1alpha1SCMProviderGeneratorAWSCodeCommit": {
  8608        "description": "SCMProviderGeneratorAWSCodeCommit defines connection info specific to AWS CodeCommit.",
  8609        "type": "object",
  8610        "properties": {
  8611          "allBranches": {
  8612            "description": "Scan all branches instead of just the default branch.",
  8613            "type": "boolean"
  8614          },
  8615          "region": {
  8616            "description": "Region provides the AWS region to discover repos.\nif not provided, AppSet controller will infer the current region from environment.",
  8617            "type": "string"
  8618          },
  8619          "role": {
  8620            "description": "Role provides the AWS IAM role to assume, for cross-account repo discovery\nif not provided, AppSet controller will use its pod/node identity to discover.",
  8621            "type": "string"
  8622          },
  8623          "tagFilters": {
  8624            "type": "array",
  8625            "title": "TagFilters provides the tag filter(s) for repo discovery",
  8626            "items": {
  8627              "$ref": "#/definitions/v1alpha1TagFilter"
  8628            }
  8629          }
  8630        }
  8631      },
  8632      "v1alpha1SCMProviderGeneratorAzureDevOps": {
  8633        "description": "SCMProviderGeneratorAzureDevOps defines connection info specific to Azure DevOps.",
  8634        "type": "object",
  8635        "properties": {
  8636          "accessTokenRef": {
  8637            "$ref": "#/definitions/v1alpha1SecretRef"
  8638          },
  8639          "allBranches": {
  8640            "description": "Scan all branches instead of just the default branch.",
  8641            "type": "boolean"
  8642          },
  8643          "api": {
  8644            "description": "The URL to Azure DevOps. If blank, use https://dev.azure.com.",
  8645            "type": "string"
  8646          },
  8647          "organization": {
  8648            "description": "Azure Devops organization. Required. E.g. \"my-organization\".",
  8649            "type": "string"
  8650          },
  8651          "teamProject": {
  8652            "description": "Azure Devops team project. Required. E.g. \"my-team\".",
  8653            "type": "string"
  8654          }
  8655        }
  8656      },
  8657      "v1alpha1SCMProviderGeneratorBitbucket": {
  8658        "description": "SCMProviderGeneratorBitbucket defines connection info specific to Bitbucket Cloud (API version 2).",
  8659        "type": "object",
  8660        "properties": {
  8661          "allBranches": {
  8662            "description": "Scan all branches instead of just the main branch.",
  8663            "type": "boolean"
  8664          },
  8665          "appPasswordRef": {
  8666            "$ref": "#/definitions/v1alpha1SecretRef"
  8667          },
  8668          "owner": {
  8669            "description": "Bitbucket workspace to scan. Required.",
  8670            "type": "string"
  8671          },
  8672          "user": {
  8673            "type": "string",
  8674            "title": "Bitbucket user to use when authenticating.  Should have a \"member\" role to be able to read all repositories and branches.  Required"
  8675          }
  8676        }
  8677      },
  8678      "v1alpha1SCMProviderGeneratorBitbucketServer": {
  8679        "description": "SCMProviderGeneratorBitbucketServer defines connection info specific to Bitbucket Server.",
  8680        "type": "object",
  8681        "properties": {
  8682          "allBranches": {
  8683            "description": "Scan all branches instead of just the default branch.",
  8684            "type": "boolean"
  8685          },
  8686          "api": {
  8687            "description": "The Bitbucket Server REST API URL to talk to. Required.",
  8688            "type": "string"
  8689          },
  8690          "basicAuth": {
  8691            "$ref": "#/definitions/v1alpha1BasicAuthBitbucketServer"
  8692          },
  8693          "project": {
  8694            "description": "Project to scan. Required.",
  8695            "type": "string"
  8696          }
  8697        }
  8698      },
  8699      "v1alpha1SCMProviderGeneratorFilter": {
  8700        "description": "SCMProviderGeneratorFilter is a single repository filter.\nIf multiple filter types are set on a single struct, they will be AND'd together. All filters must\npass for a repo to be included.",
  8701        "type": "object",
  8702        "properties": {
  8703          "branchMatch": {
  8704            "description": "A regex which must match the branch name.",
  8705            "type": "string"
  8706          },
  8707          "labelMatch": {
  8708            "description": "A regex which must match at least one label.",
  8709            "type": "string"
  8710          },
  8711          "pathsDoNotExist": {
  8712            "description": "An array of paths, all of which must not exist.",
  8713            "type": "array",
  8714            "items": {
  8715              "type": "string"
  8716            }
  8717          },
  8718          "pathsExist": {
  8719            "description": "An array of paths, all of which must exist.",
  8720            "type": "array",
  8721            "items": {
  8722              "type": "string"
  8723            }
  8724          },
  8725          "repositoryMatch": {
  8726            "description": "A regex for repo names.",
  8727            "type": "string"
  8728          }
  8729        }
  8730      },
  8731      "v1alpha1SCMProviderGeneratorGitea": {
  8732        "description": "SCMProviderGeneratorGitea defines a connection info specific to Gitea.",
  8733        "type": "object",
  8734        "properties": {
  8735          "allBranches": {
  8736            "description": "Scan all branches instead of just the default branch.",
  8737            "type": "boolean"
  8738          },
  8739          "api": {
  8740            "description": "The Gitea URL to talk to. For example https://gitea.mydomain.com/.",
  8741            "type": "string"
  8742          },
  8743          "insecure": {
  8744            "type": "boolean",
  8745            "title": "Allow self-signed TLS / Certificates; default: false"
  8746          },
  8747          "owner": {
  8748            "description": "Gitea organization or user to scan. Required.",
  8749            "type": "string"
  8750          },
  8751          "tokenRef": {
  8752            "$ref": "#/definitions/v1alpha1SecretRef"
  8753          }
  8754        }
  8755      },
  8756      "v1alpha1SCMProviderGeneratorGithub": {
  8757        "description": "SCMProviderGeneratorGithub defines connection info specific to GitHub.",
  8758        "type": "object",
  8759        "properties": {
  8760          "allBranches": {
  8761            "description": "Scan all branches instead of just the default branch.",
  8762            "type": "boolean"
  8763          },
  8764          "api": {
  8765            "description": "The GitHub API URL to talk to. If blank, use https://api.github.com/.",
  8766            "type": "string"
  8767          },
  8768          "appSecretName": {
  8769            "description": "AppSecretName is a reference to a GitHub App repo-creds secret.",
  8770            "type": "string"
  8771          },
  8772          "organization": {
  8773            "description": "GitHub org to scan. Required.",
  8774            "type": "string"
  8775          },
  8776          "tokenRef": {
  8777            "$ref": "#/definitions/v1alpha1SecretRef"
  8778          }
  8779        }
  8780      },
  8781      "v1alpha1SCMProviderGeneratorGitlab": {
  8782        "description": "SCMProviderGeneratorGitlab defines connection info specific to Gitlab.",
  8783        "type": "object",
  8784        "properties": {
  8785          "allBranches": {
  8786            "description": "Scan all branches instead of just the default branch.",
  8787            "type": "boolean"
  8788          },
  8789          "api": {
  8790            "description": "The Gitlab API URL to talk to.",
  8791            "type": "string"
  8792          },
  8793          "group": {
  8794            "description": "Gitlab group to scan. Required.  You can use either the project id (recommended) or the full namespaced path.",
  8795            "type": "string"
  8796          },
  8797          "includeSharedProjects": {
  8798            "type": "boolean",
  8799            "title": "When recursing through subgroups, also include shared Projects (true) or scan only the subgroups under same path (false).  Defaults to \"true\""
  8800          },
  8801          "includeSubgroups": {
  8802            "type": "boolean",
  8803            "title": "Recurse through subgroups (true) or scan only the base group (false).  Defaults to \"false\""
  8804          },
  8805          "insecure": {
  8806            "type": "boolean",
  8807            "title": "Skips validating the SCM provider's TLS certificate - useful for self-signed certificates.; default: false"
  8808          },
  8809          "tokenRef": {
  8810            "$ref": "#/definitions/v1alpha1SecretRef"
  8811          },
  8812          "topic": {
  8813            "description": "Filter repos list based on Gitlab Topic.",
  8814            "type": "string"
  8815          }
  8816        }
  8817      },
  8818      "v1alpha1SecretRef": {
  8819        "description": "Utility struct for a reference to a secret key.",
  8820        "type": "object",
  8821        "properties": {
  8822          "key": {
  8823            "type": "string"
  8824          },
  8825          "secretName": {
  8826            "type": "string"
  8827          }
  8828        }
  8829      },
  8830      "v1alpha1SignatureKey": {
  8831        "type": "object",
  8832        "title": "SignatureKey is the specification of a key required to verify commit signatures with",
  8833        "properties": {
  8834          "keyID": {
  8835            "type": "string",
  8836            "title": "The ID of the key in hexadecimal notation"
  8837          }
  8838        }
  8839      },
  8840      "v1alpha1SyncOperation": {
  8841        "description": "SyncOperation contains details about a sync operation.",
  8842        "type": "object",
  8843        "properties": {
  8844          "dryRun": {
  8845            "type": "boolean",
  8846            "title": "DryRun specifies to perform a `kubectl apply --dry-run` without actually performing the sync"
  8847          },
  8848          "manifests": {
  8849            "type": "array",
  8850            "title": "Manifests is an optional field that overrides sync source with a local directory for development",
  8851            "items": {
  8852              "type": "string"
  8853            }
  8854          },
  8855          "prune": {
  8856            "type": "boolean",
  8857            "title": "Prune specifies to delete resources from the cluster that are no longer tracked in git"
  8858          },
  8859          "resources": {
  8860            "type": "array",
  8861            "title": "Resources describes which resources shall be part of the sync",
  8862            "items": {
  8863              "$ref": "#/definitions/v1alpha1SyncOperationResource"
  8864            }
  8865          },
  8866          "revision": {
  8867            "description": "Revision is the revision (Git) or chart version (Helm) which to sync the application to\nIf omitted, will use the revision specified in app spec.",
  8868            "type": "string"
  8869          },
  8870          "revisions": {
  8871            "description": "Revisions is the list of revision (Git) or chart version (Helm) which to sync each source in sources field for the application to\nIf omitted, will use the revision specified in app spec.",
  8872            "type": "array",
  8873            "items": {
  8874              "type": "string"
  8875            }
  8876          },
  8877          "source": {
  8878            "$ref": "#/definitions/v1alpha1ApplicationSource"
  8879          },
  8880          "sources": {
  8881            "type": "array",
  8882            "title": "Sources overrides the source definition set in the application.\nThis is typically set in a Rollback operation and is nil during a Sync operation",
  8883            "items": {
  8884              "$ref": "#/definitions/v1alpha1ApplicationSource"
  8885            }
  8886          },
  8887          "syncOptions": {
  8888            "type": "array",
  8889            "title": "SyncOptions provide per-sync sync-options, e.g. Validate=false",
  8890            "items": {
  8891              "type": "string"
  8892            }
  8893          },
  8894          "syncStrategy": {
  8895            "$ref": "#/definitions/v1alpha1SyncStrategy"
  8896          }
  8897        }
  8898      },
  8899      "v1alpha1SyncOperationResource": {
  8900        "description": "SyncOperationResource contains resources to sync.",
  8901        "type": "object",
  8902        "properties": {
  8903          "group": {
  8904            "type": "string"
  8905          },
  8906          "kind": {
  8907            "type": "string"
  8908          },
  8909          "name": {
  8910            "type": "string"
  8911          },
  8912          "namespace": {
  8913            "type": "string"
  8914          }
  8915        }
  8916      },
  8917      "v1alpha1SyncOperationResult": {
  8918        "type": "object",
  8919        "title": "SyncOperationResult represent result of sync operation",
  8920        "properties": {
  8921          "managedNamespaceMetadata": {
  8922            "$ref": "#/definitions/v1alpha1ManagedNamespaceMetadata"
  8923          },
  8924          "resources": {
  8925            "type": "array",
  8926            "title": "Resources contains a list of sync result items for each individual resource in a sync operation",
  8927            "items": {
  8928              "$ref": "#/definitions/v1alpha1ResourceResult"
  8929            }
  8930          },
  8931          "revision": {
  8932            "type": "string",
  8933            "title": "Revision holds the revision this sync operation was performed to"
  8934          },
  8935          "revisions": {
  8936            "type": "array",
  8937            "title": "Revisions holds the revision this sync operation was performed for respective indexed source in sources field",
  8938            "items": {
  8939              "type": "string"
  8940            }
  8941          },
  8942          "source": {
  8943            "$ref": "#/definitions/v1alpha1ApplicationSource"
  8944          },
  8945          "sources": {
  8946            "type": "array",
  8947            "title": "Source records the application source information of the sync, used for comparing auto-sync",
  8948            "items": {
  8949              "$ref": "#/definitions/v1alpha1ApplicationSource"
  8950            }
  8951          }
  8952        }
  8953      },
  8954      "v1alpha1SyncPolicy": {
  8955        "type": "object",
  8956        "title": "SyncPolicy controls when a sync will be performed in response to updates in git",
  8957        "properties": {
  8958          "automated": {
  8959            "$ref": "#/definitions/v1alpha1SyncPolicyAutomated"
  8960          },
  8961          "managedNamespaceMetadata": {
  8962            "$ref": "#/definitions/v1alpha1ManagedNamespaceMetadata"
  8963          },
  8964          "retry": {
  8965            "$ref": "#/definitions/v1alpha1RetryStrategy"
  8966          },
  8967          "syncOptions": {
  8968            "type": "array",
  8969            "title": "Options allow you to specify whole app sync-options",
  8970            "items": {
  8971              "type": "string"
  8972            }
  8973          }
  8974        }
  8975      },
  8976      "v1alpha1SyncPolicyAutomated": {
  8977        "type": "object",
  8978        "title": "SyncPolicyAutomated controls the behavior of an automated sync",
  8979        "properties": {
  8980          "allowEmpty": {
  8981            "type": "boolean",
  8982            "title": "AllowEmpty allows apps have zero live resources (default: false)"
  8983          },
  8984          "prune": {
  8985            "type": "boolean",
  8986            "title": "Prune specifies whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync (default: false)"
  8987          },
  8988          "selfHeal": {
  8989            "type": "boolean",
  8990            "title": "SelfHeal specifies whether to revert resources back to their desired state upon modification in the cluster (default: false)"
  8991          }
  8992        }
  8993      },
  8994      "v1alpha1SyncStatus": {
  8995        "type": "object",
  8996        "title": "SyncStatus contains information about the currently observed live and desired states of an application",
  8997        "properties": {
  8998          "comparedTo": {
  8999            "$ref": "#/definitions/v1alpha1ComparedTo"
  9000          },
  9001          "revision": {
  9002            "type": "string",
  9003            "title": "Revision contains information about the revision the comparison has been performed to"
  9004          },
  9005          "revisions": {
  9006            "type": "array",
  9007            "title": "Revisions contains information about the revisions of multiple sources the comparison has been performed to",
  9008            "items": {
  9009              "type": "string"
  9010            }
  9011          },
  9012          "status": {
  9013            "type": "string",
  9014            "title": "Status is the sync state of the comparison"
  9015          }
  9016        }
  9017      },
  9018      "v1alpha1SyncStrategy": {
  9019        "type": "object",
  9020        "title": "SyncStrategy controls the manner in which a sync is performed",
  9021        "properties": {
  9022          "apply": {
  9023            "$ref": "#/definitions/v1alpha1SyncStrategyApply"
  9024          },
  9025          "hook": {
  9026            "$ref": "#/definitions/v1alpha1SyncStrategyHook"
  9027          }
  9028        }
  9029      },
  9030      "v1alpha1SyncStrategyApply": {
  9031        "type": "object",
  9032        "title": "SyncStrategyApply uses `kubectl apply` to perform the apply",
  9033        "properties": {
  9034          "force": {
  9035            "description": "Force indicates whether or not to supply the --force flag to `kubectl apply`.\nThe --force flag deletes and re-create the resource, when PATCH encounters conflict and has\nretried for 5 times.",
  9036            "type": "boolean"
  9037          }
  9038        }
  9039      },
  9040      "v1alpha1SyncStrategyHook": {
  9041        "description": "SyncStrategyHook will perform a sync using hooks annotations.\nIf no hook annotation is specified falls back to `kubectl apply`.",
  9042        "type": "object",
  9043        "properties": {
  9044          "syncStrategyApply": {
  9045            "$ref": "#/definitions/v1alpha1SyncStrategyApply"
  9046          }
  9047        }
  9048      },
  9049      "v1alpha1SyncWindow": {
  9050        "type": "object",
  9051        "title": "SyncWindow contains the kind, time, duration and attributes that are used to assign the syncWindows to apps",
  9052        "properties": {
  9053          "applications": {
  9054            "type": "array",
  9055            "title": "Applications contains a list of applications that the window will apply to",
  9056            "items": {
  9057              "type": "string"
  9058            }
  9059          },
  9060          "clusters": {
  9061            "type": "array",
  9062            "title": "Clusters contains a list of clusters that the window will apply to",
  9063            "items": {
  9064              "type": "string"
  9065            }
  9066          },
  9067          "duration": {
  9068            "type": "string",
  9069            "title": "Duration is the amount of time the sync window will be open"
  9070          },
  9071          "kind": {
  9072            "type": "string",
  9073            "title": "Kind defines if the window allows or blocks syncs"
  9074          },
  9075          "manualSync": {
  9076            "type": "boolean",
  9077            "title": "ManualSync enables manual syncs when they would otherwise be blocked"
  9078          },
  9079          "namespaces": {
  9080            "type": "array",
  9081            "title": "Namespaces contains a list of namespaces that the window will apply to",
  9082            "items": {
  9083              "type": "string"
  9084            }
  9085          },
  9086          "schedule": {
  9087            "type": "string",
  9088            "title": "Schedule is the time the window will begin, specified in cron format"
  9089          },
  9090          "timeZone": {
  9091            "type": "string",
  9092            "title": "TimeZone of the sync that will be applied to the schedule"
  9093          }
  9094        }
  9095      },
  9096      "v1alpha1TLSClientConfig": {
  9097        "type": "object",
  9098        "title": "TLSClientConfig contains settings to enable transport layer security",
  9099        "properties": {
  9100          "caData": {
  9101            "type": "string",
  9102            "format": "byte",
  9103            "title": "CAData holds PEM-encoded bytes (typically read from a root certificates bundle).\nCAData takes precedence over CAFile"
  9104          },
  9105          "certData": {
  9106            "type": "string",
  9107            "format": "byte",
  9108            "title": "CertData holds PEM-encoded bytes (typically read from a client certificate file).\nCertData takes precedence over CertFile"
  9109          },
  9110          "insecure": {
  9111            "description": "Insecure specifies that the server should be accessed without verifying the TLS certificate. For testing only.",
  9112            "type": "boolean"
  9113          },
  9114          "keyData": {
  9115            "type": "string",
  9116            "format": "byte",
  9117            "title": "KeyData holds PEM-encoded bytes (typically read from a client certificate key file).\nKeyData takes precedence over KeyFile"
  9118          },
  9119          "serverName": {
  9120            "description": "ServerName is passed to the server for SNI and is used in the client to check server\ncertificates against. If ServerName is empty, the hostname used to contact the\nserver is used.",
  9121            "type": "string"
  9122          }
  9123        }
  9124      },
  9125      "v1alpha1TagFilter": {
  9126        "type": "object",
  9127        "properties": {
  9128          "key": {
  9129            "type": "string"
  9130          },
  9131          "value": {
  9132            "type": "string"
  9133          }
  9134        }
  9135      },
  9136      "versionVersionMessage": {
  9137        "type": "object",
  9138        "title": "VersionMessage represents version of the Argo CD API server",
  9139        "properties": {
  9140          "BuildDate": {
  9141            "type": "string"
  9142          },
  9143          "Compiler": {
  9144            "type": "string"
  9145          },
  9146          "ExtraBuildInfo": {
  9147            "type": "string"
  9148          },
  9149          "GitCommit": {
  9150            "type": "string"
  9151          },
  9152          "GitTag": {
  9153            "type": "string"
  9154          },
  9155          "GitTreeState": {
  9156            "type": "string"
  9157          },
  9158          "GoVersion": {
  9159            "type": "string"
  9160          },
  9161          "HelmVersion": {
  9162            "type": "string"
  9163          },
  9164          "JsonnetVersion": {
  9165            "type": "string"
  9166          },
  9167          "KubectlVersion": {
  9168            "type": "string"
  9169          },
  9170          "KustomizeVersion": {
  9171            "type": "string"
  9172          },
  9173          "Platform": {
  9174            "type": "string"
  9175          },
  9176          "Version": {
  9177            "type": "string"
  9178          }
  9179        }
  9180      }
  9181    }
  9182  }