google-cloud-deploy-v1 0.15.0 → 0.17.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.
Files changed (24) hide show
  1. checksums.yaml +4 -4
  2. data/AUTHENTICATION.md +72 -99
  3. data/lib/google/cloud/deploy/v1/cloud_deploy/client.rb +85 -59
  4. data/lib/google/cloud/deploy/v1/cloud_deploy/operations.rb +28 -6
  5. data/lib/google/cloud/deploy/v1/cloud_deploy/rest/client.rb +87 -58
  6. data/lib/google/cloud/deploy/v1/cloud_deploy/rest/operations.rb +33 -8
  7. data/lib/google/cloud/deploy/v1/cloud_deploy/rest/service_stub.rb +14 -2
  8. data/lib/google/cloud/deploy/v1/cloud_deploy_pb.rb +1 -1
  9. data/lib/google/cloud/deploy/v1/deliverypipeline_notification_payload_pb.rb +1 -1
  10. data/lib/google/cloud/deploy/v1/jobrun_notification_payload_pb.rb +1 -1
  11. data/lib/google/cloud/deploy/v1/release_notification_payload_pb.rb +1 -1
  12. data/lib/google/cloud/deploy/v1/release_render_payload_pb.rb +2 -1
  13. data/lib/google/cloud/deploy/v1/rollout_notification_payload_pb.rb +1 -1
  14. data/lib/google/cloud/deploy/v1/rollout_update_payload_pb.rb +1 -1
  15. data/lib/google/cloud/deploy/v1/version.rb +1 -1
  16. data/proto_docs/google/api/client.rb +1 -0
  17. data/proto_docs/google/cloud/deploy/v1/cloud_deploy.rb +69 -66
  18. data/proto_docs/google/cloud/deploy/v1/deliverypipeline_notification_payload.rb +3 -0
  19. data/proto_docs/google/cloud/deploy/v1/jobrun_notification_payload.rb +6 -0
  20. data/proto_docs/google/cloud/deploy/v1/release_notification_payload.rb +6 -0
  21. data/proto_docs/google/cloud/deploy/v1/release_render_payload.rb +8 -0
  22. data/proto_docs/google/cloud/deploy/v1/rollout_notification_payload.rb +9 -3
  23. data/proto_docs/google/cloud/deploy/v1/rollout_update_payload.rb +11 -6
  24. metadata +9 -9
@@ -326,6 +326,12 @@ module Google
326
326
  # Optional. The time to wait for route updates to propagate. The maximum
327
327
  # configurable time is 3 hours, in seconds format. If unspecified, there is
328
328
  # no wait time.
329
+ # @!attribute [rw] stable_cutback_duration
330
+ # @return [::Google::Protobuf::Duration]
331
+ # Optional. The amount of time to migrate traffic back from the canary
332
+ # Service to the original Service during the stable phase deployment. If
333
+ # specified, must be between 15s and 3600s. If unspecified, there is no
334
+ # cutback time.
329
335
  class GatewayServiceMesh
330
336
  include ::Google::Protobuf::MessageExts
331
337
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -361,15 +367,15 @@ module Google
361
367
  # @!attribute [rw] canary_revision_tags
362
368
  # @return [::Array<::String>]
363
369
  # Optional. A list of tags that are added to the canary revision while the
364
- # canary deployment is in progress.
370
+ # canary phase is in progress.
365
371
  # @!attribute [rw] prior_revision_tags
366
372
  # @return [::Array<::String>]
367
373
  # Optional. A list of tags that are added to the prior revision while the
368
- # canary deployment is in progress.
374
+ # canary phase is in progress.
369
375
  # @!attribute [rw] stable_revision_tags
370
376
  # @return [::Array<::String>]
371
- # Optional. A list of tags that are added to the final stable revision after
372
- # the canary deployment is completed.
377
+ # Optional. A list of tags that are added to the final stable revision when
378
+ # the stable phase is applied.
373
379
  class CloudRunConfig
374
380
  include ::Google::Protobuf::MessageExts
375
381
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -523,9 +529,9 @@ module Google
523
529
  # @!attribute [rw] request_id
524
530
  # @return [::String]
525
531
  # Optional. A request ID to identify requests. Specify a unique request ID
526
- # so that if you must retry your request, the server will know to ignore
527
- # the request if it has already been completed. The server will guarantee
528
- # that for at least 60 minutes since the first request.
532
+ # so that if you must retry your request, the server knows to ignore the
533
+ # request if it has already been completed. The server guarantees that for
534
+ # at least 60 minutes after the first request.
529
535
  #
530
536
  # For example, consider a situation where you make an initial request and the
531
537
  # request times out. If you make the request again with the same request ID,
@@ -550,17 +556,17 @@ module Google
550
556
  # Required. Field mask is used to specify the fields to be overwritten in the
551
557
  # `DeliveryPipeline` resource by the update.
552
558
  # The fields specified in the update_mask are relative to the resource, not
553
- # the full request. A field will be overwritten if it is in the mask. If the
554
- # user does not provide a mask then all fields will be overwritten.
559
+ # the full request. A field will be overwritten if it's in the mask. If the
560
+ # user doesn't provide a mask then all fields are overwritten.
555
561
  # @!attribute [rw] delivery_pipeline
556
562
  # @return [::Google::Cloud::Deploy::V1::DeliveryPipeline]
557
563
  # Required. The `DeliveryPipeline` to update.
558
564
  # @!attribute [rw] request_id
559
565
  # @return [::String]
560
566
  # Optional. A request ID to identify requests. Specify a unique request ID
561
- # so that if you must retry your request, the server will know to ignore
562
- # the request if it has already been completed. The server will guarantee
563
- # that for at least 60 minutes since the first request.
567
+ # so that if you must retry your request, the server knows to ignore the
568
+ # request if it has already been completed. The server guarantees that for
569
+ # at least 60 minutes after the first request.
564
570
  #
565
571
  # For example, consider a situation where you make an initial request and the
566
572
  # request times out. If you make the request again with the same request ID,
@@ -591,9 +597,9 @@ module Google
591
597
  # @!attribute [rw] request_id
592
598
  # @return [::String]
593
599
  # Optional. A request ID to identify requests. Specify a unique request ID
594
- # so that if you must retry your request, the server will know to ignore
595
- # the request if it has already been completed. The server will guarantee
596
- # that for at least 60 minutes after the first request.
600
+ # so that if you must retry your request, the server knows to ignore the
601
+ # request if it has already been completed. The server guarantees that for
602
+ # at least 60 minutes after the first request.
597
603
  #
598
604
  # For example, consider a situation where you make an initial request and the
599
605
  # request times out. If you make the request again with the same request ID,
@@ -1018,9 +1024,9 @@ module Google
1018
1024
  # @!attribute [rw] request_id
1019
1025
  # @return [::String]
1020
1026
  # Optional. A request ID to identify requests. Specify a unique request ID
1021
- # so that if you must retry your request, the server will know to ignore
1022
- # the request if it has already been completed. The server will guarantee
1023
- # that for at least 60 minutes since the first request.
1027
+ # so that if you must retry your request, the server knows to ignore the
1028
+ # request if it has already been completed. The server guarantees that for
1029
+ # at least 60 minutes after the first request.
1024
1030
  #
1025
1031
  # For example, consider a situation where you make an initial request and the
1026
1032
  # request times out. If you make the request again with the same request ID,
@@ -1045,17 +1051,17 @@ module Google
1045
1051
  # Required. Field mask is used to specify the fields to be overwritten in the
1046
1052
  # Target resource by the update.
1047
1053
  # The fields specified in the update_mask are relative to the resource, not
1048
- # the full request. A field will be overwritten if it is in the mask. If the
1049
- # user does not provide a mask then all fields will be overwritten.
1054
+ # the full request. A field will be overwritten if it's in the mask. If the
1055
+ # user doesn't provide a mask then all fields are overwritten.
1050
1056
  # @!attribute [rw] target
1051
1057
  # @return [::Google::Cloud::Deploy::V1::Target]
1052
1058
  # Required. The `Target` to update.
1053
1059
  # @!attribute [rw] request_id
1054
1060
  # @return [::String]
1055
1061
  # Optional. A request ID to identify requests. Specify a unique request ID
1056
- # so that if you must retry your request, the server will know to ignore
1057
- # the request if it has already been completed. The server will guarantee
1058
- # that for at least 60 minutes since the first request.
1062
+ # so that if you must retry your request, the server knows to ignore the
1063
+ # request if it has already been completed. The server guarantees that for
1064
+ # at least 60 minutes after the first request.
1059
1065
  #
1060
1066
  # For example, consider a situation where you make an initial request and the
1061
1067
  # request times out. If you make the request again with the same request ID,
@@ -1086,9 +1092,9 @@ module Google
1086
1092
  # @!attribute [rw] request_id
1087
1093
  # @return [::String]
1088
1094
  # Optional. A request ID to identify requests. Specify a unique request ID
1089
- # so that if you must retry your request, the server will know to ignore
1090
- # the request if it has already been completed. The server will guarantee
1091
- # that for at least 60 minutes after the first request.
1095
+ # so that if you must retry your request, the server knows to ignore the
1096
+ # request if it has already been completed. The server guarantees that for
1097
+ # at least 60 minutes after the first request.
1092
1098
  #
1093
1099
  # For example, consider a situation where you make an initial request and the
1094
1100
  # request times out. If you make the request again with the same request ID,
@@ -1119,8 +1125,8 @@ module Google
1119
1125
  # A `CustomTargetType` resource in the Cloud Deploy API.
1120
1126
  #
1121
1127
  # A `CustomTargetType` defines a type of custom target that can be referenced
1122
- # in a `Target` in order to facilitate deploying to a runtime that does not
1123
- # have a 1P integration with Cloud Deploy.
1128
+ # in a `Target` in order to facilitate deploying to other systems besides the
1129
+ # supported runtimes.
1124
1130
  # @!attribute [rw] name
1125
1131
  # @return [::String]
1126
1132
  # Optional. Name of the `CustomTargetType`. Format is
@@ -1316,7 +1322,7 @@ module Google
1316
1322
  # @!attribute [rw] parent
1317
1323
  # @return [::String]
1318
1324
  # Required. The parent collection in which the `CustomTargetType` should be
1319
- # created in. Format should be
1325
+ # created. Format should be
1320
1326
  # `projects/{project_id}/locations/{location_name}`.
1321
1327
  # @!attribute [rw] custom_target_type_id
1322
1328
  # @return [::String]
@@ -1327,9 +1333,9 @@ module Google
1327
1333
  # @!attribute [rw] request_id
1328
1334
  # @return [::String]
1329
1335
  # Optional. A request ID to identify requests. Specify a unique request ID
1330
- # so that if you must retry your request, the server will know to ignore
1331
- # the request if it has already been completed. The server will guarantee
1332
- # that for at least 60 minutes since the first request.
1336
+ # so that if you must retry your request, the server knows to ignore the
1337
+ # request if it has already been completed. The server guarantees that for
1338
+ # at least 60 minutes after the first request.
1333
1339
  #
1334
1340
  # For example, consider a situation where you make an initial request and the
1335
1341
  # request times out. If you make the request again with the same request ID,
@@ -1354,17 +1360,17 @@ module Google
1354
1360
  # Required. Field mask is used to specify the fields to be overwritten in the
1355
1361
  # `CustomTargetType` resource by the update.
1356
1362
  # The fields specified in the update_mask are relative to the resource, not
1357
- # the full request. A field will be overwritten if it is in the mask. If the
1358
- # user does not provide a mask then all fields will be overwritten.
1363
+ # the full request. A field will be overwritten if it's in the mask. If the
1364
+ # user doesn't provide a mask then all fields are overwritten.
1359
1365
  # @!attribute [rw] custom_target_type
1360
1366
  # @return [::Google::Cloud::Deploy::V1::CustomTargetType]
1361
1367
  # Required. The `CustomTargetType` to update.
1362
1368
  # @!attribute [rw] request_id
1363
1369
  # @return [::String]
1364
1370
  # Optional. A request ID to identify requests. Specify a unique request ID
1365
- # so that if you must retry your request, the server will know to ignore
1366
- # the request if it has already been completed. The server will guarantee
1367
- # that for at least 60 minutes since the first request.
1371
+ # so that if you must retry your request, the server knows to ignore the
1372
+ # request if it has already been completed. The server guarantees that for
1373
+ # at least 60 minutes after the first request.
1368
1374
  #
1369
1375
  # For example, consider a situation where you make an initial request and the
1370
1376
  # request times out. If you make the request again with the same request ID,
@@ -1395,9 +1401,9 @@ module Google
1395
1401
  # @!attribute [rw] request_id
1396
1402
  # @return [::String]
1397
1403
  # Optional. A request ID to identify requests. Specify a unique request ID
1398
- # so that if you must retry your request, the server will know to ignore
1399
- # the request if it has already been completed. The server will guarantee
1400
- # that for at least 60 minutes after the first request.
1404
+ # so that if you must retry your request, the server knows to ignore the
1405
+ # request if it has already been completed. The server guarantees that for
1406
+ # at least 60 minutes after the first request.
1401
1407
  #
1402
1408
  # For example, consider a situation where you make an initial request and the
1403
1409
  # request times out. If you make the request again with the same request ID,
@@ -1425,10 +1431,7 @@ module Google
1425
1431
  extend ::Google::Protobuf::MessageExts::ClassMethods
1426
1432
  end
1427
1433
 
1428
- # Contains criteria for selecting Targets. Attributes provided must match the
1429
- # target resource in order for policy restrictions to apply. E.g. if id "prod"
1430
- # and labels "foo: bar" are given the target resource must match both that id
1431
- # and have that label in order to be selected.
1434
+ # Contains criteria for selecting Targets.
1432
1435
  # @!attribute [rw] id
1433
1436
  # @return [::String]
1434
1437
  # ID of the `Target`. The value of this field could be one of the
@@ -1827,7 +1830,7 @@ module Google
1827
1830
  # Output only. Metadata associated with rendering for Cloud Run.
1828
1831
  # @!attribute [r] custom
1829
1832
  # @return [::Google::Cloud::Deploy::V1::CustomMetadata]
1830
- # Output only. Custom metadata provided by user defined render operation.
1833
+ # Output only. Custom metadata provided by user-defined render operation.
1831
1834
  class RenderMetadata
1832
1835
  include ::Google::Protobuf::MessageExts
1833
1836
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1905,9 +1908,9 @@ module Google
1905
1908
  # @!attribute [rw] request_id
1906
1909
  # @return [::String]
1907
1910
  # Optional. A request ID to identify requests. Specify a unique request ID
1908
- # so that if you must retry your request, the server will know to ignore
1909
- # the request if it has already been completed. The server will guarantee
1910
- # that for at least 60 minutes since the first request.
1911
+ # so that if you must retry your request, the server knows to ignore the
1912
+ # request if it has already been completed. The server guarantees that for
1913
+ # at least 60 minutes after the first request.
1911
1914
  #
1912
1915
  # For example, consider a situation where you make an initial request and the
1913
1916
  # request times out. If you make the request again with the same request ID,
@@ -2140,7 +2143,7 @@ module Google
2140
2143
  # interactions between Automation service and this rollout.
2141
2144
  # @!attribute [r] custom
2142
2145
  # @return [::Google::Cloud::Deploy::V1::CustomMetadata]
2143
- # Output only. Custom metadata provided by user defined `Rollout` operations.
2146
+ # Output only. Custom metadata provided by user-defined `Rollout` operations.
2144
2147
  class Metadata
2145
2148
  include ::Google::Protobuf::MessageExts
2146
2149
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -2157,7 +2160,7 @@ module Google
2157
2160
  # Output only. Custom Target metadata associated with a `DeployJobRun`.
2158
2161
  # @!attribute [r] custom
2159
2162
  # @return [::Google::Cloud::Deploy::V1::CustomMetadata]
2160
- # Output only. Custom metadata provided by user defined deploy operation.
2163
+ # Output only. Custom metadata provided by user-defined deploy operation.
2161
2164
  class DeployJobRunMetadata
2162
2165
  include ::Google::Protobuf::MessageExts
2163
2166
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -2216,10 +2219,10 @@ module Google
2216
2219
  extend ::Google::Protobuf::MessageExts::ClassMethods
2217
2220
  end
2218
2221
 
2219
- # CustomMetadata contains information from a user defined operation.
2222
+ # CustomMetadata contains information from a user-defined operation.
2220
2223
  # @!attribute [r] values
2221
2224
  # @return [::Google::Protobuf::Map{::String => ::String}]
2222
- # Output only. Key-value pairs provided by the user defined operation.
2225
+ # Output only. Key-value pairs provided by the user-defined operation.
2223
2226
  class CustomMetadata
2224
2227
  include ::Google::Protobuf::MessageExts
2225
2228
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -2492,9 +2495,9 @@ module Google
2492
2495
  # @!attribute [rw] request_id
2493
2496
  # @return [::String]
2494
2497
  # Optional. A request ID to identify requests. Specify a unique request ID
2495
- # so that if you must retry your request, the server will know to ignore
2496
- # the request if it has already been completed. The server will guarantee
2497
- # that for at least 60 minutes since the first request.
2498
+ # so that if you must retry your request, the server knows to ignore the
2499
+ # request if it has already been completed. The server guarantees that for
2500
+ # at least 60 minutes after the first request.
2498
2501
  #
2499
2502
  # For example, consider a situation where you make an initial request and the
2500
2503
  # request times out. If you make the request again with the same request ID,
@@ -3351,9 +3354,9 @@ module Google
3351
3354
  # @!attribute [rw] request_id
3352
3355
  # @return [::String]
3353
3356
  # Optional. A request ID to identify requests. Specify a unique request ID
3354
- # so that if you must retry your request, the server will know to ignore
3355
- # the request if it has already been completed. The server will guarantee
3356
- # that for at least 60 minutes since the first request.
3357
+ # so that if you must retry your request, the server knows to ignore the
3358
+ # request if it has already been completed. The server guarantees that for
3359
+ # at least 60 minutes after the first request.
3357
3360
  #
3358
3361
  # For example, consider a situation where you make an initial request and the
3359
3362
  # request times out. If you make the request again with the same request ID,
@@ -3378,17 +3381,17 @@ module Google
3378
3381
  # Required. Field mask is used to specify the fields to be overwritten in the
3379
3382
  # `Automation` resource by the update.
3380
3383
  # The fields specified in the update_mask are relative to the resource, not
3381
- # the full request. A field will be overwritten if it is in the mask. If the
3382
- # user does not provide a mask then all fields will be overwritten.
3384
+ # the full request. A field will be overwritten if it's in the mask. If the
3385
+ # user doesn't provide a mask then all fields are overwritten.
3383
3386
  # @!attribute [rw] automation
3384
3387
  # @return [::Google::Cloud::Deploy::V1::Automation]
3385
3388
  # Required. The `Automation` to update.
3386
3389
  # @!attribute [rw] request_id
3387
3390
  # @return [::String]
3388
3391
  # Optional. A request ID to identify requests. Specify a unique request ID
3389
- # so that if you must retry your request, the server will know to ignore
3390
- # the request if it has already been completed. The server will guarantee
3391
- # that for at least 60 minutes since the first request.
3392
+ # so that if you must retry your request, the server knows to ignore the
3393
+ # request if it has already been completed. The server guarantees that for
3394
+ # at least 60 minutes after the first request.
3392
3395
  #
3393
3396
  # For example, consider a situation where you make an initial request and the
3394
3397
  # request times out. If you make the request again with the same request ID,
@@ -3419,9 +3422,9 @@ module Google
3419
3422
  # @!attribute [rw] request_id
3420
3423
  # @return [::String]
3421
3424
  # Optional. A request ID to identify requests. Specify a unique request ID
3422
- # so that if you must retry your request, the server will know to ignore
3423
- # the request if it has already been completed. The server will guarantee
3424
- # that for at least 60 minutes after the first request.
3425
+ # so that if you must retry your request, the server knows to ignore the
3426
+ # request if it has already been completed. The server guarantees that for
3427
+ # at least 60 minutes after the first request.
3425
3428
  #
3426
3429
  # For example, consider a situation where you make an initial request and the
3427
3430
  # request times out. If you make the request again with the same request ID,
@@ -27,6 +27,9 @@ module Google
27
27
  # @!attribute [rw] message
28
28
  # @return [::String]
29
29
  # Debug message for when a notification fails to send.
30
+ # @!attribute [rw] pipeline_uid
31
+ # @return [::String]
32
+ # Unique identifier of the `DeliveryPipeline`.
30
33
  # @!attribute [rw] delivery_pipeline
31
34
  # @return [::String]
32
35
  # The name of the `Delivery Pipeline`.
@@ -36,9 +36,15 @@ module Google
36
36
  # @!attribute [rw] release_uid
37
37
  # @return [::String]
38
38
  # Unique identifier of the `Release`.
39
+ # @!attribute [rw] release
40
+ # @return [::String]
41
+ # The name of the `Release`.
39
42
  # @!attribute [rw] rollout_uid
40
43
  # @return [::String]
41
44
  # Unique identifier of the `Rollout`.
45
+ # @!attribute [rw] rollout
46
+ # @return [::String]
47
+ # The name of the `Rollout`.
42
48
  # @!attribute [rw] target_id
43
49
  # @return [::String]
44
50
  # ID of the `Target`.
@@ -27,6 +27,12 @@ module Google
27
27
  # @!attribute [rw] message
28
28
  # @return [::String]
29
29
  # Debug message for when a notification fails to send.
30
+ # @!attribute [rw] pipeline_uid
31
+ # @return [::String]
32
+ # Unique identifier of the `DeliveryPipeline`.
33
+ # @!attribute [rw] release_uid
34
+ # @return [::String]
35
+ # Unique identifier of the `Release`.
30
36
  # @!attribute [rw] release
31
37
  # @return [::String]
32
38
  # The name of the `Release`.
@@ -27,9 +27,17 @@ module Google
27
27
  # @return [::String]
28
28
  # Debug message for when a render transition occurs. Provides further
29
29
  # details as rendering progresses through render states.
30
+ # @!attribute [rw] pipeline_uid
31
+ # @return [::String]
32
+ # Unique identifier of the `DeliveryPipeline`.
30
33
  # @!attribute [rw] release
31
34
  # @return [::String]
32
35
  # The name of the release.
36
+ # release_uid is not in this log message because we write some of these log
37
+ # messages at release creation time, before we've generated the uid.
38
+ # @!attribute [rw] type
39
+ # @return [::Google::Cloud::Deploy::V1::Type]
40
+ # Type of this notification, e.g. for a release render state change event.
33
41
  # @!attribute [rw] release_render_state
34
42
  # @return [::Google::Cloud::Deploy::V1::Release::RenderState]
35
43
  # The state of the release render.
@@ -33,15 +33,21 @@ module Google
33
33
  # @!attribute [rw] release_uid
34
34
  # @return [::String]
35
35
  # Unique identifier of the `Release`.
36
+ # @!attribute [rw] release
37
+ # @return [::String]
38
+ # The name of the `Release`.
39
+ # @!attribute [rw] rollout_uid
40
+ # @return [::String]
41
+ # Unique identifier of the `Rollout`.
36
42
  # @!attribute [rw] rollout
37
43
  # @return [::String]
38
44
  # The name of the `Rollout`.
39
- # @!attribute [rw] type
40
- # @return [::Google::Cloud::Deploy::V1::Type]
41
- # Type of this notification, e.g. for a Pub/Sub failure.
42
45
  # @!attribute [rw] target_id
43
46
  # @return [::String]
44
47
  # ID of the `Target` that the rollout is deployed to.
48
+ # @!attribute [rw] type
49
+ # @return [::Google::Cloud::Deploy::V1::Type]
50
+ # Type of this notification, e.g. for a Pub/Sub failure.
45
51
  class RolloutNotificationEvent
46
52
  include ::Google::Protobuf::MessageExts
47
53
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -23,27 +23,32 @@ module Google
23
23
  module V1
24
24
  # Payload proto for "clouddeploy.googleapis.com/rollout_update"
25
25
  # Platform Log event that describes the rollout update event.
26
+ # @!attribute [rw] message
27
+ # @return [::String]
28
+ # Debug message for when a rollout update event occurs.
26
29
  # @!attribute [rw] pipeline_uid
27
30
  # @return [::String]
28
31
  # Unique identifier of the pipeline.
29
32
  # @!attribute [rw] release_uid
30
33
  # @return [::String]
31
34
  # Unique identifier of the release.
35
+ # @!attribute [rw] release
36
+ # @return [::String]
37
+ # The name of the `Release`.
32
38
  # @!attribute [rw] rollout
33
39
  # @return [::String]
34
40
  # The name of the rollout.
41
+ # rollout_uid is not in this log message because we write some of these log
42
+ # messages at rollout creation time, before we've generated the uid.
35
43
  # @!attribute [rw] target_id
36
44
  # @return [::String]
37
45
  # ID of the target.
38
- # @!attribute [rw] rollout_update_type
39
- # @return [::Google::Cloud::Deploy::V1::RolloutUpdateEvent::RolloutUpdateType]
40
- # The type of the rollout update.
41
- # @!attribute [rw] message
42
- # @return [::String]
43
- # Debug message for when a rollout update event occurs.
44
46
  # @!attribute [rw] type
45
47
  # @return [::Google::Cloud::Deploy::V1::Type]
46
48
  # Type of this notification, e.g. for a rollout update event.
49
+ # @!attribute [rw] rollout_update_type
50
+ # @return [::Google::Cloud::Deploy::V1::RolloutUpdateEvent::RolloutUpdateType]
51
+ # The type of the rollout update.
47
52
  class RolloutUpdateEvent
48
53
  include ::Google::Protobuf::MessageExts
49
54
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-deploy-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.17.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: 2023-12-08 00:00:00.000000000 Z
11
+ date: 2024-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.20.0
19
+ version: 0.21.1
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.20.0
29
+ version: 0.21.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: '0.4'
53
+ version: '0.7'
54
54
  - - "<"
55
55
  - !ruby/object:Gem::Version
56
56
  version: 2.a
@@ -60,7 +60,7 @@ dependencies:
60
60
  requirements:
61
61
  - - ">="
62
62
  - !ruby/object:Gem::Version
63
- version: '0.4'
63
+ version: '0.7'
64
64
  - - "<"
65
65
  - !ruby/object:Gem::Version
66
66
  version: 2.a
@@ -70,7 +70,7 @@ dependencies:
70
70
  requirements:
71
71
  - - ">="
72
72
  - !ruby/object:Gem::Version
73
- version: '0.4'
73
+ version: '0.7'
74
74
  - - "<"
75
75
  - !ruby/object:Gem::Version
76
76
  version: 2.a
@@ -80,7 +80,7 @@ dependencies:
80
80
  requirements:
81
81
  - - ">="
82
82
  - !ruby/object:Gem::Version
83
- version: '0.4'
83
+ version: '0.7'
84
84
  - - "<"
85
85
  - !ruby/object:Gem::Version
86
86
  version: 2.a
@@ -280,7 +280,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
280
280
  - !ruby/object:Gem::Version
281
281
  version: '0'
282
282
  requirements: []
283
- rubygems_version: 3.4.19
283
+ rubygems_version: 3.5.3
284
284
  signing_key:
285
285
  specification_version: 4
286
286
  summary: API Client library for the Google Cloud Deploy V1 API