google-apis-cloudbuild_v1 0.29.0 → 0.30.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: 29ca4c5b559a723e01d21fe5c23e1eb75c866c73f917ca7995fd4662ffaec7b8
4
- data.tar.gz: d0d49ca25869e70bb1b6fd406439b4a1d6e982800dcc6a875bbf2cbad0e771f9
3
+ metadata.gz: fb974611111f39af9240db88d6349aefe12112fe4ac3f7d140a2437b6e8450a0
4
+ data.tar.gz: d7d626d662a571c10f33d579ff29f97d7d5223c04b180fcef8cd87dd2e5b2741
5
5
  SHA512:
6
- metadata.gz: f35e7032a0fbc232cd3129eae414fbeaad3cac1f69a342f64f50556fb961dd58337021f9aee1b7bd108c270173ebc898243290108cd9b328b92f1ef77d27c5d6
7
- data.tar.gz: e7cf4770ae6d9adb6044018eaed6f1e4929b3019f599230ec3931c6ea5956fa3126e8745dabfcaf648a003886de4111b642042935b8c068e785e7489f64bfd77
6
+ metadata.gz: 76e0aece12187ac51ce8cf57b07db8fc5fe84c971be638bb5c2daf052272f855f3ea4a25b579e5ee5a5267d165af9229595be3e7e0e0fa527eed1f4a3736bafc
7
+ data.tar.gz: 25dbc4d15d5e5555837fcb1f0d61dcb42c42789942d7993987c80282346f0a9cd26aa1ec95afb00cd1d3845eaff49f824d8ccd4345ddd9b8c172ce73d3a1556e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.30.0 (2022-05-13)
4
+
5
+ * Regenerated from discovery document revision 20220505
6
+
3
7
  ### v0.29.0 (2022-04-15)
4
8
 
5
9
  * 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)
@@ -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.30.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220407"
25
+ REVISION = "20220505"
26
26
  end
27
27
  end
28
28
  end
@@ -871,6 +871,7 @@ module Google
871
871
 
872
872
  property :id, as: 'id'
873
873
  collection :ignored_files, as: 'ignoredFiles'
874
+ property :include_build_logs, as: 'includeBuildLogs'
874
875
  collection :included_files, as: 'includedFiles'
875
876
  property :name, as: 'name'
876
877
  property :pubsub_config, as: 'pubsubConfig', class: Google::Apis::CloudbuildV1::PubsubConfig, decorator: Google::Apis::CloudbuildV1::PubsubConfig::Representation
@@ -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.30.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-05-16 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.30.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: []