You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Need to be synced with app/validators/json_schemas/helm_metadata.json#dependencies
12
+
field:name,GraphQL::Types::String,null: true,description: 'Name of the dependency.'
13
+
field:version,GraphQL::Types::String,null: true,description: 'Version of the dependency.'
14
+
field:repository,GraphQL::Types::String,null: true,description: 'Repository of the dependency.'
15
+
field:condition,GraphQL::Types::String,null: true,description: 'Condition of the dependency.'
16
+
field:tags,[GraphQL::Types::String],null: true,description: 'Tags of the dependency.'
17
+
field:enabled,GraphQL::Types::Boolean,null: true,description: 'Indicates the dependency is enabled.'
18
+
field:import_values,[GraphQL::Types::JSON],null: true,description: 'Import-values of the dependency.',hash_key: "import-values"# rubocop:disable Graphql/JSONType
19
+
field:alias,GraphQL::Types::String,null: true,description: 'Alias of the dependency.',resolver_method: :resolve_alias
Copy file name to clipboardexpand all lines: doc/api/graphql/reference/index.md
+69
Original file line number
Diff line number
Diff line change
@@ -10911,6 +10911,19 @@ Represents the Geo sync and verification state of a group wiki repository.
10911
10911
| <a id="groupwikirepositoryregistryretrycount"></a>`retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the GroupWikiRepositoryRegistry. |
10912
10912
| <a id="groupwikirepositoryregistrystate"></a>`state` | [`RegistryState`](#registrystate) | Sync state of the GroupWikiRepositoryRegistry. |
10913
10913
10914
+
### `HelmFileMetadata`
10915
+
10916
+
Helm file metadata.
10917
+
10918
+
#### Fields
10919
+
10920
+
| Name | Type | Description |
10921
+
| ---- | ---- | ----------- |
10922
+
| <a id="helmfilemetadatachannel"></a>`channel` | [`String!`](#string) | Channel of the Helm chart. |
10923
+
| <a id="helmfilemetadatacreatedat"></a>`createdAt` | [`Time!`](#time) | Date of creation. |
10924
+
| <a id="helmfilemetadatametadata"></a>`metadata` | [`PackageHelmMetadataType!`](#packagehelmmetadatatype) | Metadata of the Helm chart. |
10925
+
| <a id="helmfilemetadataupdatedat"></a>`updatedAt` | [`Time!`](#time) | Date of most recent update. |
10926
+
10914
10927
### `IncidentManagementOncallRotation`
10915
10928
10916
10929
Describes an incident management on-call rotation.
@@ -12381,6 +12394,61 @@ Represents the Geo sync and verification state of a package file.
12381
12394
| <a id="packagefileregistryretrycount"></a>`retryCount` | [`Int`](#int) | Number of consecutive failed sync attempts of the PackageFileRegistry. |
12382
12395
| <a id="packagefileregistrystate"></a>`state` | [`RegistryState`](#registrystate) | Sync state of the PackageFileRegistry. |
12383
12396
12397
+
### `PackageHelmDependencyType`
12398
+
12399
+
Represents a Helm dependency.
12400
+
12401
+
#### Fields
12402
+
12403
+
| Name | Type | Description |
12404
+
| ---- | ---- | ----------- |
12405
+
| <a id="packagehelmdependencytypealias"></a>`alias` | [`String`](#string) | Alias of the dependency. |
12406
+
| <a id="packagehelmdependencytypecondition"></a>`condition` | [`String`](#string) | Condition of the dependency. |
12407
+
| <a id="packagehelmdependencytypeenabled"></a>`enabled` | [`Boolean`](#boolean) | Indicates the dependency is enabled. |
12408
+
| <a id="packagehelmdependencytypeimportvalues"></a>`importValues` | [`[JSON!]`](#json) | Import-values of the dependency. |
12409
+
| <a id="packagehelmdependencytypename"></a>`name` | [`String`](#string) | Name of the dependency. |
12410
+
| <a id="packagehelmdependencytyperepository"></a>`repository` | [`String`](#string) | Repository of the dependency. |
12411
+
| <a id="packagehelmdependencytypetags"></a>`tags` | [`[String!]`](#string) | Tags of the dependency. |
12412
+
| <a id="packagehelmdependencytypeversion"></a>`version` | [`String`](#string) | Version of the dependency. |
12413
+
12414
+
### `PackageHelmMaintainerType`
12415
+
12416
+
Represents a Helm maintainer.
12417
+
12418
+
#### Fields
12419
+
12420
+
| Name | Type | Description |
12421
+
| ---- | ---- | ----------- |
12422
+
| <a id="packagehelmmaintainertypeemail"></a>`email` | [`String`](#string) | Email of the maintainer. |
12423
+
| <a id="packagehelmmaintainertypename"></a>`name` | [`String`](#string) | Name of the maintainer. |
12424
+
| <a id="packagehelmmaintainertypeurl"></a>`url` | [`String`](#string) | URL of the maintainer. |
12425
+
12426
+
### `PackageHelmMetadataType`
12427
+
12428
+
Represents the contents of a Helm Chart.yml file.
12429
+
12430
+
#### Fields
12431
+
12432
+
| Name | Type | Description |
12433
+
| ---- | ---- | ----------- |
12434
+
| <a id="packagehelmmetadatatypeannotations"></a>`annotations` | [`JSON`](#json) | Annotations for the chart. |
12435
+
| <a id="packagehelmmetadatatypeapiversion"></a>`apiVersion` | [`String!`](#string) | API version of the chart. |
12436
+
| <a id="packagehelmmetadatatypeappversion"></a>`appVersion` | [`String`](#string) | App version of the chart. |
12437
+
| <a id="packagehelmmetadatatypecondition"></a>`condition` | [`String`](#string) | Condition for the chart. |
12438
+
| <a id="packagehelmmetadatatypedependencies"></a>`dependencies` | [`[PackageHelmDependencyType!]`](#packagehelmdependencytype) | Dependencies of the chart. |
12439
+
| <a id="packagehelmmetadatatypedeprecated"></a>`deprecated` | [`Boolean`](#boolean) | Indicates if the chart is deprecated. |
12440
+
| <a id="packagehelmmetadatatypedescription"></a>`description` | [`String`](#string) | Description of the chart. |
12441
+
| <a id="packagehelmmetadatatypehome"></a>`home` | [`String`](#string) | URL of the home page. |
12442
+
| <a id="packagehelmmetadatatypeicon"></a>`icon` | [`String`](#string) | URL to an SVG or PNG image for the chart. |
12443
+
| <a id="packagehelmmetadatatypekeywords"></a>`keywords` | [`[String!]`](#string) | Keywords for the chart. |
12444
+
| <a id="packagehelmmetadatatypekubeversion"></a>`kubeVersion` | [`String`](#string) | Kubernetes versions for the chart. |
12445
+
| <a id="packagehelmmetadatatypemaintainers"></a>`maintainers` | [`[PackageHelmMaintainerType!]`](#packagehelmmaintainertype) | Maintainers of the chart. |
12446
+
| <a id="packagehelmmetadatatypename"></a>`name` | [`String!`](#string) | Name of the chart. |
12447
+
| <a id="packagehelmmetadatatypesources"></a>`sources` | [`[String!]`](#string) | URLs of the source code for the chart. |
12448
+
| <a id="packagehelmmetadatatypetags"></a>`tags` | [`String`](#string) | Tags for the chart. |
12449
+
| <a id="packagehelmmetadatatypetype"></a>`type` | [`String`](#string) | Type of the chart. |
12450
+
| <a id="packagehelmmetadatatypeversion"></a>`version` | [`String!`](#string) | Version of the chart. |
12451
+
12384
12452
### `PackageSettings`
12385
12453
12386
12454
Namespace-level Package Registry settings.
@@ -17759,6 +17827,7 @@ Represents metadata associated with a Package file.
0 commit comments