google-apis-cloudbuild_v1 0.29.0 → 0.32.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: 29ca4c5b559a723e01d21fe5c23e1eb75c866c73f917ca7995fd4662ffaec7b8
4
- data.tar.gz: d0d49ca25869e70bb1b6fd406439b4a1d6e982800dcc6a875bbf2cbad0e771f9
3
+ metadata.gz: 7f4aa4882e0192dbb5509696b9432e2e816e166c6054d72803cde9d50ffe8194
4
+ data.tar.gz: 6956b9f1a03e3d8b9e6fab992b84b1e1efc042c48db1f11468b5f32a7a81afd3
5
5
  SHA512:
6
- metadata.gz: f35e7032a0fbc232cd3129eae414fbeaad3cac1f69a342f64f50556fb961dd58337021f9aee1b7bd108c270173ebc898243290108cd9b328b92f1ef77d27c5d6
7
- data.tar.gz: e7cf4770ae6d9adb6044018eaed6f1e4929b3019f599230ec3931c6ea5956fa3126e8745dabfcaf648a003886de4111b642042935b8c068e785e7489f64bfd77
6
+ metadata.gz: d25cc2831af64d7654ea0bf59410cf38bde828e51fa7ff86e6e1fbf02fa332abd3c3e6338ee61d312c89355ef84c4bf36daf5b5508f882a3531e735c989137a2
7
+ data.tar.gz: f68edcc56d83ca9a69951941b1b7355a91c3f49445bc489fa83c69e2b17005d29ed96bad9ae1d54a2b1613ee1dcd76ae322113315bb10e5eca1150c85548fc8f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.32.0 (2022-06-03)
4
+
5
+ * Regenerated using generator version 0.5.0
6
+
7
+ ### v0.31.0 (2022-05-20)
8
+
9
+ * Regenerated from discovery document revision 20220512
10
+
11
+ ### v0.30.0 (2022-05-13)
12
+
13
+ * Regenerated from discovery document revision 20220505
14
+
3
15
  ### v0.29.0 (2022-04-15)
4
16
 
5
17
  * Regenerated from discovery document revision 20220407
@@ -532,7 +532,7 @@ module Google
532
532
  attr_accessor :bitbucket_server_config_resource
533
533
 
534
534
  # Required. Key of the project that the repo is in. For example: The key for
535
- # http://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
535
+ # https://mybitbucket.server/projects/TEST/repos/test-repo is "TEST".
536
536
  # Corresponds to the JSON property `projectKey`
537
537
  # @return [String]
538
538
  attr_accessor :project_key
@@ -550,7 +550,7 @@ module Google
550
550
  # Required. Slug of the repository. A repository slug is a URL-friendly version
551
551
  # of a repository name, automatically generated by Bitbucket for use in the URL.
552
552
  # For example, if the repository name is 'test repo', in the URL it would become
553
- # 'test-repo' as in http://mybitbucket.server/projects/TEST/repos/test-repo.
553
+ # 'test-repo' as in https://mybitbucket.server/projects/TEST/repos/test-repo.
554
554
  # Corresponds to the JSON property `repoSlug`
555
555
  # @return [String]
556
556
  attr_accessor :repo_slug
@@ -1206,6 +1206,14 @@ module Google
1206
1206
  # @return [Array<String>]
1207
1207
  attr_accessor :ignored_files
1208
1208
 
1209
+ # If set to INCLUDE_BUILD_LOGS_WITH_STATUS, log url will be shown on GitHub page
1210
+ # when build status is final. Setting this field to
1211
+ # INCLUDE_BUILD_LOGS_WITH_STATUS for non GitHub triggers results in
1212
+ # INVALID_ARGUMENT error.
1213
+ # Corresponds to the JSON property `includeBuildLogs`
1214
+ # @return [String]
1215
+ attr_accessor :include_build_logs
1216
+
1209
1217
  # If any of the files altered in the commit pass the ignored_files filter and
1210
1218
  # included_files is empty, then as far as this filter is concerned, we should
1211
1219
  # trigger the build. If any of the files altered in the commit pass the
@@ -1293,6 +1301,7 @@ module Google
1293
1301
  @github = args[:github] if args.key?(:github)
1294
1302
  @id = args[:id] if args.key?(:id)
1295
1303
  @ignored_files = args[:ignored_files] if args.key?(:ignored_files)
1304
+ @include_build_logs = args[:include_build_logs] if args.key?(:include_build_logs)
1296
1305
  @included_files = args[:included_files] if args.key?(:included_files)
1297
1306
  @name = args[:name] if args.key?(:name)
1298
1307
  @pubsub_config = args[:pubsub_config] if args.key?(:pubsub_config)
@@ -1475,38 +1484,6 @@ module Google
1475
1484
  end
1476
1485
  end
1477
1486
 
1478
- # Metadata for `CreateGitLabConfig` operation.
1479
- class CreateGitLabConfigOperationMetadata
1480
- include Google::Apis::Core::Hashable
1481
-
1482
- # Time the operation was completed.
1483
- # Corresponds to the JSON property `completeTime`
1484
- # @return [String]
1485
- attr_accessor :complete_time
1486
-
1487
- # Time the operation was created.
1488
- # Corresponds to the JSON property `createTime`
1489
- # @return [String]
1490
- attr_accessor :create_time
1491
-
1492
- # The resource name of the GitLabConfig to be created. Format: `projects/`
1493
- # project`/locations/`location`/gitlabConfigs/`id``.
1494
- # Corresponds to the JSON property `gitlabConfig`
1495
- # @return [String]
1496
- attr_accessor :gitlab_config
1497
-
1498
- def initialize(**args)
1499
- update!(**args)
1500
- end
1501
-
1502
- # Update properties of this object
1503
- def update!(**args)
1504
- @complete_time = args[:complete_time] if args.key?(:complete_time)
1505
- @create_time = args[:create_time] if args.key?(:create_time)
1506
- @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
1507
- end
1508
- end
1509
-
1510
1487
  # Metadata for the `CreateWorkerPool` operation.
1511
1488
  class CreateWorkerPoolOperationMetadata
1512
1489
  include Google::Apis::Core::Hashable
@@ -1603,38 +1580,6 @@ module Google
1603
1580
  end
1604
1581
  end
1605
1582
 
1606
- # Metadata for `DeleteGitLabConfig` operation.
1607
- class DeleteGitLabConfigOperationMetadata
1608
- include Google::Apis::Core::Hashable
1609
-
1610
- # Time the operation was completed.
1611
- # Corresponds to the JSON property `completeTime`
1612
- # @return [String]
1613
- attr_accessor :complete_time
1614
-
1615
- # Time the operation was created.
1616
- # Corresponds to the JSON property `createTime`
1617
- # @return [String]
1618
- attr_accessor :create_time
1619
-
1620
- # The resource name of the GitLabConfig to be created. Format: `projects/`
1621
- # project`/locations/`location`/gitlabConfigs/`id``.
1622
- # Corresponds to the JSON property `gitlabConfig`
1623
- # @return [String]
1624
- attr_accessor :gitlab_config
1625
-
1626
- def initialize(**args)
1627
- update!(**args)
1628
- end
1629
-
1630
- # Update properties of this object
1631
- def update!(**args)
1632
- @complete_time = args[:complete_time] if args.key?(:complete_time)
1633
- @create_time = args[:create_time] if args.key?(:create_time)
1634
- @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
1635
- end
1636
- end
1637
-
1638
1583
  # Metadata for the `DeleteWorkerPool` operation.
1639
1584
  class DeleteWorkerPoolOperationMetadata
1640
1585
  include Google::Apis::Core::Hashable
@@ -3610,38 +3555,6 @@ module Google
3610
3555
  end
3611
3556
  end
3612
3557
 
3613
- # Metadata for `UpdateGitLabConfig` operation.
3614
- class UpdateGitLabConfigOperationMetadata
3615
- include Google::Apis::Core::Hashable
3616
-
3617
- # Time the operation was completed.
3618
- # Corresponds to the JSON property `completeTime`
3619
- # @return [String]
3620
- attr_accessor :complete_time
3621
-
3622
- # Time the operation was created.
3623
- # Corresponds to the JSON property `createTime`
3624
- # @return [String]
3625
- attr_accessor :create_time
3626
-
3627
- # The resource name of the GitLabConfig to be created. Format: `projects/`
3628
- # project`/locations/`location`/gitlabConfigs/`id``.
3629
- # Corresponds to the JSON property `gitlabConfig`
3630
- # @return [String]
3631
- attr_accessor :gitlab_config
3632
-
3633
- def initialize(**args)
3634
- update!(**args)
3635
- end
3636
-
3637
- # Update properties of this object
3638
- def update!(**args)
3639
- @complete_time = args[:complete_time] if args.key?(:complete_time)
3640
- @create_time = args[:create_time] if args.key?(:create_time)
3641
- @gitlab_config = args[:gitlab_config] if args.key?(:gitlab_config)
3642
- end
3643
- end
3644
-
3645
3558
  # Metadata for the `UpdateWorkerPool` operation.
3646
3559
  class UpdateWorkerPoolOperationMetadata
3647
3560
  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.29.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.5.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220407"
25
+ REVISION = "20220512"
26
26
  end
27
27
  end
28
28
  end
@@ -184,12 +184,6 @@ module Google
184
184
  include Google::Apis::Core::JsonObjectSupport
185
185
  end
186
186
 
187
- class CreateGitLabConfigOperationMetadata
188
- class Representation < Google::Apis::Core::JsonRepresentation; end
189
-
190
- include Google::Apis::Core::JsonObjectSupport
191
- end
192
-
193
187
  class CreateWorkerPoolOperationMetadata
194
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
195
189
 
@@ -208,12 +202,6 @@ module Google
208
202
  include Google::Apis::Core::JsonObjectSupport
209
203
  end
210
204
 
211
- class DeleteGitLabConfigOperationMetadata
212
- class Representation < Google::Apis::Core::JsonRepresentation; end
213
-
214
- include Google::Apis::Core::JsonObjectSupport
215
- end
216
-
217
205
  class DeleteWorkerPoolOperationMetadata
218
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
207
 
@@ -544,12 +532,6 @@ module Google
544
532
  include Google::Apis::Core::JsonObjectSupport
545
533
  end
546
534
 
547
- class UpdateGitLabConfigOperationMetadata
548
- class Representation < Google::Apis::Core::JsonRepresentation; end
549
-
550
- include Google::Apis::Core::JsonObjectSupport
551
- end
552
-
553
535
  class UpdateWorkerPoolOperationMetadata
554
536
  class Representation < Google::Apis::Core::JsonRepresentation; end
555
537
 
@@ -871,6 +853,7 @@ module Google
871
853
 
872
854
  property :id, as: 'id'
873
855
  collection :ignored_files, as: 'ignoredFiles'
856
+ property :include_build_logs, as: 'includeBuildLogs'
874
857
  collection :included_files, as: 'includedFiles'
875
858
  property :name, as: 'name'
876
859
  property :pubsub_config, as: 'pubsubConfig', class: Google::Apis::CloudbuildV1::PubsubConfig, decorator: Google::Apis::CloudbuildV1::PubsubConfig::Representation
@@ -940,15 +923,6 @@ module Google
940
923
  end
941
924
  end
942
925
 
943
- class CreateGitLabConfigOperationMetadata
944
- # @private
945
- class Representation < Google::Apis::Core::JsonRepresentation
946
- property :complete_time, as: 'completeTime'
947
- property :create_time, as: 'createTime'
948
- property :gitlab_config, as: 'gitlabConfig'
949
- end
950
- end
951
-
952
926
  class CreateWorkerPoolOperationMetadata
953
927
  # @private
954
928
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -976,15 +950,6 @@ module Google
976
950
  end
977
951
  end
978
952
 
979
- class DeleteGitLabConfigOperationMetadata
980
- # @private
981
- class Representation < Google::Apis::Core::JsonRepresentation
982
- property :complete_time, as: 'completeTime'
983
- property :create_time, as: 'createTime'
984
- property :gitlab_config, as: 'gitlabConfig'
985
- end
986
- end
987
-
988
953
  class DeleteWorkerPoolOperationMetadata
989
954
  # @private
990
955
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1527,15 +1492,6 @@ module Google
1527
1492
  end
1528
1493
  end
1529
1494
 
1530
- class UpdateGitLabConfigOperationMetadata
1531
- # @private
1532
- class Representation < Google::Apis::Core::JsonRepresentation
1533
- property :complete_time, as: 'completeTime'
1534
- property :create_time, as: 'createTime'
1535
- property :gitlab_config, as: 'gitlabConfig'
1536
- end
1537
- end
1538
-
1539
1495
  class UpdateWorkerPoolOperationMetadata
1540
1496
  # @private
1541
1497
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -414,7 +414,7 @@ module Google
414
414
  # @param [Google::Apis::CloudbuildV1::GitHubEnterpriseConfig] git_hub_enterprise_config_object
415
415
  # @param [String] ghe_config_id
416
416
  # Optional. The ID to use for the GithubEnterpriseConfig, which will become the
417
- # final component of the GithubEnterpriseConfigs resource name. ghe_config_id
417
+ # final component of the GithubEnterpriseConfig's resource name. ghe_config_id
418
418
  # must meet the following requirements: + They must contain only alphanumeric
419
419
  # characters and dashes. + They can be 1-64 characters long. + They must begin
420
420
  # and end with an alphanumeric character
@@ -1143,7 +1143,7 @@ module Google
1143
1143
  # @param [Google::Apis::CloudbuildV1::GitHubEnterpriseConfig] git_hub_enterprise_config_object
1144
1144
  # @param [String] ghe_config_id
1145
1145
  # Optional. The ID to use for the GithubEnterpriseConfig, which will become the
1146
- # final component of the GithubEnterpriseConfigs resource name. ghe_config_id
1146
+ # final component of the GithubEnterpriseConfig's resource name. ghe_config_id
1147
1147
  # must meet the following requirements: + They must contain only alphanumeric
1148
1148
  # characters and dashes. + They can be 1-64 characters long. + They must begin
1149
1149
  # and end with an alphanumeric character
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.29.0
4
+ version: 0.32.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-04-18 00:00:00.000000000 Z
11
+ date: 2022-06-13 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.4'
19
+ version: '0.5'
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.4'
29
+ version: '0.5'
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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.32.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Build API V1