google-apis-certificatemanager_v1 0.35.0 → 0.36.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: b1242519e52a7ef6ed40e8f14721620a66217d44ee8a55ca64ad774bd8a2a618
4
- data.tar.gz: f31595b6404bb57682160846f5b05466e7b2414e3383f143a518cdbc6007e287
3
+ metadata.gz: 3fc02e3140ad7b8018ca32209172469217bcec5996dc943d42400cb36bd94cda
4
+ data.tar.gz: edc7ed0da289d335941814c8c202e3e8edef18404d75c186e7e33fddbe612f24
5
5
  SHA512:
6
- metadata.gz: 5a1d3bfaf5407ea3548bf3c4ed630c561e89d9213e761dc8fea5e9aa584b8e0c1570a9f2ec4a9b720825de46abb69d95e830c5e3ef0e7164d939c88bfe06dad6
7
- data.tar.gz: b68af7d4e2cb2e6451e0835fd679ab4dd162078c8132b2b74229792724f0dbfc6e42896755c4e71decbc083e83cb2c77905fc621b0c706d75b425da28319b728
6
+ metadata.gz: cf7d936bbdeaf887a338bfd758d19cf3f080274262d8438f923c5a4a5008ee03697f555691651be89308236a88fe30ca08a591b4b0814a1ac37be88f9736e239
7
+ data.tar.gz: 35d5981db1501cea549906892b0b70343bc9db97f28f878894c050591808cef22b0561e24de59cc0f13affd41cd93a688b7411de6cbcf6848eee2689cbf4bcb9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-certificatemanager_v1
2
2
 
3
+ ### v0.36.0 (2025-10-05)
4
+
5
+ * Regenerated from discovery document revision 20250924
6
+
3
7
  ### v0.35.0 (2025-09-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20250908
@@ -46,6 +46,11 @@ module Google
46
46
  class AuthorizationAttemptInfo
47
47
  include Google::Apis::Core::Hashable
48
48
 
49
+ # Output only. The timestamp, when the authorization attempt was made.
50
+ # Corresponds to the JSON property `attemptTime`
51
+ # @return [String]
52
+ attr_accessor :attempt_time
53
+
49
54
  # Output only. Human readable explanation for reaching the state. Provided to
50
55
  # help address the configuration issues. Not guaranteed to be stable. For
51
56
  # programmatic access use FailureReason enum.
@@ -68,16 +73,59 @@ module Google
68
73
  # @return [String]
69
74
  attr_accessor :state
70
75
 
76
+ # Troubleshooting information for the authorization attempt.
77
+ # Corresponds to the JSON property `troubleshooting`
78
+ # @return [Google::Apis::CertificatemanagerV1::Troubleshooting]
79
+ attr_accessor :troubleshooting
80
+
71
81
  def initialize(**args)
72
82
  update!(**args)
73
83
  end
74
84
 
75
85
  # Update properties of this object
76
86
  def update!(**args)
87
+ @attempt_time = args[:attempt_time] if args.key?(:attempt_time)
77
88
  @details = args[:details] if args.key?(:details)
78
89
  @domain = args[:domain] if args.key?(:domain)
79
90
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
80
91
  @state = args[:state] if args.key?(:state)
92
+ @troubleshooting = args[:troubleshooting] if args.key?(:troubleshooting)
93
+ end
94
+ end
95
+
96
+ # CNAME troubleshooting information.
97
+ class Cname
98
+ include Google::Apis::Core::Hashable
99
+
100
+ # Output only. The expected value of the CNAME record for the domain, equals to `
101
+ # dns_resource_record.data` in the corresponding `DnsAuthorization`.
102
+ # Corresponds to the JSON property `expectedData`
103
+ # @return [String]
104
+ attr_accessor :expected_data
105
+
106
+ # Output only. The name of the CNAME record for the domain, equals to `
107
+ # dns_resource_record.name` in the corresponding `DnsAuthorization`.
108
+ # Corresponds to the JSON property `name`
109
+ # @return [String]
110
+ attr_accessor :name
111
+
112
+ # Output only. The resolved CNAME chain. Empty list if the CNAME record for `
113
+ # CNAME.name` is not found. Otherwise the first item is the value of the CNAME
114
+ # record for `CNAME.name`. If the CNAME chain is longer, the second item is the
115
+ # value of the CNAME record for the first item, and so on.
116
+ # Corresponds to the JSON property `resolvedData`
117
+ # @return [Array<String>]
118
+ attr_accessor :resolved_data
119
+
120
+ def initialize(**args)
121
+ update!(**args)
122
+ end
123
+
124
+ # Update properties of this object
125
+ def update!(**args)
126
+ @expected_data = args[:expected_data] if args.key?(:expected_data)
127
+ @name = args[:name] if args.key?(:name)
128
+ @resolved_data = args[:resolved_data] if args.key?(:resolved_data)
81
129
  end
82
130
  end
83
131
 
@@ -580,6 +628,40 @@ module Google
580
628
  end
581
629
  end
582
630
 
631
+ # IPs troubleshooting information.
632
+ class IPs
633
+ include Google::Apis::Core::Hashable
634
+
635
+ # Output only. The list of IP addresses resolved from the domain's A/AAAA
636
+ # records. Can contain both ipv4 and ipv6 addresses.
637
+ # Corresponds to the JSON property `resolved`
638
+ # @return [Array<String>]
639
+ attr_accessor :resolved
640
+
641
+ # Output only. The list of IP addresses, where the certificate is attached and
642
+ # port 443 is open.
643
+ # Corresponds to the JSON property `serving`
644
+ # @return [Array<String>]
645
+ attr_accessor :serving
646
+
647
+ # Output only. The list of IP addresses, where the certificate is attached, but
648
+ # port 443 is not open.
649
+ # Corresponds to the JSON property `servingOnAltPorts`
650
+ # @return [Array<String>]
651
+ attr_accessor :serving_on_alt_ports
652
+
653
+ def initialize(**args)
654
+ update!(**args)
655
+ end
656
+
657
+ # Update properties of this object
658
+ def update!(**args)
659
+ @resolved = args[:resolved] if args.key?(:resolved)
660
+ @serving = args[:serving] if args.key?(:serving)
661
+ @serving_on_alt_ports = args[:serving_on_alt_ports] if args.key?(:serving_on_alt_ports)
662
+ end
663
+ end
664
+
583
665
  # Defines an intermediate CA.
584
666
  class IntermediateCa
585
667
  include Google::Apis::Core::Hashable
@@ -829,6 +911,13 @@ module Google
829
911
  # @return [Array<Google::Apis::CertificatemanagerV1::Operation>]
830
912
  attr_accessor :operations
831
913
 
914
+ # Unordered list. Unreachable resources. Populated when the request sets `
915
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
916
+ # when attempting to list all resources across all supported locations.
917
+ # Corresponds to the JSON property `unreachable`
918
+ # @return [Array<String>]
919
+ attr_accessor :unreachable
920
+
832
921
  def initialize(**args)
833
922
  update!(**args)
834
923
  end
@@ -837,6 +926,7 @@ module Google
837
926
  def update!(**args)
838
927
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
839
928
  @operations = args[:operations] if args.key?(:operations)
929
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
840
930
  end
841
931
  end
842
932
 
@@ -1193,6 +1283,37 @@ module Google
1193
1283
  end
1194
1284
  end
1195
1285
 
1286
+ # Troubleshooting information for the authorization attempt.
1287
+ class Troubleshooting
1288
+ include Google::Apis::Core::Hashable
1289
+
1290
+ # CNAME troubleshooting information.
1291
+ # Corresponds to the JSON property `cname`
1292
+ # @return [Google::Apis::CertificatemanagerV1::Cname]
1293
+ attr_accessor :cname
1294
+
1295
+ # IPs troubleshooting information.
1296
+ # Corresponds to the JSON property `ips`
1297
+ # @return [Google::Apis::CertificatemanagerV1::IPs]
1298
+ attr_accessor :ips
1299
+
1300
+ # Output only. The list of issues discovered during the authorization attempt.
1301
+ # Corresponds to the JSON property `issues`
1302
+ # @return [Array<String>]
1303
+ attr_accessor :issues
1304
+
1305
+ def initialize(**args)
1306
+ update!(**args)
1307
+ end
1308
+
1309
+ # Update properties of this object
1310
+ def update!(**args)
1311
+ @cname = args[:cname] if args.key?(:cname)
1312
+ @ips = args[:ips] if args.key?(:ips)
1313
+ @issues = args[:issues] if args.key?(:issues)
1314
+ end
1315
+ end
1316
+
1196
1317
  # Defines a trust anchor.
1197
1318
  class TrustAnchor
1198
1319
  include Google::Apis::Core::Hashable
@@ -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.35.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250908"
25
+ REVISION = "20250924"
26
26
  end
27
27
  end
28
28
  end
@@ -34,6 +34,12 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
+ class Cname
38
+ class Representation < Google::Apis::Core::JsonRepresentation; end
39
+
40
+ include Google::Apis::Core::JsonObjectSupport
41
+ end
42
+
37
43
  class CancelOperationRequest
38
44
  class Representation < Google::Apis::Core::JsonRepresentation; end
39
45
 
@@ -100,6 +106,12 @@ module Google
100
106
  include Google::Apis::Core::JsonObjectSupport
101
107
  end
102
108
 
109
+ class IPs
110
+ class Representation < Google::Apis::Core::JsonRepresentation; end
111
+
112
+ include Google::Apis::Core::JsonObjectSupport
113
+ end
114
+
103
115
  class IntermediateCa
104
116
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
117
 
@@ -202,6 +214,12 @@ module Google
202
214
  include Google::Apis::Core::JsonObjectSupport
203
215
  end
204
216
 
217
+ class Troubleshooting
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
205
223
  class TrustAnchor
206
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
207
225
 
@@ -236,10 +254,22 @@ module Google
236
254
  class AuthorizationAttemptInfo
237
255
  # @private
238
256
  class Representation < Google::Apis::Core::JsonRepresentation
257
+ property :attempt_time, as: 'attemptTime'
239
258
  property :details, as: 'details'
240
259
  property :domain, as: 'domain'
241
260
  property :failure_reason, as: 'failureReason'
242
261
  property :state, as: 'state'
262
+ property :troubleshooting, as: 'troubleshooting', class: Google::Apis::CertificatemanagerV1::Troubleshooting, decorator: Google::Apis::CertificatemanagerV1::Troubleshooting::Representation
263
+
264
+ end
265
+ end
266
+
267
+ class Cname
268
+ # @private
269
+ class Representation < Google::Apis::Core::JsonRepresentation
270
+ property :expected_data, as: 'expectedData'
271
+ property :name, as: 'name'
272
+ collection :resolved_data, as: 'resolvedData'
243
273
  end
244
274
  end
245
275
 
@@ -369,6 +399,15 @@ module Google
369
399
  end
370
400
  end
371
401
 
402
+ class IPs
403
+ # @private
404
+ class Representation < Google::Apis::Core::JsonRepresentation
405
+ collection :resolved, as: 'resolved'
406
+ collection :serving, as: 'serving'
407
+ collection :serving_on_alt_ports, as: 'servingOnAltPorts'
408
+ end
409
+ end
410
+
372
411
  class IntermediateCa
373
412
  # @private
374
413
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -449,6 +488,7 @@ module Google
449
488
  property :next_page_token, as: 'nextPageToken'
450
489
  collection :operations, as: 'operations', class: Google::Apis::CertificatemanagerV1::Operation, decorator: Google::Apis::CertificatemanagerV1::Operation::Representation
451
490
 
491
+ collection :unreachable, as: 'unreachable'
452
492
  end
453
493
  end
454
494
 
@@ -537,6 +577,17 @@ module Google
537
577
  end
538
578
  end
539
579
 
580
+ class Troubleshooting
581
+ # @private
582
+ class Representation < Google::Apis::Core::JsonRepresentation
583
+ property :cname, as: 'cname', class: Google::Apis::CertificatemanagerV1::Cname, decorator: Google::Apis::CertificatemanagerV1::Cname::Representation
584
+
585
+ property :ips, as: 'ips', class: Google::Apis::CertificatemanagerV1::IPs, decorator: Google::Apis::CertificatemanagerV1::IPs::Representation
586
+
587
+ collection :issues, as: 'issues'
588
+ end
589
+ end
590
+
540
591
  class TrustAnchor
541
592
  # @private
542
593
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1178,6 +1178,13 @@ module Google
1178
1178
  # The standard list page size.
1179
1179
  # @param [String] page_token
1180
1180
  # The standard list page token.
1181
+ # @param [Boolean] return_partial_success
1182
+ # When set to `true`, operations that are reachable are returned as normal, and
1183
+ # those that are unreachable are returned in the [ListOperationsResponse.
1184
+ # unreachable] field. This can only be `true` when reading across collections e.
1185
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1186
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1187
+ # explicitly documented otherwise in service or product specific documentation.
1181
1188
  # @param [String] fields
1182
1189
  # Selector specifying which fields to include in a partial response.
1183
1190
  # @param [String] quota_user
@@ -1195,7 +1202,7 @@ module Google
1195
1202
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1196
1203
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1197
1204
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1198
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1205
+ def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1199
1206
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1200
1207
  command.response_representation = Google::Apis::CertificatemanagerV1::ListOperationsResponse::Representation
1201
1208
  command.response_class = Google::Apis::CertificatemanagerV1::ListOperationsResponse
@@ -1203,6 +1210,7 @@ module Google
1203
1210
  command.query['filter'] = filter unless filter.nil?
1204
1211
  command.query['pageSize'] = page_size unless page_size.nil?
1205
1212
  command.query['pageToken'] = page_token unless page_token.nil?
1213
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1206
1214
  command.query['fields'] = fields unless fields.nil?
1207
1215
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1208
1216
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-certificatemanager_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.35.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-certificatemanager_v1/v0.36.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-certificatemanager_v1
62
62
  rdoc_options: []
63
63
  require_paths: