google-apis-certificatemanager_v1 0.4.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 53ba4d38ea99a6e08ecb2d4a4499b4376e0776fc984e5a7645e558878fe6fd3c
4
- data.tar.gz: a7ba61248be6eb97ee7dbd53534462c947553ac709d970be12d58d8626ac0ca0
3
+ metadata.gz: 9298b8229f30bc5c36d76066fec3b30bbf667b8288be10558a67dc0e7a3e6d48
4
+ data.tar.gz: 25cd9c2a9141f500d9d9edeb96776fd76a1aeaf1fd08eecfa8e4347fd279921e
5
5
  SHA512:
6
- metadata.gz: 2db226bb7a85d9af9588c3c88758c1c056de8ccc25dd92d1596191d6988a11658de9c73f97348f74e5dbabcd07a2c5f2ea0bd7f1bce2b140331aa42688ae16f9
7
- data.tar.gz: fa4cabb2043aefe34527d60d022ee72410e0adbabffbe99ee5173bfb93b35cac3b9c61f438e7d45d81877b226a2418fcabd04b6ebf5e17470aa501d3f4f49327
6
+ metadata.gz: a4c9d6f3cf264dce2ddccc942d76b9d27d195d7eaaeb31b766b33ae2d06cdd50c8223c675d02c58e2cf2709f878bb2f4456f3518124aa1ac5d812338e82896ed
7
+ data.tar.gz: 39e4b54cfe3ddac7887e834a477fc109f31c904e24d3af784aadee939e8c706b5b6017bcb59cd8726161ae4486b16a570fc3369519eb83623f2fd28d54bf8662
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-certificatemanager_v1
2
2
 
3
+ ### v0.7.0 (2022-06-06)
4
+
5
+ * Regenerated using generator version 0.5.0
6
+
7
+ ### v0.6.0 (2022-05-29)
8
+
9
+ * Regenerated from discovery document revision 20220523
10
+
11
+ ### v0.5.0 (2022-04-17)
12
+
13
+ * Regenerated from discovery document revision 20220407
14
+
3
15
  ### v0.4.0 (2022-04-02)
4
16
 
5
17
  * Regenerated from discovery document revision 20220324
@@ -874,6 +874,48 @@ module Google
874
874
  end
875
875
  end
876
876
 
877
+ # ResourcesCount represents the resource that stores aggregated project's info
878
+ # in the given location, e.g.: total number of certificates assigned to the
879
+ # project.
880
+ class ResourcesCount
881
+ include Google::Apis::Core::Hashable
882
+
883
+ # The count of certificates.
884
+ # Corresponds to the JSON property `certificates`
885
+ # @return [Fixnum]
886
+ attr_accessor :certificates
887
+
888
+ # Required. Input only. The time of the computation. The field is input only,
889
+ # used in Create and Update calls. For Update call, new values of selected
890
+ # resources are set if their compute_time is younger than the persisted ones, e.
891
+ # g.: If you support 3 types of resources: A, B and C, and you have: 'A'
892
+ # resource count computed at timestamp = 3 'B' resource count computed at
893
+ # timestamp = 10 'C' resource count computed at timestamp = 5 And you're going
894
+ # to update all of them with compute_time = 8, only 'A' and 'C' will be updated,
895
+ # as 'B' already has fresher data. For Get call a ResourcesCount instance
896
+ # contains the freshest values for every type.
897
+ # Corresponds to the JSON property `computeTime`
898
+ # @return [String]
899
+ attr_accessor :compute_time
900
+
901
+ # The singleton resource of the resources count. Must be in the format `projects/
902
+ # */locations/*/resourcesCounts/single`.
903
+ # Corresponds to the JSON property `name`
904
+ # @return [String]
905
+ attr_accessor :name
906
+
907
+ def initialize(**args)
908
+ update!(**args)
909
+ end
910
+
911
+ # Update properties of this object
912
+ def update!(**args)
913
+ @certificates = args[:certificates] if args.key?(:certificates)
914
+ @compute_time = args[:compute_time] if args.key?(:compute_time)
915
+ @name = args[:name] if args.key?(:name)
916
+ end
917
+ end
918
+
877
919
  # Certificate data for a SelfManaged Certificate. SelfManaged Certificates are
878
920
  # uploaded by the user. Updating such certificates before they expire remains
879
921
  # the user's responsibility.
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CertificatemanagerV1
18
18
  # Version of the google-apis-certificatemanager_v1 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220324"
25
+ REVISION = "20220523"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,12 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class ResourcesCount
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class SelfManagedCertificate
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
@@ -385,6 +391,15 @@ module Google
385
391
  end
386
392
  end
387
393
 
394
+ class ResourcesCount
395
+ # @private
396
+ class Representation < Google::Apis::Core::JsonRepresentation
397
+ property :certificates, :numeric_string => true, as: 'certificates'
398
+ property :compute_time, as: 'computeTime'
399
+ property :name, as: 'name'
400
+ end
401
+ end
402
+
388
403
  class SelfManagedCertificate
389
404
  # @private
390
405
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -84,8 +84,8 @@ module Google
84
84
  # The resource that owns the locations collection, if applicable.
85
85
  # @param [String] filter
86
86
  # A filter to narrow down results to a preferred subset. The filtering language
87
- # accepts strings like "displayName=tokyo", and is documented in more detail in [
88
- # AIP-160](https://google.aip.dev/160).
87
+ # accepts strings like `"displayName=tokyo"`, and is documented in more detail
88
+ # in [AIP-160](https://google.aip.dev/160).
89
89
  # @param [Fixnum] page_size
90
90
  # The maximum number of results to return. If not set, the service selects a
91
91
  # default.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-certificatemanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-04 00:00:00.000000000 Z
11
+ date: 2022-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.4'
19
+ version: '0.5'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.4'
29
+ version: '0.5'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.7.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Certificate Manager API V1