pulp_certguard_client 3.49.2 → 3.50.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73ab7430d1ef9ef0b06458aded73c5cc0bc13d00093a4e8b6b8ff2b22ecccb04
4
- data.tar.gz: 64861e8a38d469abb7abad84c971229f56f794039ee1723bcb59b9cc93a42bd7
3
+ metadata.gz: f78f0f5cee112bb620cc336a1c354340bbc2da6e09d1df48b2003e13c2c3b726
4
+ data.tar.gz: e13c2fcabab267cc7ecd941d409d0ad9e55a2027e8daf712a7bb09319487de13
5
5
  SHA512:
6
- metadata.gz: 814adff565ff51e203d49fed6f4b370cf176224e9db9fd19a5fc8f1d0f1a76aa9475d1e4dd497a03fc524d2820a4fde4c0341b20ff5e67b4f8305d080c751f94
7
- data.tar.gz: 109a71522095cfac0d5393e611543a0015e669761310662d05de8b7c184bbb46b33439d557f7ca01141da82d53957bd2c9cf645deaf58484de740ad5132a90b1
6
+ metadata.gz: 86b230e812edbac200b6cdd5ce7133c15fa58001cba3a5f622568bad9264fb3341c0dc7faf75f52fe2a24989c445d44a8e32262e67fcaf62969a063c69a6715d
7
+ data.tar.gz: e3f772f0425023b5da3e2b3d9db7051ca0f97ed3d71ebc520a593c2e3887a52f6bdc45f839b91fdcb384f9b8bda5ce19730a0cb0b6dab2fd3074027e3bddd77e
data/README.md CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
9
  - API version: v3
10
- - Package version: 3.49.2
10
+ - Package version: 3.50.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [https://pulpproject.org](https://pulpproject.org)
13
13
 
@@ -24,16 +24,16 @@ gem build pulp_certguard_client.gemspec
24
24
  Then either install the gem locally:
25
25
 
26
26
  ```shell
27
- gem install ./pulp_certguard_client-3.49.2.gem
27
+ gem install ./pulp_certguard_client-3.50.0.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_certguard_client-3.49.2.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_certguard_client-3.50.0.gem` to install the development dependencies)
31
31
 
32
32
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
33
33
 
34
34
  Finally add this to the Gemfile:
35
35
 
36
- gem 'pulp_certguard_client', '~> 3.49.2'
36
+ gem 'pulp_certguard_client', '~> 3.50.0'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array<CertguardRHSMCertGuardResponse>**](CertguardRHSMCertGuardResponse.md) | | [optional]
10
+ **results** | [**Array<CertguardRHSMCertGuardResponse>**](CertguardRHSMCertGuardResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -4,10 +4,10 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **count** | **Integer** | | [optional]
7
+ **count** | **Integer** | |
8
8
  **_next** | **String** | | [optional]
9
9
  **previous** | **String** | | [optional]
10
- **results** | [**Array<CertguardX509CertGuardResponse>**](CertguardX509CertGuardResponse.md) | | [optional]
10
+ **results** | [**Array<CertguardX509CertGuardResponse>**](CertguardX509CertGuardResponse.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -88,12 +88,22 @@ module PulpCertguardClient
88
88
  # @return Array for valid properties with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
+ if @count.nil?
92
+ invalid_properties.push('invalid value for "count", count cannot be nil.')
93
+ end
94
+
95
+ if @results.nil?
96
+ invalid_properties.push('invalid value for "results", results cannot be nil.')
97
+ end
98
+
91
99
  invalid_properties
92
100
  end
93
101
 
94
102
  # Check to see if the all the properties in the model are valid
95
103
  # @return true if the model is valid
96
104
  def valid?
105
+ return false if @count.nil?
106
+ return false if @results.nil?
97
107
  true
98
108
  end
99
109
 
@@ -88,12 +88,22 @@ module PulpCertguardClient
88
88
  # @return Array for valid properties with the reasons
89
89
  def list_invalid_properties
90
90
  invalid_properties = Array.new
91
+ if @count.nil?
92
+ invalid_properties.push('invalid value for "count", count cannot be nil.')
93
+ end
94
+
95
+ if @results.nil?
96
+ invalid_properties.push('invalid value for "results", results cannot be nil.')
97
+ end
98
+
91
99
  invalid_properties
92
100
  end
93
101
 
94
102
  # Check to see if the all the properties in the model are valid
95
103
  # @return true if the model is valid
96
104
  def valid?
105
+ return false if @count.nil?
106
+ return false if @results.nil?
97
107
  true
98
108
  end
99
109
 
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpCertguardClient
14
- VERSION = '3.49.2'
14
+ VERSION = '3.50.0'
15
15
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_certguard_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.49.2
4
+ version: 3.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator