google-apis-cloudbuild_v1 0.22.0 → 0.25.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: 7d11e5c4a19fa54d4e7f4429c51b6850559cf2b748100e263d01c5ebcc5f7cf9
4
- data.tar.gz: c713c17cb3be96593f04f8f19a3dc2867480d26b97ecd3069c2664698ebae780
3
+ metadata.gz: 31b21d3eb7d9cd86bdcdc645cb22329c76d1d5fe553669f7b77671418d5be594
4
+ data.tar.gz: 63bbed02e895596bee0f62dc29078fc5645ac55d06ad4bce2f1671931968c80e
5
5
  SHA512:
6
- metadata.gz: 5f72f47b71b05a6915258e84bd359da022469f978e47c14f7cd54a8463c16bf5b2d9792a47219a8f1b5ebacbb8b3d331eec85354d95d18e0e20db72fe5553b49
7
- data.tar.gz: 9a9c1eb654d2f0ca81536cebc30ca4425f80bdd198bdded5451fa1d943de7f4ec5e9073af2543d8a619a5a2710bf4f1e7eecb937a20acd21afc40b911423ec59
6
+ metadata.gz: 123f45837fb32cc1c935e0f8b4ff6244e1cdd407902f4b32025e105ff0aef2754ca7c43a13c878562dda649c80087e663383cd9714ab83f3acc14592853d60af
7
+ data.tar.gz: 4b9ca3eefe376f96ee93889376f9d31b875bd93d39ab4d7026396802b5ff6069f02b1f2fe3e022aa395199370041b1b380a55f8c3b3f36ade814a1bb13ae3217
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-cloudbuild_v1
2
2
 
3
+ ### v0.25.0 (2022-03-02)
4
+
5
+ * Regenerated from discovery document revision 20220218
6
+
7
+ ### v0.24.0 (2022-02-11)
8
+
9
+ * Regenerated from discovery document revision 20220131
10
+
11
+ ### v0.23.0 (2022-02-05)
12
+
13
+ * Regenerated from discovery document revision 20220126
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.22.0 (2022-01-11)
4
17
 
5
18
  * Regenerated from discovery document revision 20211230
@@ -1783,6 +1783,19 @@ module Google
1783
1783
  class GitFileSource
1784
1784
  include Google::Apis::Core::Hashable
1785
1785
 
1786
+ # The full resource name of the bitbucket server config. Format: `projects/`
1787
+ # project`/locations/`location`/bitbucketServerConfigs/`id``.
1788
+ # Corresponds to the JSON property `bitbucketServerConfig`
1789
+ # @return [String]
1790
+ attr_accessor :bitbucket_server_config
1791
+
1792
+ # The full resource name of the github enterprise config. Format: `projects/`
1793
+ # project`/locations/`location`/githubEnterpriseConfigs/`id``. `projects/`
1794
+ # project`/githubEnterpriseConfigs/`id``.
1795
+ # Corresponds to the JSON property `githubEnterpriseConfig`
1796
+ # @return [String]
1797
+ attr_accessor :github_enterprise_config
1798
+
1786
1799
  # The path of the file, with the repo root as the root of the path.
1787
1800
  # Corresponds to the JSON property `path`
1788
1801
  # @return [String]
@@ -1815,6 +1828,8 @@ module Google
1815
1828
 
1816
1829
  # Update properties of this object
1817
1830
  def update!(**args)
1831
+ @bitbucket_server_config = args[:bitbucket_server_config] if args.key?(:bitbucket_server_config)
1832
+ @github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
1818
1833
  @path = args[:path] if args.key?(:path)
1819
1834
  @repo_type = args[:repo_type] if args.key?(:repo_type)
1820
1835
  @revision = args[:revision] if args.key?(:revision)
@@ -2021,6 +2036,19 @@ module Google
2021
2036
  class GitRepoSource
2022
2037
  include Google::Apis::Core::Hashable
2023
2038
 
2039
+ # The full resource name of the bitbucket server config. Format: `projects/`
2040
+ # project`/locations/`location`/bitbucketServerConfigs/`id``.
2041
+ # Corresponds to the JSON property `bitbucketServerConfig`
2042
+ # @return [String]
2043
+ attr_accessor :bitbucket_server_config
2044
+
2045
+ # The full resource name of the github enterprise config. Format: `projects/`
2046
+ # project`/locations/`location`/githubEnterpriseConfigs/`id``. `projects/`
2047
+ # project`/githubEnterpriseConfigs/`id``.
2048
+ # Corresponds to the JSON property `githubEnterpriseConfig`
2049
+ # @return [String]
2050
+ attr_accessor :github_enterprise_config
2051
+
2024
2052
  # The branch or tag to use. Must start with "refs/" (required).
2025
2053
  # Corresponds to the JSON property `ref`
2026
2054
  # @return [String]
@@ -2042,6 +2070,8 @@ module Google
2042
2070
 
2043
2071
  # Update properties of this object
2044
2072
  def update!(**args)
2073
+ @bitbucket_server_config = args[:bitbucket_server_config] if args.key?(:bitbucket_server_config)
2074
+ @github_enterprise_config = args[:github_enterprise_config] if args.key?(:github_enterprise_config)
2045
2075
  @ref = args[:ref] if args.key?(:ref)
2046
2076
  @repo_type = args[:repo_type] if args.key?(:repo_type)
2047
2077
  @uri = args[:uri] if args.key?(:uri)
@@ -3135,6 +3165,65 @@ module Google
3135
3165
  end
3136
3166
  end
3137
3167
 
3168
+ # Represents the custom metadata of the RunWorkflow long-running operation.
3169
+ class RunWorkflowCustomOperationMetadata
3170
+ include Google::Apis::Core::Hashable
3171
+
3172
+ # Output only. API version used to start the operation.
3173
+ # Corresponds to the JSON property `apiVersion`
3174
+ # @return [String]
3175
+ attr_accessor :api_version
3176
+
3177
+ # Output only. The time the operation was created.
3178
+ # Corresponds to the JSON property `createTime`
3179
+ # @return [String]
3180
+ attr_accessor :create_time
3181
+
3182
+ # Output only. The time the operation finished running.
3183
+ # Corresponds to the JSON property `endTime`
3184
+ # @return [String]
3185
+ attr_accessor :end_time
3186
+
3187
+ # Output only. ID of the pipeline run created by RunWorkflow.
3188
+ # Corresponds to the JSON property `pipelineRunId`
3189
+ # @return [String]
3190
+ attr_accessor :pipeline_run_id
3191
+
3192
+ # Output only. Identifies whether the user has requested cancellation of the
3193
+ # operation. Operations that have successfully been cancelled have Operation.
3194
+ # error value with a google.rpc.Status.code of 1, corresponding to `Code.
3195
+ # CANCELLED`.
3196
+ # Corresponds to the JSON property `requestedCancellation`
3197
+ # @return [Boolean]
3198
+ attr_accessor :requested_cancellation
3199
+ alias_method :requested_cancellation?, :requested_cancellation
3200
+
3201
+ # Output only. Server-defined resource path for the target of the operation.
3202
+ # Corresponds to the JSON property `target`
3203
+ # @return [String]
3204
+ attr_accessor :target
3205
+
3206
+ # Output only. Name of the verb executed by the operation.
3207
+ # Corresponds to the JSON property `verb`
3208
+ # @return [String]
3209
+ attr_accessor :verb
3210
+
3211
+ def initialize(**args)
3212
+ update!(**args)
3213
+ end
3214
+
3215
+ # Update properties of this object
3216
+ def update!(**args)
3217
+ @api_version = args[:api_version] if args.key?(:api_version)
3218
+ @create_time = args[:create_time] if args.key?(:create_time)
3219
+ @end_time = args[:end_time] if args.key?(:end_time)
3220
+ @pipeline_run_id = args[:pipeline_run_id] if args.key?(:pipeline_run_id)
3221
+ @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
3222
+ @target = args[:target] if args.key?(:target)
3223
+ @verb = args[:verb] if args.key?(:verb)
3224
+ end
3225
+ end
3226
+
3138
3227
  # SMTPDelivery is the delivery configuration for an SMTP (email) notification.
3139
3228
  class SmtpDelivery
3140
3229
  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.22.0"
19
+ GEM_VERSION = "0.25.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211230"
25
+ REVISION = "20220218"
26
26
  end
27
27
  end
28
28
  end
@@ -472,6 +472,12 @@ module Google
472
472
  include Google::Apis::Core::JsonObjectSupport
473
473
  end
474
474
 
475
+ class RunWorkflowCustomOperationMetadata
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
475
481
  class SmtpDelivery
476
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
483
 
@@ -1042,6 +1048,8 @@ module Google
1042
1048
  class GitFileSource
1043
1049
  # @private
1044
1050
  class Representation < Google::Apis::Core::JsonRepresentation
1051
+ property :bitbucket_server_config, as: 'bitbucketServerConfig'
1052
+ property :github_enterprise_config, as: 'githubEnterpriseConfig'
1045
1053
  property :path, as: 'path'
1046
1054
  property :repo_type, as: 'repoType'
1047
1055
  property :revision, as: 'revision'
@@ -1096,6 +1104,8 @@ module Google
1096
1104
  class GitRepoSource
1097
1105
  # @private
1098
1106
  class Representation < Google::Apis::Core::JsonRepresentation
1107
+ property :bitbucket_server_config, as: 'bitbucketServerConfig'
1108
+ property :github_enterprise_config, as: 'githubEnterpriseConfig'
1099
1109
  property :ref, as: 'ref'
1100
1110
  property :repo_type, as: 'repoType'
1101
1111
  property :uri, as: 'uri'
@@ -1407,6 +1417,19 @@ module Google
1407
1417
  end
1408
1418
  end
1409
1419
 
1420
+ class RunWorkflowCustomOperationMetadata
1421
+ # @private
1422
+ class Representation < Google::Apis::Core::JsonRepresentation
1423
+ property :api_version, as: 'apiVersion'
1424
+ property :create_time, as: 'createTime'
1425
+ property :end_time, as: 'endTime'
1426
+ property :pipeline_run_id, as: 'pipelineRunId'
1427
+ property :requested_cancellation, as: 'requestedCancellation'
1428
+ property :target, as: 'target'
1429
+ property :verb, as: 'verb'
1430
+ end
1431
+ end
1432
+
1410
1433
  class SmtpDelivery
1411
1434
  # @private
1412
1435
  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.22.0
4
+ version: 0.25.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-01-17 00:00:00.000000000 Z
11
+ date: 2022-03-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.22.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.25.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: []