google-apis-cloudbuild_v1 0.41.0 → 0.42.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: 011343fe49f6aeb1f21f562f36b20f43d0dd6ff770f1111d9e8d44ab770ff7e3
4
- data.tar.gz: 1c9a91aee9a16c310bd8f0255700a0cba7811d07728b6a7df5494ae7caa9b535
3
+ metadata.gz: f5c37ab05e2e4cbca64f5d8f566c1b2541d0a12e1b538612f2172e08a0395ad8
4
+ data.tar.gz: 81494e4a7b566edc20a0efe7a29c49a5a8244e3d1bb2cf8fc6f60824d89e6915
5
5
  SHA512:
6
- metadata.gz: 9e91aba37941b379c92f65d7df64185fc81706c8814864cac23d1fd06aeeaa3022b0ffce092c234bb509cbdcb14f8930c95b44e9c2a7c588e5c5e0c30239572b
7
- data.tar.gz: 2474e10216da7476fcf571a048a01da2b0ba48de2779a48238c890495488f7dae89c608424b65bfd962ab212fdf0720de8fac9eb28059f738706a106d582378a
6
+ metadata.gz: d1e4fc8068bd539ee838be78762c7078eeb126cc1943d11c6e7fc6cfe12ac3b7173cffff80a2c4c3a458a779884eb6c35df7b611fcfdee0100d8c29357536ea2
7
+ data.tar.gz: 90a8c8d48294ee1b5f84b57f0d557b9a186a2d18cd5da735fa9f146f2f37b1dc0c4f34da7092247fc0297ef6616131499653921eb24b0de1dd7f57f1a1cf6def
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.42.0 (2022-11-04)
4
+
5
+ * Regenerated from discovery document revision 20221027
6
+
3
7
  ### v0.41.0 (2022-10-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20221015
@@ -2471,65 +2471,6 @@ module Google
2471
2471
  end
2472
2472
  end
2473
2473
 
2474
- # Represents the metadata of the long-running operation.
2475
- class GoogleDevtoolsCloudbuildV2OperationMetadata
2476
- include Google::Apis::Core::Hashable
2477
-
2478
- # Output only. API version used to start the operation.
2479
- # Corresponds to the JSON property `apiVersion`
2480
- # @return [String]
2481
- attr_accessor :api_version
2482
-
2483
- # Output only. The time the operation was created.
2484
- # Corresponds to the JSON property `createTime`
2485
- # @return [String]
2486
- attr_accessor :create_time
2487
-
2488
- # Output only. The time the operation finished running.
2489
- # Corresponds to the JSON property `endTime`
2490
- # @return [String]
2491
- attr_accessor :end_time
2492
-
2493
- # Output only. Identifies whether the user has requested cancellation of the
2494
- # operation. Operations that have successfully been cancelled have Operation.
2495
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
2496
- # CANCELLED`.
2497
- # Corresponds to the JSON property `requestedCancellation`
2498
- # @return [Boolean]
2499
- attr_accessor :requested_cancellation
2500
- alias_method :requested_cancellation?, :requested_cancellation
2501
-
2502
- # Output only. Human-readable status of the operation, if any.
2503
- # Corresponds to the JSON property `statusMessage`
2504
- # @return [String]
2505
- attr_accessor :status_message
2506
-
2507
- # Output only. Server-defined resource path for the target of the operation.
2508
- # Corresponds to the JSON property `target`
2509
- # @return [String]
2510
- attr_accessor :target
2511
-
2512
- # Output only. Name of the verb executed by the operation.
2513
- # Corresponds to the JSON property `verb`
2514
- # @return [String]
2515
- attr_accessor :verb
2516
-
2517
- def initialize(**args)
2518
- update!(**args)
2519
- end
2520
-
2521
- # Update properties of this object
2522
- def update!(**args)
2523
- @api_version = args[:api_version] if args.key?(:api_version)
2524
- @create_time = args[:create_time] if args.key?(:create_time)
2525
- @end_time = args[:end_time] if args.key?(:end_time)
2526
- @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
2527
- @status_message = args[:status_message] if args.key?(:status_message)
2528
- @target = args[:target] if args.key?(:target)
2529
- @verb = args[:verb] if args.key?(:verb)
2530
- end
2531
- end
2532
-
2533
2474
  # HTTPDelivery is the delivery configuration for an HTTP notification.
2534
2475
  class HttpDelivery
2535
2476
  include Google::Apis::Core::Hashable
@@ -3723,65 +3664,6 @@ module Google
3723
3664
  end
3724
3665
  end
3725
3666
 
3726
- # Represents the custom metadata of the RunWorkflow long-running operation.
3727
- class RunWorkflowCustomOperationMetadata
3728
- include Google::Apis::Core::Hashable
3729
-
3730
- # Output only. API version used to start the operation.
3731
- # Corresponds to the JSON property `apiVersion`
3732
- # @return [String]
3733
- attr_accessor :api_version
3734
-
3735
- # Output only. The time the operation was created.
3736
- # Corresponds to the JSON property `createTime`
3737
- # @return [String]
3738
- attr_accessor :create_time
3739
-
3740
- # Output only. The time the operation finished running.
3741
- # Corresponds to the JSON property `endTime`
3742
- # @return [String]
3743
- attr_accessor :end_time
3744
-
3745
- # Output only. ID of the pipeline run created by RunWorkflow.
3746
- # Corresponds to the JSON property `pipelineRunId`
3747
- # @return [String]
3748
- attr_accessor :pipeline_run_id
3749
-
3750
- # Output only. Identifies whether the user has requested cancellation of the
3751
- # operation. Operations that have successfully been cancelled have Operation.
3752
- # error value with a google.rpc.Status.code of 1, corresponding to `Code.
3753
- # CANCELLED`.
3754
- # Corresponds to the JSON property `requestedCancellation`
3755
- # @return [Boolean]
3756
- attr_accessor :requested_cancellation
3757
- alias_method :requested_cancellation?, :requested_cancellation
3758
-
3759
- # Output only. Server-defined resource path for the target of the operation.
3760
- # Corresponds to the JSON property `target`
3761
- # @return [String]
3762
- attr_accessor :target
3763
-
3764
- # Output only. Name of the verb executed by the operation.
3765
- # Corresponds to the JSON property `verb`
3766
- # @return [String]
3767
- attr_accessor :verb
3768
-
3769
- def initialize(**args)
3770
- update!(**args)
3771
- end
3772
-
3773
- # Update properties of this object
3774
- def update!(**args)
3775
- @api_version = args[:api_version] if args.key?(:api_version)
3776
- @create_time = args[:create_time] if args.key?(:create_time)
3777
- @end_time = args[:end_time] if args.key?(:end_time)
3778
- @pipeline_run_id = args[:pipeline_run_id] if args.key?(:pipeline_run_id)
3779
- @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
3780
- @target = args[:target] if args.key?(:target)
3781
- @verb = args[:verb] if args.key?(:verb)
3782
- end
3783
- end
3784
-
3785
3667
  # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
3786
3668
  class SmtpDelivery
3787
3669
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudbuildV1
18
18
  # Version of the google-apis-cloudbuild_v1 gem
19
- GEM_VERSION = "0.41.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.11.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221015"
25
+ REVISION = "20221027"
26
26
  end
27
27
  end
28
28
  end
@@ -334,12 +334,6 @@ module Google
334
334
  include Google::Apis::Core::JsonObjectSupport
335
335
  end
336
336
 
337
- class GoogleDevtoolsCloudbuildV2OperationMetadata
338
- class Representation < Google::Apis::Core::JsonRepresentation; end
339
-
340
- include Google::Apis::Core::JsonObjectSupport
341
- end
342
-
343
337
  class HttpDelivery
344
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
339
 
@@ -556,12 +550,6 @@ module Google
556
550
  include Google::Apis::Core::JsonObjectSupport
557
551
  end
558
552
 
559
- class RunWorkflowCustomOperationMetadata
560
- class Representation < Google::Apis::Core::JsonRepresentation; end
561
-
562
- include Google::Apis::Core::JsonObjectSupport
563
- end
564
-
565
553
  class SmtpDelivery
566
554
  class Representation < Google::Apis::Core::JsonRepresentation; end
567
555
 
@@ -1322,19 +1310,6 @@ module Google
1322
1310
  end
1323
1311
  end
1324
1312
 
1325
- class GoogleDevtoolsCloudbuildV2OperationMetadata
1326
- # @private
1327
- class Representation < Google::Apis::Core::JsonRepresentation
1328
- property :api_version, as: 'apiVersion'
1329
- property :create_time, as: 'createTime'
1330
- property :end_time, as: 'endTime'
1331
- property :requested_cancellation, as: 'requestedCancellation'
1332
- property :status_message, as: 'statusMessage'
1333
- property :target, as: 'target'
1334
- property :verb, as: 'verb'
1335
- end
1336
- end
1337
-
1338
1313
  class HttpDelivery
1339
1314
  # @private
1340
1315
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1676,19 +1651,6 @@ module Google
1676
1651
  end
1677
1652
  end
1678
1653
 
1679
- class RunWorkflowCustomOperationMetadata
1680
- # @private
1681
- class Representation < Google::Apis::Core::JsonRepresentation
1682
- property :api_version, as: 'apiVersion'
1683
- property :create_time, as: 'createTime'
1684
- property :end_time, as: 'endTime'
1685
- property :pipeline_run_id, as: 'pipelineRunId'
1686
- property :requested_cancellation, as: 'requestedCancellation'
1687
- property :target, as: 'target'
1688
- property :verb, as: 'verb'
1689
- end
1690
- end
1691
-
1692
1654
  class SmtpDelivery
1693
1655
  # @private
1694
1656
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudbuild_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.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-10-21 00:00:00.000000000 Z
11
+ date: 2022-11-07 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-cloudbuild_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbuild_v1
63
63
  post_install_message:
64
64
  rdoc_options: []