pulp_container_client 2.24.2 → 2.24.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/docs/ContainerContainerDistribution.md +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +5 -5
  8. data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
  9. data/docs/ContentBlobsApi.md +20 -8
  10. data/docs/ContentManifestsApi.md +20 -8
  11. data/docs/ContentSignaturesApi.md +20 -8
  12. data/docs/ContentTagsApi.md +20 -8
  13. data/docs/DistributionsContainerApi.md +72 -32
  14. data/docs/DistributionsPullThroughApi.md +72 -32
  15. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  16. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  17. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  18. data/docs/PulpContainerNamespacesApi.md +40 -16
  19. data/docs/RemotesContainerApi.md +72 -32
  20. data/docs/RemotesPullThroughApi.md +72 -32
  21. data/docs/RepositoriesContainerApi.md +138 -64
  22. data/docs/RepositoriesContainerPushApi.md +80 -36
  23. data/docs/RepositoriesContainerPushVersionsApi.md +22 -10
  24. data/docs/RepositoriesContainerVersionsApi.md +22 -10
  25. data/docs/TokenApi.md +14 -5
  26. data/lib/pulp_container_client/api/content_blobs_api.rb +12 -0
  27. data/lib/pulp_container_client/api/content_manifests_api.rb +12 -0
  28. data/lib/pulp_container_client/api/content_signatures_api.rb +12 -0
  29. data/lib/pulp_container_client/api/content_tags_api.rb +12 -0
  30. data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
  31. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
  32. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
  33. data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
  34. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
  35. data/lib/pulp_container_client/api/repositories_container_api.rb +63 -0
  36. data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
  37. data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +15 -3
  38. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +15 -3
  39. data/lib/pulp_container_client/api/token_api.rb +9 -0
  40. data/lib/pulp_container_client/models/container_container_distribution.rb +20 -20
  41. data/lib/pulp_container_client/models/container_container_distribution_response.rb +50 -50
  42. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +20 -20
  43. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +50 -50
  44. data/lib/pulp_container_client/models/container_container_push_repository.rb +42 -42
  45. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +52 -52
  46. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +18 -18
  47. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +18 -18
  48. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +42 -42
  49. data/lib/pulp_container_client/version.rb +1 -1
  50. data/spec/api/content_blobs_api_spec.rb +4 -0
  51. data/spec/api/content_manifests_api_spec.rb +4 -0
  52. data/spec/api/content_signatures_api_spec.rb +4 -0
  53. data/spec/api/content_tags_api_spec.rb +4 -0
  54. data/spec/api/distributions_container_api_spec.rb +12 -0
  55. data/spec/api/distributions_pull_through_api_spec.rb +12 -0
  56. data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
  57. data/spec/api/remotes_container_api_spec.rb +12 -0
  58. data/spec/api/remotes_pull_through_api_spec.rb +12 -0
  59. data/spec/api/repositories_container_api_spec.rb +21 -0
  60. data/spec/api/repositories_container_push_api_spec.rb +13 -0
  61. data/spec/api/repositories_container_push_versions_api_spec.rb +5 -1
  62. data/spec/api/repositories_container_versions_api_spec.rb +5 -1
  63. data/spec/api/token_api_spec.rb +3 -0
  64. data/spec/models/container_container_distribution_response_spec.rb +9 -9
  65. data/spec/models/container_container_distribution_spec.rb +3 -3
  66. data/spec/models/container_container_pull_through_distribution_response_spec.rb +9 -9
  67. data/spec/models/container_container_pull_through_distribution_spec.rb +3 -3
  68. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  69. data/spec/models/container_container_push_repository_spec.rb +5 -5
  70. data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
  71. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +3 -3
  72. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  73. metadata +60 -60
@@ -16,11 +16,6 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class PatchedcontainerContainerPushRepository
19
- attr_accessor :pulp_labels
20
-
21
- # An optional description.
22
- attr_accessor :description
23
-
24
19
  # A reference to an associated signing service.
25
20
  attr_accessor :manifest_signing_service
26
21
 
@@ -30,14 +25,19 @@ module PulpContainerClient
30
25
  # Retain X versions of the repository. Default is null which retains all versions.
31
26
  attr_accessor :retain_repo_versions
32
27
 
28
+ # An optional description.
29
+ attr_accessor :description
30
+
31
+ attr_accessor :pulp_labels
32
+
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'pulp_labels' => :'pulp_labels',
37
- :'description' => :'description',
38
36
  :'manifest_signing_service' => :'manifest_signing_service',
39
37
  :'name' => :'name',
40
- :'retain_repo_versions' => :'retain_repo_versions'
38
+ :'retain_repo_versions' => :'retain_repo_versions',
39
+ :'description' => :'description',
40
+ :'pulp_labels' => :'pulp_labels'
41
41
  }
42
42
  end
43
43
 
@@ -49,20 +49,20 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
- :'pulp_labels' => :'Hash<String, String>',
53
- :'description' => :'String',
54
52
  :'manifest_signing_service' => :'String',
55
53
  :'name' => :'String',
56
- :'retain_repo_versions' => :'Integer'
54
+ :'retain_repo_versions' => :'Integer',
55
+ :'description' => :'String',
56
+ :'pulp_labels' => :'Hash<String, String>'
57
57
  }
58
58
  end
59
59
 
60
60
  # List of attributes with nullable: true
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
- :'description',
64
63
  :'manifest_signing_service',
65
- :'retain_repo_versions'
64
+ :'retain_repo_versions',
65
+ :'description',
66
66
  ])
67
67
  end
68
68
 
@@ -81,16 +81,6 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'pulp_labels')
85
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
86
- self.pulp_labels = value
87
- end
88
- end
89
-
90
- if attributes.key?(:'description')
91
- self.description = attributes[:'description']
92
- end
93
-
94
84
  if attributes.key?(:'manifest_signing_service')
95
85
  self.manifest_signing_service = attributes[:'manifest_signing_service']
96
86
  end
@@ -102,6 +92,16 @@ module PulpContainerClient
102
92
  if attributes.key?(:'retain_repo_versions')
103
93
  self.retain_repo_versions = attributes[:'retain_repo_versions']
104
94
  end
95
+
96
+ if attributes.key?(:'description')
97
+ self.description = attributes[:'description']
98
+ end
99
+
100
+ if attributes.key?(:'pulp_labels')
101
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
102
+ self.pulp_labels = value
103
+ end
104
+ end
105
105
  end
106
106
 
107
107
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -109,10 +109,6 @@ module PulpContainerClient
109
109
  def list_invalid_properties
110
110
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
111
111
  invalid_properties = Array.new
112
- if !@description.nil? && @description.to_s.length < 1
113
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
114
- end
115
-
116
112
  if !@name.nil? && @name.to_s.length < 1
117
113
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
118
114
  end
@@ -121,6 +117,10 @@ module PulpContainerClient
121
117
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
122
118
  end
123
119
 
120
+ if !@description.nil? && @description.to_s.length < 1
121
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
122
+ end
123
+
124
124
  invalid_properties
125
125
  end
126
126
 
@@ -128,22 +128,12 @@ module PulpContainerClient
128
128
  # @return true if the model is valid
129
129
  def valid?
130
130
  warn '[DEPRECATED] the `valid?` method is obsolete'
131
- return false if !@description.nil? && @description.to_s.length < 1
132
131
  return false if !@name.nil? && @name.to_s.length < 1
133
132
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
133
+ return false if !@description.nil? && @description.to_s.length < 1
134
134
  true
135
135
  end
136
136
 
137
- # Custom attribute writer method with validation
138
- # @param [Object] description Value to be assigned
139
- def description=(description)
140
- if !description.nil? && description.to_s.length < 1
141
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
142
- end
143
-
144
- @description = description
145
- end
146
-
147
137
  # Custom attribute writer method with validation
148
138
  # @param [Object] name Value to be assigned
149
139
  def name=(name)
@@ -168,16 +158,26 @@ module PulpContainerClient
168
158
  @retain_repo_versions = retain_repo_versions
169
159
  end
170
160
 
161
+ # Custom attribute writer method with validation
162
+ # @param [Object] description Value to be assigned
163
+ def description=(description)
164
+ if !description.nil? && description.to_s.length < 1
165
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
166
+ end
167
+
168
+ @description = description
169
+ end
170
+
171
171
  # Checks equality by comparing each attribute.
172
172
  # @param [Object] Object to be compared
173
173
  def ==(o)
174
174
  return true if self.equal?(o)
175
175
  self.class == o.class &&
176
- pulp_labels == o.pulp_labels &&
177
- description == o.description &&
178
176
  manifest_signing_service == o.manifest_signing_service &&
179
177
  name == o.name &&
180
- retain_repo_versions == o.retain_repo_versions
178
+ retain_repo_versions == o.retain_repo_versions &&
179
+ description == o.description &&
180
+ pulp_labels == o.pulp_labels
181
181
  end
182
182
 
183
183
  # @see the `==` method
@@ -189,7 +189,7 @@ module PulpContainerClient
189
189
  # Calculates hash code according to all attributes.
190
190
  # @return [Integer] Hash code
191
191
  def hash
192
- [pulp_labels, description, manifest_signing_service, name, retain_repo_versions].hash
192
+ [manifest_signing_service, name, retain_repo_versions, description, pulp_labels].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.24.2'
14
+ VERSION = '2.24.4'
15
15
  end
@@ -36,6 +36,7 @@ describe 'ContentBlobsApi' do
36
36
  # List blobs
37
37
  # ViewSet for Blobs.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :digest Filter results where digest matches value
40
41
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
41
42
  # @option opts [Integer] :limit Number of results to return per page.
@@ -64,6 +65,7 @@ describe 'ContentBlobsApi' do
64
65
  # ViewSet for Blobs.
65
66
  # @param container_blob_href
66
67
  # @param [Hash] opts the optional parameters
68
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
67
69
  # @option opts [Array<String>] :fields A list of fields to include in the response.
68
70
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
69
71
  # @return [ContainerBlobResponse]
@@ -79,6 +81,7 @@ describe 'ContentBlobsApi' do
79
81
  # @param container_blob_href
80
82
  # @param set_label
81
83
  # @param [Hash] opts the optional parameters
84
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
82
85
  # @return [SetLabelResponse]
83
86
  describe 'set_label test' do
84
87
  it 'should work' do
@@ -92,6 +95,7 @@ describe 'ContentBlobsApi' do
92
95
  # @param container_blob_href
93
96
  # @param unset_label
94
97
  # @param [Hash] opts the optional parameters
98
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
95
99
  # @return [UnsetLabelResponse]
96
100
  describe 'unset_label test' do
97
101
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentManifestsApi' do
36
36
  # List manifests
37
37
  # ViewSet for Manifest.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :digest Filter results where digest matches value
40
41
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
41
42
  # @option opts [Boolean] :is_bootable Filter results where is_bootable matches value
@@ -67,6 +68,7 @@ describe 'ContentManifestsApi' do
67
68
  # ViewSet for Manifest.
68
69
  # @param container_manifest_href
69
70
  # @param [Hash] opts the optional parameters
71
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
70
72
  # @option opts [Array<String>] :fields A list of fields to include in the response.
71
73
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
72
74
  # @return [ContainerManifestResponse]
@@ -82,6 +84,7 @@ describe 'ContentManifestsApi' do
82
84
  # @param container_manifest_href
83
85
  # @param set_label
84
86
  # @param [Hash] opts the optional parameters
87
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
85
88
  # @return [SetLabelResponse]
86
89
  describe 'set_label test' do
87
90
  it 'should work' do
@@ -95,6 +98,7 @@ describe 'ContentManifestsApi' do
95
98
  # @param container_manifest_href
96
99
  # @param unset_label
97
100
  # @param [Hash] opts the optional parameters
101
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
98
102
  # @return [UnsetLabelResponse]
99
103
  describe 'unset_label test' do
100
104
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentSignaturesApi' do
36
36
  # List manifest signatures
37
37
  # ViewSet for image signatures.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :digest Filter results where digest matches value
40
41
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
41
42
  # @option opts [String] :key_id Filter results where key_id matches value
@@ -76,6 +77,7 @@ describe 'ContentSignaturesApi' do
76
77
  # ViewSet for image signatures.
77
78
  # @param container_manifest_signature_href
78
79
  # @param [Hash] opts the optional parameters
80
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
79
81
  # @option opts [Array<String>] :fields A list of fields to include in the response.
80
82
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
81
83
  # @return [ContainerManifestSignatureResponse]
@@ -91,6 +93,7 @@ describe 'ContentSignaturesApi' do
91
93
  # @param container_manifest_signature_href
92
94
  # @param set_label
93
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
94
97
  # @return [SetLabelResponse]
95
98
  describe 'set_label test' do
96
99
  it 'should work' do
@@ -104,6 +107,7 @@ describe 'ContentSignaturesApi' do
104
107
  # @param container_manifest_signature_href
105
108
  # @param unset_label
106
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
107
111
  # @return [UnsetLabelResponse]
108
112
  describe 'unset_label test' do
109
113
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'ContentTagsApi' do
36
36
  # List tags
37
37
  # ViewSet for Tag.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [Array<String>] :digest Multiple values may be separated by commas.
40
41
  # @option opts [Integer] :limit Number of results to return per page.
41
42
  # @option opts [Array<String>] :media_type * &#x60;application/vnd.docker.distribution.manifest.v1+json&#x60; - application/vnd.docker.distribution.manifest.v1+json * &#x60;application/vnd.docker.distribution.manifest.v2+json&#x60; - application/vnd.docker.distribution.manifest.v2+json * &#x60;application/vnd.docker.distribution.manifest.list.v2+json&#x60; - application/vnd.docker.distribution.manifest.list.v2+json * &#x60;application/vnd.oci.image.manifest.v1+json&#x60; - application/vnd.oci.image.manifest.v1+json * &#x60;application/vnd.oci.image.index.v1+json&#x60; - application/vnd.oci.image.index.v1+json
@@ -66,6 +67,7 @@ describe 'ContentTagsApi' do
66
67
  # ViewSet for Tag.
67
68
  # @param container_tag_href
68
69
  # @param [Hash] opts the optional parameters
70
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
69
71
  # @option opts [Array<String>] :fields A list of fields to include in the response.
70
72
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
71
73
  # @return [ContainerTagResponse]
@@ -81,6 +83,7 @@ describe 'ContentTagsApi' do
81
83
  # @param container_tag_href
82
84
  # @param set_label
83
85
  # @param [Hash] opts the optional parameters
86
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
84
87
  # @return [SetLabelResponse]
85
88
  describe 'set_label test' do
86
89
  it 'should work' do
@@ -94,6 +97,7 @@ describe 'ContentTagsApi' do
94
97
  # @param container_tag_href
95
98
  # @param unset_label
96
99
  # @param [Hash] opts the optional parameters
100
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
97
101
  # @return [UnsetLabelResponse]
98
102
  describe 'unset_label test' do
99
103
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'DistributionsContainerApi' do
38
38
  # @param container_container_distribution_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'DistributionsContainerApi' do
50
51
  # Trigger an asynchronous create task
51
52
  # @param container_container_distribution
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [AsyncOperationResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'DistributionsContainerApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param container_container_distribution_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'DistributionsContainerApi' do
73
76
  # List container distributions
74
77
  # The Container Distribution will serve the latest version of a Repository if &#x60;&#x60;repository&#x60;&#x60; is specified. The Container Distribution will serve a specific repository version if &#x60;&#x60;repository_version&#x60;&#x60;. Note that **either** &#x60;&#x60;repository&#x60;&#x60; or &#x60;&#x60;repository_version&#x60;&#x60; can be set on a Container Distribution, but not both.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [String] :base_path Filter results where base_path matches value
77
81
  # @option opts [String] :base_path__contains Filter results where base_path contains value
78
82
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
@@ -113,6 +117,7 @@ describe 'DistributionsContainerApi' do
113
117
  # List roles assigned to this object.
114
118
  # @param container_container_distribution_href
115
119
  # @param [Hash] opts the optional parameters
120
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
116
121
  # @option opts [Array<String>] :fields A list of fields to include in the response.
117
122
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
118
123
  # @return [ObjectRolesResponse]
@@ -127,6 +132,7 @@ describe 'DistributionsContainerApi' do
127
132
  # List permissions available to the current user on this object.
128
133
  # @param container_container_distribution_href
129
134
  # @param [Hash] opts the optional parameters
135
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
130
136
  # @option opts [Array<String>] :fields A list of fields to include in the response.
131
137
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
132
138
  # @return [MyPermissionsResponse]
@@ -142,6 +148,7 @@ describe 'DistributionsContainerApi' do
142
148
  # @param container_container_distribution_href
143
149
  # @param patchedcontainer_container_distribution
144
150
  # @param [Hash] opts the optional parameters
151
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
145
152
  # @return [AsyncOperationResponse]
146
153
  describe 'partial_update test' do
147
154
  it 'should work' do
@@ -154,6 +161,7 @@ describe 'DistributionsContainerApi' do
154
161
  # The Container Distribution will serve the latest version of a Repository if &#x60;&#x60;repository&#x60;&#x60; is specified. The Container Distribution will serve a specific repository version if &#x60;&#x60;repository_version&#x60;&#x60;. Note that **either** &#x60;&#x60;repository&#x60;&#x60; or &#x60;&#x60;repository_version&#x60;&#x60; can be set on a Container Distribution, but not both.
155
162
  # @param container_container_distribution_href
156
163
  # @param [Hash] opts the optional parameters
164
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
157
165
  # @option opts [Array<String>] :fields A list of fields to include in the response.
158
166
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
159
167
  # @return [ContainerContainerDistributionResponse]
@@ -169,6 +177,7 @@ describe 'DistributionsContainerApi' do
169
177
  # @param container_container_distribution_href
170
178
  # @param nested_role
171
179
  # @param [Hash] opts the optional parameters
180
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
172
181
  # @return [NestedRoleResponse]
173
182
  describe 'remove_role test' do
174
183
  it 'should work' do
@@ -182,6 +191,7 @@ describe 'DistributionsContainerApi' do
182
191
  # @param container_container_distribution_href
183
192
  # @param set_label
184
193
  # @param [Hash] opts the optional parameters
194
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
185
195
  # @return [SetLabelResponse]
186
196
  describe 'set_label test' do
187
197
  it 'should work' do
@@ -195,6 +205,7 @@ describe 'DistributionsContainerApi' do
195
205
  # @param container_container_distribution_href
196
206
  # @param unset_label
197
207
  # @param [Hash] opts the optional parameters
208
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
198
209
  # @return [UnsetLabelResponse]
199
210
  describe 'unset_label test' do
200
211
  it 'should work' do
@@ -208,6 +219,7 @@ describe 'DistributionsContainerApi' do
208
219
  # @param container_container_distribution_href
209
220
  # @param container_container_distribution
210
221
  # @param [Hash] opts the optional parameters
222
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
211
223
  # @return [AsyncOperationResponse]
212
224
  describe 'update test' do
213
225
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'DistributionsPullThroughApi' do
38
38
  # @param container_container_pull_through_distribution_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'DistributionsPullThroughApi' do
50
51
  # Trigger an asynchronous create task
51
52
  # @param container_container_pull_through_distribution
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [AsyncOperationResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'DistributionsPullThroughApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param container_container_pull_through_distribution_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'DistributionsPullThroughApi' do
73
76
  # List container pull through distributions
74
77
  # A special pull-through Container Distribution that will reference distributions serving content.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [String] :base_path Filter results where base_path matches value
77
81
  # @option opts [String] :base_path__contains Filter results where base_path contains value
78
82
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
@@ -112,6 +116,7 @@ describe 'DistributionsPullThroughApi' do
112
116
  # List roles assigned to this object.
113
117
  # @param container_container_pull_through_distribution_href
114
118
  # @param [Hash] opts the optional parameters
119
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
115
120
  # @option opts [Array<String>] :fields A list of fields to include in the response.
116
121
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
117
122
  # @return [ObjectRolesResponse]
@@ -126,6 +131,7 @@ describe 'DistributionsPullThroughApi' do
126
131
  # List permissions available to the current user on this object.
127
132
  # @param container_container_pull_through_distribution_href
128
133
  # @param [Hash] opts the optional parameters
134
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
129
135
  # @option opts [Array<String>] :fields A list of fields to include in the response.
130
136
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
131
137
  # @return [MyPermissionsResponse]
@@ -141,6 +147,7 @@ describe 'DistributionsPullThroughApi' do
141
147
  # @param container_container_pull_through_distribution_href
142
148
  # @param patchedcontainer_container_pull_through_distribution
143
149
  # @param [Hash] opts the optional parameters
150
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
144
151
  # @return [AsyncOperationResponse]
145
152
  describe 'partial_update test' do
146
153
  it 'should work' do
@@ -153,6 +160,7 @@ describe 'DistributionsPullThroughApi' do
153
160
  # A special pull-through Container Distribution that will reference distributions serving content.
154
161
  # @param container_container_pull_through_distribution_href
155
162
  # @param [Hash] opts the optional parameters
163
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
156
164
  # @option opts [Array<String>] :fields A list of fields to include in the response.
157
165
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
158
166
  # @return [ContainerContainerPullThroughDistributionResponse]
@@ -168,6 +176,7 @@ describe 'DistributionsPullThroughApi' do
168
176
  # @param container_container_pull_through_distribution_href
169
177
  # @param nested_role
170
178
  # @param [Hash] opts the optional parameters
179
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
171
180
  # @return [NestedRoleResponse]
172
181
  describe 'remove_role test' do
173
182
  it 'should work' do
@@ -181,6 +190,7 @@ describe 'DistributionsPullThroughApi' do
181
190
  # @param container_container_pull_through_distribution_href
182
191
  # @param set_label
183
192
  # @param [Hash] opts the optional parameters
193
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
184
194
  # @return [SetLabelResponse]
185
195
  describe 'set_label test' do
186
196
  it 'should work' do
@@ -194,6 +204,7 @@ describe 'DistributionsPullThroughApi' do
194
204
  # @param container_container_pull_through_distribution_href
195
205
  # @param unset_label
196
206
  # @param [Hash] opts the optional parameters
207
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
197
208
  # @return [UnsetLabelResponse]
198
209
  describe 'unset_label test' do
199
210
  it 'should work' do
@@ -207,6 +218,7 @@ describe 'DistributionsPullThroughApi' do
207
218
  # @param container_container_pull_through_distribution_href
208
219
  # @param container_container_pull_through_distribution
209
220
  # @param [Hash] opts the optional parameters
221
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
210
222
  # @return [AsyncOperationResponse]
211
223
  describe 'update test' do
212
224
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'PulpContainerNamespacesApi' do
38
38
  # @param container_container_namespace_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'PulpContainerNamespacesApi' do
50
51
  # ViewSet for ContainerNamespaces.
51
52
  # @param container_container_namespace
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [ContainerContainerNamespaceResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'PulpContainerNamespacesApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param container_container_namespace_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'PulpContainerNamespacesApi' do
73
76
  # List container namespaces
74
77
  # ViewSet for ContainerNamespaces.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :limit Number of results to return per page.
77
81
  # @option opts [String] :name Filter results where name matches value
78
82
  # @option opts [String] :name__contains Filter results where name contains value
@@ -103,6 +107,7 @@ describe 'PulpContainerNamespacesApi' do
103
107
  # List roles assigned to this object.
104
108
  # @param container_container_namespace_href
105
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
111
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
112
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
108
113
  # @return [ObjectRolesResponse]
@@ -117,6 +122,7 @@ describe 'PulpContainerNamespacesApi' do
117
122
  # List permissions available to the current user on this object.
118
123
  # @param container_container_namespace_href
119
124
  # @param [Hash] opts the optional parameters
125
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
126
  # @option opts [Array<String>] :fields A list of fields to include in the response.
121
127
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
122
128
  # @return [MyPermissionsResponse]
@@ -131,6 +137,7 @@ describe 'PulpContainerNamespacesApi' do
131
137
  # ViewSet for ContainerNamespaces.
132
138
  # @param container_container_namespace_href
133
139
  # @param [Hash] opts the optional parameters
140
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
134
141
  # @option opts [Array<String>] :fields A list of fields to include in the response.
135
142
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
136
143
  # @return [ContainerContainerNamespaceResponse]
@@ -146,6 +153,7 @@ describe 'PulpContainerNamespacesApi' do
146
153
  # @param container_container_namespace_href
147
154
  # @param nested_role
148
155
  # @param [Hash] opts the optional parameters
156
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
149
157
  # @return [NestedRoleResponse]
150
158
  describe 'remove_role test' do
151
159
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'RemotesContainerApi' do
38
38
  # @param container_container_remote_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'RemotesContainerApi' do
50
51
  # Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the &#x60;&#x60;policy&#x60;&#x60; field. &#x60;&#x60;on_demand&#x60;&#x60; and &#x60;&#x60;streamed&#x60;&#x60; policies can provide significant disk space savings.
51
52
  # @param container_container_remote
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [ContainerContainerRemoteResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'RemotesContainerApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param container_container_remote_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'RemotesContainerApi' do
73
76
  # List container remotes
74
77
  # Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the &#x60;&#x60;policy&#x60;&#x60; field. &#x60;&#x60;on_demand&#x60;&#x60; and &#x60;&#x60;streamed&#x60;&#x60; policies can provide significant disk space savings.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :limit Number of results to return per page.
77
81
  # @option opts [String] :name Filter results where name matches value
78
82
  # @option opts [String] :name__contains Filter results where name contains value
@@ -111,6 +115,7 @@ describe 'RemotesContainerApi' do
111
115
  # List roles assigned to this object.
112
116
  # @param container_container_remote_href
113
117
  # @param [Hash] opts the optional parameters
118
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
114
119
  # @option opts [Array<String>] :fields A list of fields to include in the response.
115
120
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
116
121
  # @return [ObjectRolesResponse]
@@ -125,6 +130,7 @@ describe 'RemotesContainerApi' do
125
130
  # List permissions available to the current user on this object.
126
131
  # @param container_container_remote_href
127
132
  # @param [Hash] opts the optional parameters
133
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
134
  # @option opts [Array<String>] :fields A list of fields to include in the response.
129
135
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
130
136
  # @return [MyPermissionsResponse]
@@ -140,6 +146,7 @@ describe 'RemotesContainerApi' do
140
146
  # @param container_container_remote_href
141
147
  # @param patchedcontainer_container_remote
142
148
  # @param [Hash] opts the optional parameters
149
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
143
150
  # @return [AsyncOperationResponse]
144
151
  describe 'partial_update test' do
145
152
  it 'should work' do
@@ -152,6 +159,7 @@ describe 'RemotesContainerApi' do
152
159
  # Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the &#x60;&#x60;policy&#x60;&#x60; field. &#x60;&#x60;on_demand&#x60;&#x60; and &#x60;&#x60;streamed&#x60;&#x60; policies can provide significant disk space savings.
153
160
  # @param container_container_remote_href
154
161
  # @param [Hash] opts the optional parameters
162
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
155
163
  # @option opts [Array<String>] :fields A list of fields to include in the response.
156
164
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
157
165
  # @return [ContainerContainerRemoteResponse]
@@ -167,6 +175,7 @@ describe 'RemotesContainerApi' do
167
175
  # @param container_container_remote_href
168
176
  # @param nested_role
169
177
  # @param [Hash] opts the optional parameters
178
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
170
179
  # @return [NestedRoleResponse]
171
180
  describe 'remove_role test' do
172
181
  it 'should work' do
@@ -180,6 +189,7 @@ describe 'RemotesContainerApi' do
180
189
  # @param container_container_remote_href
181
190
  # @param set_label
182
191
  # @param [Hash] opts the optional parameters
192
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
183
193
  # @return [SetLabelResponse]
184
194
  describe 'set_label test' do
185
195
  it 'should work' do
@@ -193,6 +203,7 @@ describe 'RemotesContainerApi' do
193
203
  # @param container_container_remote_href
194
204
  # @param unset_label
195
205
  # @param [Hash] opts the optional parameters
206
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
196
207
  # @return [UnsetLabelResponse]
197
208
  describe 'unset_label test' do
198
209
  it 'should work' do
@@ -206,6 +217,7 @@ describe 'RemotesContainerApi' do
206
217
  # @param container_container_remote_href
207
218
  # @param container_container_remote
208
219
  # @param [Hash] opts the optional parameters
220
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
209
221
  # @return [AsyncOperationResponse]
210
222
  describe 'update test' do
211
223
  it 'should work' do