google-apis-certificatemanager_v1 0.10.0 → 0.11.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: 74ebb7b8ff3cbb2d28f47157a59f80003a1fa4445a224a2ff8f80fd24940958a
4
- data.tar.gz: 37a5764b1c232441eadd1198669a28b930dc9fa705d3c4165766c4c7b00e2347
3
+ metadata.gz: 11cf2fe0d1b2809ef4ac16efb014d30cf9467329c315d3a87ca3307fd264f7d0
4
+ data.tar.gz: f928ec59c200103170b678e12055b3bcbce0df193597876016ba64cc077953ae
5
5
  SHA512:
6
- metadata.gz: 691d8f966210fd3b1a9cefa3db66800629d3e31d271f10e954500f9edaa1a09b68286702dc0a5dc283c7bf6f18041977505e7a9f6f1b4a187bb8ff281c1d0c8b
7
- data.tar.gz: 3b727d7f3c0fa8b42f46ad44c129560e4a91f7586606958ac236ec13249d35331188c9a35729546a690e1fa9f832949997f23fd2b16a21921faebfd3ec63e9be
6
+ metadata.gz: 5eae323fc525f7b3a89cab1c9a83765b929f3b681249f950da48b3bd124146fd0203cb1ada8f937c868b57190ecc79bcc7200a80e37e48fad924353eaf518231
7
+ data.tar.gz: bf1da9e6e44a95a0f94b1e62ac39c1ba2fc3a994474b65b66cc97bb8cf015e8712906f69b87bb20c911fdc07dbbbcac2168955b596416a51e1f738251da05522
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-certificatemanager_v1
2
2
 
3
+ ### v0.11.0 (2022-07-16)
4
+
5
+ * Regenerated from discovery document revision 20220707
6
+ * Regenerated using generator version 0.9.0
7
+
3
8
  ### v0.10.0 (2022-07-01)
4
9
 
5
10
  * Regenerated using generator version 0.8.0
@@ -876,48 +876,6 @@ module Google
876
876
  end
877
877
  end
878
878
 
879
- # ResourcesCount represents the resource that stores aggregated project's info
880
- # in the given location, e.g.: total number of certificates assigned to the
881
- # project.
882
- class ResourcesCount
883
- include Google::Apis::Core::Hashable
884
-
885
- # The count of certificates.
886
- # Corresponds to the JSON property `certificates`
887
- # @return [Fixnum]
888
- attr_accessor :certificates
889
-
890
- # Required. Input only. The time of the computation. The field is input only,
891
- # used in Create and Update calls. For Update call, new values of selected
892
- # resources are set if their compute_time is younger than the persisted ones, e.
893
- # g.: If you support 3 types of resources: A, B and C, and you have: 'A'
894
- # resource count computed at timestamp = 3 'B' resource count computed at
895
- # timestamp = 10 'C' resource count computed at timestamp = 5 And you're going
896
- # to update all of them with compute_time = 8, only 'A' and 'C' will be updated,
897
- # as 'B' already has fresher data. For Get call a ResourcesCount instance
898
- # contains the freshest values for every type.
899
- # Corresponds to the JSON property `computeTime`
900
- # @return [String]
901
- attr_accessor :compute_time
902
-
903
- # The singleton resource of the resources count. Must be in the format `projects/
904
- # */locations/*/resourcesCounts/single`.
905
- # Corresponds to the JSON property `name`
906
- # @return [String]
907
- attr_accessor :name
908
-
909
- def initialize(**args)
910
- update!(**args)
911
- end
912
-
913
- # Update properties of this object
914
- def update!(**args)
915
- @certificates = args[:certificates] if args.key?(:certificates)
916
- @compute_time = args[:compute_time] if args.key?(:compute_time)
917
- @name = args[:name] if args.key?(:name)
918
- end
919
- end
920
-
921
879
  # Certificate data for a SelfManaged Certificate. SelfManaged Certificates are
922
880
  # uploaded by the user. Updating such certificates before they expire remains
923
881
  # 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.10.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220602"
25
+ REVISION = "20220707"
26
26
  end
27
27
  end
28
28
  end
@@ -148,12 +148,6 @@ 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
-
157
151
  class SelfManagedCertificate
158
152
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
153
 
@@ -391,15 +385,6 @@ module Google
391
385
  end
392
386
  end
393
387
 
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
-
403
388
  class SelfManagedCertificate
404
389
  # @private
405
390
  class Representation < Google::Apis::Core::JsonRepresentation
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.10.0
4
+ version: 0.11.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-07-04 00:00:00.000000000 Z
11
+ date: 2022-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.11.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: []