pulp_certguard_client 3.47.0 → 3.48.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: 7cdf29938818cfb33862be4f991c4c16549af9b2febc82e4a1cded0dc1e1cc95
4
- data.tar.gz: 8c2935bdedd00d374ac0842fc0462415d389b5c754ed17bfdb2522ae0383c866
3
+ metadata.gz: 00e4f763fa638324e3a300b43591efb89cc07cb7a978ed772bd440e95fe16646
4
+ data.tar.gz: 28e73be3e28f8585dce47ee63eb8568c14e9c77312c5c7f55f7aca99c655705e
5
5
  SHA512:
6
- metadata.gz: 4b51d96fbe298c833ddc5daf25f7ecb94f3354c3ec55a494b6c3f21b7303103f15f3016e74a10e29b3e3065c6bc1a8f619a7f0cd06ebe7d7b598326b354bcdd2
7
- data.tar.gz: 20f7f2b5251ef3aee494a927ddce583dde58ef4066d7c1cc521dedef1c5ba6fc0b4026a159a2e248699902d897b00802c7c33e43574d855b0f734534b19aeed4
6
+ metadata.gz: ac5c242f57923aea82abef265e2e052d969c94820b42578ee4cb234014583a6b30389e412c6ffe97e543a48c339fb9f6803c9c90d08b9b05e7e9fadd53a2c7d3
7
+ data.tar.gz: 0c063402d4dd9214e7a67e16d017d55ab126748a5c869bc68efff06a7be8108ed49a05d29e1a35130a41c3eeeb51e012d5c3b6d7a9af0a4dcaf5ac50e8eee691
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.47.0
10
+ - Package version: 3.48.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.47.0.gem
27
+ gem install ./pulp_certguard_client-3.48.0.gem
28
28
  ```
29
29
 
30
- (for development, run `gem install --dev ./pulp_certguard_client-3.47.0.gem` to install the development dependencies)
30
+ (for development, run `gem install --dev ./pulp_certguard_client-3.48.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.47.0'
36
+ gem 'pulp_certguard_client', '~> 3.48.0'
37
37
 
38
38
  ### Install from Git
39
39
 
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
8
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
+ **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
9
10
  **name** | **String** | The unique name. |
10
11
  **description** | **String** | An optional description. | [optional]
11
12
  **ca_certificate** | **String** | A Certificate Authority (CA) certificate (or a bundle thereof) used to verify client-certificate authenticity. |
@@ -17,6 +18,7 @@ require 'PulpCertguardClient'
17
18
 
18
19
  instance = PulpCertguardClient::CertguardRHSMCertGuardResponse.new(pulp_href: null,
19
20
  pulp_created: null,
21
+ pulp_last_updated: null,
20
22
  name: null,
21
23
  description: null,
22
24
  ca_certificate: null)
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **pulp_href** | **String** | | [optional] [readonly]
8
8
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
+ **pulp_last_updated** | **DateTime** | Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same. | [optional] [readonly]
9
10
  **name** | **String** | The unique name. |
10
11
  **description** | **String** | An optional description. | [optional]
11
12
  **ca_certificate** | **String** | A Certificate Authority (CA) certificate (or a bundle thereof) used to verify client-certificate authenticity. |
@@ -17,6 +18,7 @@ require 'PulpCertguardClient'
17
18
 
18
19
  instance = PulpCertguardClient::CertguardX509CertGuardResponse.new(pulp_href: null,
19
20
  pulp_created: null,
21
+ pulp_last_updated: null,
20
22
  name: null,
21
23
  description: null,
22
24
  ca_certificate: null)
@@ -20,6 +20,9 @@ module PulpCertguardClient
20
20
  # Timestamp of creation.
21
21
  attr_accessor :pulp_created
22
22
 
23
+ # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
24
+ attr_accessor :pulp_last_updated
25
+
23
26
  # The unique name.
24
27
  attr_accessor :name
25
28
 
@@ -34,6 +37,7 @@ module PulpCertguardClient
34
37
  {
35
38
  :'pulp_href' => :'pulp_href',
36
39
  :'pulp_created' => :'pulp_created',
40
+ :'pulp_last_updated' => :'pulp_last_updated',
37
41
  :'name' => :'name',
38
42
  :'description' => :'description',
39
43
  :'ca_certificate' => :'ca_certificate'
@@ -45,6 +49,7 @@ module PulpCertguardClient
45
49
  {
46
50
  :'pulp_href' => :'String',
47
51
  :'pulp_created' => :'DateTime',
52
+ :'pulp_last_updated' => :'DateTime',
48
53
  :'name' => :'String',
49
54
  :'description' => :'String',
50
55
  :'ca_certificate' => :'String'
@@ -81,6 +86,10 @@ module PulpCertguardClient
81
86
  self.pulp_created = attributes[:'pulp_created']
82
87
  end
83
88
 
89
+ if attributes.key?(:'pulp_last_updated')
90
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
91
+ end
92
+
84
93
  if attributes.key?(:'name')
85
94
  self.name = attributes[:'name']
86
95
  end
@@ -124,6 +133,7 @@ module PulpCertguardClient
124
133
  self.class == o.class &&
125
134
  pulp_href == o.pulp_href &&
126
135
  pulp_created == o.pulp_created &&
136
+ pulp_last_updated == o.pulp_last_updated &&
127
137
  name == o.name &&
128
138
  description == o.description &&
129
139
  ca_certificate == o.ca_certificate
@@ -138,7 +148,7 @@ module PulpCertguardClient
138
148
  # Calculates hash code according to all attributes.
139
149
  # @return [Integer] Hash code
140
150
  def hash
141
- [pulp_href, pulp_created, name, description, ca_certificate].hash
151
+ [pulp_href, pulp_created, pulp_last_updated, name, description, ca_certificate].hash
142
152
  end
143
153
 
144
154
  # Builds the object from hash
@@ -20,6 +20,9 @@ module PulpCertguardClient
20
20
  # Timestamp of creation.
21
21
  attr_accessor :pulp_created
22
22
 
23
+ # Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
24
+ attr_accessor :pulp_last_updated
25
+
23
26
  # The unique name.
24
27
  attr_accessor :name
25
28
 
@@ -34,6 +37,7 @@ module PulpCertguardClient
34
37
  {
35
38
  :'pulp_href' => :'pulp_href',
36
39
  :'pulp_created' => :'pulp_created',
40
+ :'pulp_last_updated' => :'pulp_last_updated',
37
41
  :'name' => :'name',
38
42
  :'description' => :'description',
39
43
  :'ca_certificate' => :'ca_certificate'
@@ -45,6 +49,7 @@ module PulpCertguardClient
45
49
  {
46
50
  :'pulp_href' => :'String',
47
51
  :'pulp_created' => :'DateTime',
52
+ :'pulp_last_updated' => :'DateTime',
48
53
  :'name' => :'String',
49
54
  :'description' => :'String',
50
55
  :'ca_certificate' => :'String'
@@ -81,6 +86,10 @@ module PulpCertguardClient
81
86
  self.pulp_created = attributes[:'pulp_created']
82
87
  end
83
88
 
89
+ if attributes.key?(:'pulp_last_updated')
90
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
91
+ end
92
+
84
93
  if attributes.key?(:'name')
85
94
  self.name = attributes[:'name']
86
95
  end
@@ -124,6 +133,7 @@ module PulpCertguardClient
124
133
  self.class == o.class &&
125
134
  pulp_href == o.pulp_href &&
126
135
  pulp_created == o.pulp_created &&
136
+ pulp_last_updated == o.pulp_last_updated &&
127
137
  name == o.name &&
128
138
  description == o.description &&
129
139
  ca_certificate == o.ca_certificate
@@ -138,7 +148,7 @@ module PulpCertguardClient
138
148
  # Calculates hash code according to all attributes.
139
149
  # @return [Integer] Hash code
140
150
  def hash
141
- [pulp_href, pulp_created, name, description, ca_certificate].hash
151
+ [pulp_href, pulp_created, pulp_last_updated, name, description, ca_certificate].hash
142
152
  end
143
153
 
144
154
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpCertguardClient
14
- VERSION = '3.47.0'
14
+ VERSION = '3.48.0'
15
15
  end
@@ -44,6 +44,12 @@ describe 'CertguardRHSMCertGuardResponse' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_last_updated"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "name"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
@@ -44,6 +44,12 @@ describe 'CertguardX509CertGuardResponse' do
44
44
  end
45
45
  end
46
46
 
47
+ describe 'test attribute "pulp_last_updated"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
47
53
  describe 'test attribute "name"' do
48
54
  it 'should work' do
49
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulp_certguard_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.47.0
4
+ version: 3.48.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-22 00:00:00.000000000 Z
11
+ date: 2024-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday