google-apis-cloudbuild_v1 0.40.0 → 0.42.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f5c37ab05e2e4cbca64f5d8f566c1b2541d0a12e1b538612f2172e08a0395ad8
|
4
|
+
data.tar.gz: 81494e4a7b566edc20a0efe7a29c49a5a8244e3d1bb2cf8fc6f60824d89e6915
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1e4fc8068bd539ee838be78762c7078eeb126cc1943d11c6e7fc6cfe12ac3b7173cffff80a2c4c3a458a779884eb6c35df7b611fcfdee0100d8c29357536ea2
|
7
|
+
data.tar.gz: 90a8c8d48294ee1b5f84b57f0d557b9a186a2d18cd5da735fa9f146f2f37b1dc0c4f34da7092247fc0297ef6616131499653921eb24b0de1dd7f57f1a1cf6def
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
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
|
+
|
7
|
+
### v0.41.0 (2022-10-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20221015
|
10
|
+
* Regenerated using generator version 0.11.0
|
11
|
+
|
3
12
|
### v0.40.0 (2022-10-11)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20220928
|
@@ -834,10 +834,10 @@ module Google
|
|
834
834
|
attr_accessor :timeout
|
835
835
|
|
836
836
|
# Output only. Stores timing information for phases of the build. Valid keys are:
|
837
|
-
# * BUILD: time to execute all build steps. * PUSH: time to push all
|
838
|
-
#
|
839
|
-
#
|
840
|
-
# included.
|
837
|
+
# * BUILD: time to execute all build steps. * PUSH: time to push all artifacts
|
838
|
+
# including docker images and non docker artifacts. * FETCHSOURCE: time to fetch
|
839
|
+
# source. * SETUPBUILD: time to set up build. If the build does not specify
|
840
|
+
# source or images, these keys will not be included.
|
841
841
|
# Corresponds to the JSON property `timing`
|
842
842
|
# @return [Hash<String,Google::Apis::CloudbuildV1::TimeSpan>]
|
843
843
|
attr_accessor :timing
|
@@ -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
|
@@ -3598,7 +3539,8 @@ module Google
|
|
3598
3539
|
class Results
|
3599
3540
|
include Google::Apis::Core::Hashable
|
3600
3541
|
|
3601
|
-
# Path to the artifact manifest
|
3542
|
+
# Path to the artifact manifest for non-container artifacts uploaded to Cloud
|
3543
|
+
# Storage. Only populated when artifacts are uploaded to Cloud Storage.
|
3602
3544
|
# Corresponds to the JSON property `artifactManifest`
|
3603
3545
|
# @return [String]
|
3604
3546
|
attr_accessor :artifact_manifest
|
@@ -3631,7 +3573,8 @@ module Google
|
|
3631
3573
|
# @return [Array<Google::Apis::CloudbuildV1::UploadedMavenArtifact>]
|
3632
3574
|
attr_accessor :maven_artifacts
|
3633
3575
|
|
3634
|
-
# Number of artifacts uploaded. Only populated
|
3576
|
+
# Number of non-container artifacts uploaded to Cloud Storage. Only populated
|
3577
|
+
# when artifacts are uploaded to Cloud Storage.
|
3635
3578
|
# Corresponds to the JSON property `numArtifacts`
|
3636
3579
|
# @return [Fixnum]
|
3637
3580
|
attr_accessor :num_artifacts
|
@@ -3721,65 +3664,6 @@ module Google
|
|
3721
3664
|
end
|
3722
3665
|
end
|
3723
3666
|
|
3724
|
-
# Represents the custom metadata of the RunWorkflow long-running operation.
|
3725
|
-
class RunWorkflowCustomOperationMetadata
|
3726
|
-
include Google::Apis::Core::Hashable
|
3727
|
-
|
3728
|
-
# Output only. API version used to start the operation.
|
3729
|
-
# Corresponds to the JSON property `apiVersion`
|
3730
|
-
# @return [String]
|
3731
|
-
attr_accessor :api_version
|
3732
|
-
|
3733
|
-
# Output only. The time the operation was created.
|
3734
|
-
# Corresponds to the JSON property `createTime`
|
3735
|
-
# @return [String]
|
3736
|
-
attr_accessor :create_time
|
3737
|
-
|
3738
|
-
# Output only. The time the operation finished running.
|
3739
|
-
# Corresponds to the JSON property `endTime`
|
3740
|
-
# @return [String]
|
3741
|
-
attr_accessor :end_time
|
3742
|
-
|
3743
|
-
# Output only. ID of the pipeline run created by RunWorkflow.
|
3744
|
-
# Corresponds to the JSON property `pipelineRunId`
|
3745
|
-
# @return [String]
|
3746
|
-
attr_accessor :pipeline_run_id
|
3747
|
-
|
3748
|
-
# Output only. Identifies whether the user has requested cancellation of the
|
3749
|
-
# operation. Operations that have successfully been cancelled have Operation.
|
3750
|
-
# error value with a google.rpc.Status.code of 1, corresponding to `Code.
|
3751
|
-
# CANCELLED`.
|
3752
|
-
# Corresponds to the JSON property `requestedCancellation`
|
3753
|
-
# @return [Boolean]
|
3754
|
-
attr_accessor :requested_cancellation
|
3755
|
-
alias_method :requested_cancellation?, :requested_cancellation
|
3756
|
-
|
3757
|
-
# Output only. Server-defined resource path for the target of the operation.
|
3758
|
-
# Corresponds to the JSON property `target`
|
3759
|
-
# @return [String]
|
3760
|
-
attr_accessor :target
|
3761
|
-
|
3762
|
-
# Output only. Name of the verb executed by the operation.
|
3763
|
-
# Corresponds to the JSON property `verb`
|
3764
|
-
# @return [String]
|
3765
|
-
attr_accessor :verb
|
3766
|
-
|
3767
|
-
def initialize(**args)
|
3768
|
-
update!(**args)
|
3769
|
-
end
|
3770
|
-
|
3771
|
-
# Update properties of this object
|
3772
|
-
def update!(**args)
|
3773
|
-
@api_version = args[:api_version] if args.key?(:api_version)
|
3774
|
-
@create_time = args[:create_time] if args.key?(:create_time)
|
3775
|
-
@end_time = args[:end_time] if args.key?(:end_time)
|
3776
|
-
@pipeline_run_id = args[:pipeline_run_id] if args.key?(:pipeline_run_id)
|
3777
|
-
@requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
|
3778
|
-
@target = args[:target] if args.key?(:target)
|
3779
|
-
@verb = args[:verb] if args.key?(:verb)
|
3780
|
-
end
|
3781
|
-
end
|
3782
|
-
|
3783
3667
|
# SMTPDelivery is the delivery configuration for an SMTP (email) notification.
|
3784
3668
|
class SmtpDelivery
|
3785
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.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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.
|
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-
|
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
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.9.
|
19
|
+
version: 0.9.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.9.
|
29
|
+
version: 0.9.1
|
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-cloudbuild_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.
|
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: []
|