pulp_deb_client 2.0.0b2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +163 -0
  4. data/Rakefile +10 -0
  5. data/docs/AsyncOperationResponse.md +17 -0
  6. data/docs/ContentGenericContentsApi.md +194 -0
  7. data/docs/ContentInstallerFileIndexApi.md +186 -0
  8. data/docs/ContentInstallerPackagesApi.md +194 -0
  9. data/docs/ContentPackageIndexApi.md +186 -0
  10. data/docs/ContentPackagesApi.md +194 -0
  11. data/docs/ContentReleasesApi.md +186 -0
  12. data/docs/DebDistribution.md +29 -0
  13. data/docs/DebPublication.md +31 -0
  14. data/docs/DebRemote.md +57 -0
  15. data/docs/DistributionsAptApi.md +358 -0
  16. data/docs/GenericContent.md +41 -0
  17. data/docs/InlineResponse200.md +23 -0
  18. data/docs/InlineResponse2001.md +23 -0
  19. data/docs/InlineResponse2002.md +23 -0
  20. data/docs/InlineResponse2003.md +23 -0
  21. data/docs/InlineResponse2004.md +23 -0
  22. data/docs/InlineResponse2005.md +23 -0
  23. data/docs/InlineResponse2006.md +23 -0
  24. data/docs/InlineResponse2007.md +23 -0
  25. data/docs/InlineResponse2008.md +23 -0
  26. data/docs/InlineResponse2009.md +23 -0
  27. data/docs/InstallerFileIndex.md +31 -0
  28. data/docs/InstallerPackage.md +99 -0
  29. data/docs/Package.md +99 -0
  30. data/docs/PackageIndex.md +31 -0
  31. data/docs/PublicationsAptApi.md +235 -0
  32. data/docs/PublicationsVerbatimApi.md +235 -0
  33. data/docs/Release.md +31 -0
  34. data/docs/RemotesAptApi.md +417 -0
  35. data/docs/RepositorySyncURL.md +19 -0
  36. data/docs/VerbatimPublication.md +27 -0
  37. data/git_push.sh +58 -0
  38. data/lib/pulp_deb_client/api/content_generic_contents_api.rb +239 -0
  39. data/lib/pulp_deb_client/api/content_installer_file_index_api.rb +225 -0
  40. data/lib/pulp_deb_client/api/content_installer_packages_api.rb +235 -0
  41. data/lib/pulp_deb_client/api/content_package_index_api.rb +225 -0
  42. data/lib/pulp_deb_client/api/content_packages_api.rb +235 -0
  43. data/lib/pulp_deb_client/api/content_releases_api.rb +225 -0
  44. data/lib/pulp_deb_client/api/distributions_apt_api.rb +436 -0
  45. data/lib/pulp_deb_client/api/publications_apt_api.rb +279 -0
  46. data/lib/pulp_deb_client/api/publications_verbatim_api.rb +279 -0
  47. data/lib/pulp_deb_client/api/remotes_apt_api.rb +510 -0
  48. data/lib/pulp_deb_client/api_client.rb +402 -0
  49. data/lib/pulp_deb_client/api_error.rb +57 -0
  50. data/lib/pulp_deb_client/configuration.rb +243 -0
  51. data/lib/pulp_deb_client/models/async_operation_response.rb +202 -0
  52. data/lib/pulp_deb_client/models/deb_distribution.rb +337 -0
  53. data/lib/pulp_deb_client/models/deb_publication.rb +282 -0
  54. data/lib/pulp_deb_client/models/deb_remote.rb +653 -0
  55. data/lib/pulp_deb_client/models/generic_content.rb +444 -0
  56. data/lib/pulp_deb_client/models/inline_response200.rb +235 -0
  57. data/lib/pulp_deb_client/models/inline_response2001.rb +235 -0
  58. data/lib/pulp_deb_client/models/inline_response2002.rb +235 -0
  59. data/lib/pulp_deb_client/models/inline_response2003.rb +235 -0
  60. data/lib/pulp_deb_client/models/inline_response2004.rb +235 -0
  61. data/lib/pulp_deb_client/models/inline_response2005.rb +235 -0
  62. data/lib/pulp_deb_client/models/inline_response2006.rb +235 -0
  63. data/lib/pulp_deb_client/models/inline_response2007.rb +235 -0
  64. data/lib/pulp_deb_client/models/inline_response2008.rb +235 -0
  65. data/lib/pulp_deb_client/models/inline_response2009.rb +235 -0
  66. data/lib/pulp_deb_client/models/installer_file_index.rb +355 -0
  67. data/lib/pulp_deb_client/models/installer_package.rb +1101 -0
  68. data/lib/pulp_deb_client/models/package.rb +1101 -0
  69. data/lib/pulp_deb_client/models/package_index.rb +355 -0
  70. data/lib/pulp_deb_client/models/release.rb +356 -0
  71. data/lib/pulp_deb_client/models/repository_sync_url.rb +214 -0
  72. data/lib/pulp_deb_client/models/verbatim_publication.rb +258 -0
  73. data/lib/pulp_deb_client/version.rb +15 -0
  74. data/lib/pulp_deb_client.rb +71 -0
  75. data/pulp_deb_client.gemspec +39 -0
  76. data/spec/api/content_generic_contents_api_spec.rb +80 -0
  77. data/spec/api/content_installer_file_index_api_spec.rb +77 -0
  78. data/spec/api/content_installer_packages_api_spec.rb +80 -0
  79. data/spec/api/content_package_index_api_spec.rb +77 -0
  80. data/spec/api/content_packages_api_spec.rb +80 -0
  81. data/spec/api/content_releases_api_spec.rb +77 -0
  82. data/spec/api/distributions_apt_api_spec.rb +118 -0
  83. data/spec/api/publications_apt_api_spec.rb +87 -0
  84. data/spec/api/publications_verbatim_api_spec.rb +87 -0
  85. data/spec/api/remotes_apt_api_spec.rb +132 -0
  86. data/spec/api_client_spec.rb +188 -0
  87. data/spec/configuration_spec.rb +42 -0
  88. data/spec/models/async_operation_response_spec.rb +41 -0
  89. data/spec/models/deb_distribution_spec.rb +77 -0
  90. data/spec/models/deb_publication_spec.rb +83 -0
  91. data/spec/models/deb_remote_spec.rb +165 -0
  92. data/spec/models/generic_content_spec.rb +113 -0
  93. data/spec/models/inline_response2001_spec.rb +59 -0
  94. data/spec/models/inline_response2002_spec.rb +59 -0
  95. data/spec/models/inline_response2003_spec.rb +59 -0
  96. data/spec/models/inline_response2004_spec.rb +59 -0
  97. data/spec/models/inline_response2005_spec.rb +59 -0
  98. data/spec/models/inline_response2006_spec.rb +59 -0
  99. data/spec/models/inline_response2007_spec.rb +59 -0
  100. data/spec/models/inline_response2008_spec.rb +59 -0
  101. data/spec/models/inline_response2009_spec.rb +59 -0
  102. data/spec/models/inline_response200_spec.rb +59 -0
  103. data/spec/models/installer_file_index_spec.rb +83 -0
  104. data/spec/models/installer_package_spec.rb +287 -0
  105. data/spec/models/package_index_spec.rb +83 -0
  106. data/spec/models/package_spec.rb +287 -0
  107. data/spec/models/release_spec.rb +83 -0
  108. data/spec/models/repository_sync_url_spec.rb +47 -0
  109. data/spec/models/verbatim_publication_spec.rb +71 -0
  110. data/spec/spec_helper.rb +111 -0
  111. metadata +242 -0
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse200
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<GenericContent>**](GenericContent.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse200.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2001
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<InstallerFileIndex>**](InstallerFileIndex.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2001.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2002
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<InstallerPackage>**](InstallerPackage.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2002.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2003
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<PackageIndex>**](PackageIndex.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2003.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2004
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<Package>**](Package.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2004.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2005
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<Release>**](Release.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2005.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2006
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<DebDistribution>**](DebDistribution.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2006.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2007
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<DebPublication>**](DebPublication.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2007.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2008
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<VerbatimPublication>**](VerbatimPublication.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2008.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # PulpDebClient::InlineResponse2009
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **count** | **Integer** | |
8
+ **_next** | **String** | | [optional]
9
+ **previous** | **String** | | [optional]
10
+ **results** | [**Array<DebRemote>**](DebRemote.md) | |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'PulpDebClient'
16
+
17
+ instance = PulpDebClient::InlineResponse2009.new(count: null,
18
+ _next: null,
19
+ previous: null,
20
+ results: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,31 @@
1
+ # PulpDebClient::InstallerFileIndex
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **_href** | **String** | | [optional]
8
+ **_created** | **DateTime** | Timestamp of creation. | [optional]
9
+ **_type** | **String** | | [optional]
10
+ **artifacts** | **Hash<String, String>** | A dict mapping relative paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': '/artifacts/1/' |
11
+ **release** | **String** | Release this index file belongs to. |
12
+ **component** | **String** | Component of the component - architecture combination. |
13
+ **architecture** | **String** | Architecture of the component - architecture combination. |
14
+ **relative_path** | **String** | Path of directory containing MD5SUMS and SHA256SUMS relative to url. | [optional]
15
+
16
+ ## Code Sample
17
+
18
+ ```ruby
19
+ require 'PulpDebClient'
20
+
21
+ instance = PulpDebClient::InstallerFileIndex.new(_href: null,
22
+ _created: null,
23
+ _type: null,
24
+ artifacts: null,
25
+ release: null,
26
+ component: null,
27
+ architecture: null,
28
+ relative_path: null)
29
+ ```
30
+
31
+
@@ -0,0 +1,99 @@
1
+ # PulpDebClient::InstallerPackage
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **_href** | **String** | | [optional]
8
+ **_created** | **DateTime** | Timestamp of creation. | [optional]
9
+ **_type** | **String** | | [optional]
10
+ **artifact** | **String** | Artifact file representing the physical content | [optional]
11
+ **relative_path** | **String** | Path where the artifact is located relative to distributions base_path | [optional]
12
+ **file** | **String** | An uploaded file that should be turned into the artifact of the content unit. | [optional]
13
+ **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
14
+ **md5** | **String** | The MD5 checksum if available. | [optional]
15
+ **sha1** | **String** | The SHA-1 checksum if available. | [optional]
16
+ **sha224** | **String** | The SHA-224 checksum if available. | [optional]
17
+ **sha256** | **String** | The SHA-256 checksum if available. | [optional]
18
+ **sha384** | **String** | The SHA-384 checksum if available. | [optional]
19
+ **sha512** | **String** | The SHA-512 checksum if available. | [optional]
20
+ **package** | **String** | | [optional]
21
+ **source** | **String** | | [optional]
22
+ **version** | **String** | | [optional]
23
+ **architecture** | **String** | | [optional]
24
+ **section** | **String** | | [optional]
25
+ **priority** | **String** | | [optional]
26
+ **origin** | **String** | | [optional]
27
+ **tag** | **String** | | [optional]
28
+ **bugs** | **String** | | [optional]
29
+ **essential** | **String** | | [optional]
30
+ **build_essential** | **String** | | [optional]
31
+ **installed_size** | **String** | | [optional]
32
+ **maintainer** | **String** | | [optional]
33
+ **original_maintainer** | **String** | | [optional]
34
+ **description** | **String** | | [optional]
35
+ **description_md5** | **String** | | [optional]
36
+ **homepage** | **String** | | [optional]
37
+ **built_using** | **String** | | [optional]
38
+ **auto_built_package** | **String** | | [optional]
39
+ **multi_arch** | **String** | | [optional]
40
+ **breaks** | **String** | | [optional]
41
+ **conflicts** | **String** | | [optional]
42
+ **depends** | **String** | | [optional]
43
+ **recommends** | **String** | | [optional]
44
+ **suggests** | **String** | | [optional]
45
+ **enhances** | **String** | | [optional]
46
+ **pre_depends** | **String** | | [optional]
47
+ **provides** | **String** | | [optional]
48
+ **replaces** | **String** | | [optional]
49
+
50
+ ## Code Sample
51
+
52
+ ```ruby
53
+ require 'PulpDebClient'
54
+
55
+ instance = PulpDebClient::InstallerPackage.new(_href: null,
56
+ _created: null,
57
+ _type: null,
58
+ artifact: null,
59
+ relative_path: null,
60
+ file: null,
61
+ repository: null,
62
+ md5: null,
63
+ sha1: null,
64
+ sha224: null,
65
+ sha256: null,
66
+ sha384: null,
67
+ sha512: null,
68
+ package: null,
69
+ source: null,
70
+ version: null,
71
+ architecture: null,
72
+ section: null,
73
+ priority: null,
74
+ origin: null,
75
+ tag: null,
76
+ bugs: null,
77
+ essential: null,
78
+ build_essential: null,
79
+ installed_size: null,
80
+ maintainer: null,
81
+ original_maintainer: null,
82
+ description: null,
83
+ description_md5: null,
84
+ homepage: null,
85
+ built_using: null,
86
+ auto_built_package: null,
87
+ multi_arch: null,
88
+ breaks: null,
89
+ conflicts: null,
90
+ depends: null,
91
+ recommends: null,
92
+ suggests: null,
93
+ enhances: null,
94
+ pre_depends: null,
95
+ provides: null,
96
+ replaces: null)
97
+ ```
98
+
99
+
data/docs/Package.md ADDED
@@ -0,0 +1,99 @@
1
+ # PulpDebClient::Package
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **_href** | **String** | | [optional]
8
+ **_created** | **DateTime** | Timestamp of creation. | [optional]
9
+ **_type** | **String** | | [optional]
10
+ **artifact** | **String** | Artifact file representing the physical content | [optional]
11
+ **relative_path** | **String** | Path where the artifact is located relative to distributions base_path | [optional]
12
+ **file** | **String** | An uploaded file that should be turned into the artifact of the content unit. | [optional]
13
+ **repository** | **String** | A URI of a repository the new content unit should be associated with. | [optional]
14
+ **md5** | **String** | The MD5 checksum if available. | [optional]
15
+ **sha1** | **String** | The SHA-1 checksum if available. | [optional]
16
+ **sha224** | **String** | The SHA-224 checksum if available. | [optional]
17
+ **sha256** | **String** | The SHA-256 checksum if available. | [optional]
18
+ **sha384** | **String** | The SHA-384 checksum if available. | [optional]
19
+ **sha512** | **String** | The SHA-512 checksum if available. | [optional]
20
+ **package** | **String** | | [optional]
21
+ **source** | **String** | | [optional]
22
+ **version** | **String** | | [optional]
23
+ **architecture** | **String** | | [optional]
24
+ **section** | **String** | | [optional]
25
+ **priority** | **String** | | [optional]
26
+ **origin** | **String** | | [optional]
27
+ **tag** | **String** | | [optional]
28
+ **bugs** | **String** | | [optional]
29
+ **essential** | **String** | | [optional]
30
+ **build_essential** | **String** | | [optional]
31
+ **installed_size** | **String** | | [optional]
32
+ **maintainer** | **String** | | [optional]
33
+ **original_maintainer** | **String** | | [optional]
34
+ **description** | **String** | | [optional]
35
+ **description_md5** | **String** | | [optional]
36
+ **homepage** | **String** | | [optional]
37
+ **built_using** | **String** | | [optional]
38
+ **auto_built_package** | **String** | | [optional]
39
+ **multi_arch** | **String** | | [optional]
40
+ **breaks** | **String** | | [optional]
41
+ **conflicts** | **String** | | [optional]
42
+ **depends** | **String** | | [optional]
43
+ **recommends** | **String** | | [optional]
44
+ **suggests** | **String** | | [optional]
45
+ **enhances** | **String** | | [optional]
46
+ **pre_depends** | **String** | | [optional]
47
+ **provides** | **String** | | [optional]
48
+ **replaces** | **String** | | [optional]
49
+
50
+ ## Code Sample
51
+
52
+ ```ruby
53
+ require 'PulpDebClient'
54
+
55
+ instance = PulpDebClient::Package.new(_href: null,
56
+ _created: null,
57
+ _type: null,
58
+ artifact: null,
59
+ relative_path: null,
60
+ file: null,
61
+ repository: null,
62
+ md5: null,
63
+ sha1: null,
64
+ sha224: null,
65
+ sha256: null,
66
+ sha384: null,
67
+ sha512: null,
68
+ package: null,
69
+ source: null,
70
+ version: null,
71
+ architecture: null,
72
+ section: null,
73
+ priority: null,
74
+ origin: null,
75
+ tag: null,
76
+ bugs: null,
77
+ essential: null,
78
+ build_essential: null,
79
+ installed_size: null,
80
+ maintainer: null,
81
+ original_maintainer: null,
82
+ description: null,
83
+ description_md5: null,
84
+ homepage: null,
85
+ built_using: null,
86
+ auto_built_package: null,
87
+ multi_arch: null,
88
+ breaks: null,
89
+ conflicts: null,
90
+ depends: null,
91
+ recommends: null,
92
+ suggests: null,
93
+ enhances: null,
94
+ pre_depends: null,
95
+ provides: null,
96
+ replaces: null)
97
+ ```
98
+
99
+
@@ -0,0 +1,31 @@
1
+ # PulpDebClient::PackageIndex
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **_href** | **String** | | [optional]
8
+ **_created** | **DateTime** | Timestamp of creation. | [optional]
9
+ **_type** | **String** | | [optional]
10
+ **artifacts** | **Hash<String, String>** | A dict mapping relative paths inside the Content to the correspondingArtifact URLs. E.g.: {'relative/path': '/artifacts/1/' |
11
+ **release** | **String** | Release this index file belongs to. |
12
+ **component** | **String** | Component of the component - architecture combination. |
13
+ **architecture** | **String** | Architecture of the component - architecture combination. |
14
+ **relative_path** | **String** | Path of file relative to url. | [optional]
15
+
16
+ ## Code Sample
17
+
18
+ ```ruby
19
+ require 'PulpDebClient'
20
+
21
+ instance = PulpDebClient::PackageIndex.new(_href: null,
22
+ _created: null,
23
+ _type: null,
24
+ artifacts: null,
25
+ release: null,
26
+ component: null,
27
+ architecture: null,
28
+ relative_path: null)
29
+ ```
30
+
31
+