google-apis-cloudbuild_v1 0.64.0 → 0.65.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbe2d03729ecc70eac7ecac45976c48828f5d98a65036c98242185adc2284e63
|
4
|
+
data.tar.gz: d6e87586f010c8ac427bf81636ab6175f27f79c42292e044b67d64d738996a70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fbe40b963e7206bf7f6b4b5575da7c59affa0a08fefeb789d8b8318bbfce0bb8089723fb6399afb8e0765cb170ee0071e3d05f1d2010a80f348646d5ef29fc74
|
7
|
+
data.tar.gz: 4b9076a421f82a2035dd8877d70a328badf7f74335e48dbda23bcc38467afb2838cc9bfd506c30db82a6fcdf6f99e90a8d90db0103c4d38f5ce78d5c02efeaf0
|
data/CHANGELOG.md
CHANGED
@@ -2040,40 +2040,6 @@ module Google
|
|
2040
2040
|
end
|
2041
2041
|
end
|
2042
2042
|
|
2043
|
-
# Represents a storage location in Cloud Storage
|
2044
|
-
class GcsLocation
|
2045
|
-
include Google::Apis::Core::Hashable
|
2046
|
-
|
2047
|
-
# Cloud Storage bucket. See https://cloud.google.com/storage/docs/naming#
|
2048
|
-
# requirements
|
2049
|
-
# Corresponds to the JSON property `bucket`
|
2050
|
-
# @return [String]
|
2051
|
-
attr_accessor :bucket
|
2052
|
-
|
2053
|
-
# Cloud Storage generation for the object. If the generation is omitted, the
|
2054
|
-
# latest generation will be used.
|
2055
|
-
# Corresponds to the JSON property `generation`
|
2056
|
-
# @return [Fixnum]
|
2057
|
-
attr_accessor :generation
|
2058
|
-
|
2059
|
-
# Cloud Storage object. See https://cloud.google.com/storage/docs/naming#
|
2060
|
-
# objectnames
|
2061
|
-
# Corresponds to the JSON property `object`
|
2062
|
-
# @return [String]
|
2063
|
-
attr_accessor :object
|
2064
|
-
|
2065
|
-
def initialize(**args)
|
2066
|
-
update!(**args)
|
2067
|
-
end
|
2068
|
-
|
2069
|
-
# Update properties of this object
|
2070
|
-
def update!(**args)
|
2071
|
-
@bucket = args[:bucket] if args.key?(:bucket)
|
2072
|
-
@generation = args[:generation] if args.key?(:generation)
|
2073
|
-
@object = args[:object] if args.key?(:object)
|
2074
|
-
end
|
2075
|
-
end
|
2076
|
-
|
2077
2043
|
# GitConfig is a configuration for git operations.
|
2078
2044
|
class GitConfig
|
2079
2045
|
include Google::Apis::Core::Hashable
|
@@ -2815,17 +2781,13 @@ module Google
|
|
2815
2781
|
class HttpConfig
|
2816
2782
|
include Google::Apis::Core::Hashable
|
2817
2783
|
|
2818
|
-
# SecretVersion resource of the HTTP proxy URL. The
|
2819
|
-
#
|
2784
|
+
# SecretVersion resource of the HTTP proxy URL. The Service Account should have
|
2785
|
+
# accessor permissions on this secret. The proxy URL should be in format
|
2786
|
+
# protocol://@]proxyhost[:port].
|
2820
2787
|
# Corresponds to the JSON property `proxySecretVersionName`
|
2821
2788
|
# @return [String]
|
2822
2789
|
attr_accessor :proxy_secret_version_name
|
2823
2790
|
|
2824
|
-
# Represents a storage location in Cloud Storage
|
2825
|
-
# Corresponds to the JSON property `proxySslCaInfo`
|
2826
|
-
# @return [Google::Apis::CloudbuildV1::GcsLocation]
|
2827
|
-
attr_accessor :proxy_ssl_ca_info
|
2828
|
-
|
2829
2791
|
def initialize(**args)
|
2830
2792
|
update!(**args)
|
2831
2793
|
end
|
@@ -2833,7 +2795,6 @@ module Google
|
|
2833
2795
|
# Update properties of this object
|
2834
2796
|
def update!(**args)
|
2835
2797
|
@proxy_secret_version_name = args[:proxy_secret_version_name] if args.key?(:proxy_secret_version_name)
|
2836
|
-
@proxy_ssl_ca_info = args[:proxy_ssl_ca_info] if args.key?(:proxy_ssl_ca_info)
|
2837
2798
|
end
|
2838
2799
|
end
|
2839
2800
|
|
@@ -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.65.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240627"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -280,12 +280,6 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
-
class GcsLocation
|
284
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
-
|
286
|
-
include Google::Apis::Core::JsonObjectSupport
|
287
|
-
end
|
288
|
-
|
289
283
|
class GitConfig
|
290
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
291
285
|
|
@@ -1204,15 +1198,6 @@ module Google
|
|
1204
1198
|
end
|
1205
1199
|
end
|
1206
1200
|
|
1207
|
-
class GcsLocation
|
1208
|
-
# @private
|
1209
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
1210
|
-
property :bucket, as: 'bucket'
|
1211
|
-
property :generation, :numeric_string => true, as: 'generation'
|
1212
|
-
property :object, as: 'object'
|
1213
|
-
end
|
1214
|
-
end
|
1215
|
-
|
1216
1201
|
class GitConfig
|
1217
1202
|
# @private
|
1218
1203
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1401,8 +1386,6 @@ module Google
|
|
1401
1386
|
# @private
|
1402
1387
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1403
1388
|
property :proxy_secret_version_name, as: 'proxySecretVersionName'
|
1404
|
-
property :proxy_ssl_ca_info, as: 'proxySslCaInfo', class: Google::Apis::CloudbuildV1::GcsLocation, decorator: Google::Apis::CloudbuildV1::GcsLocation::Representation
|
1405
|
-
|
1406
1389
|
end
|
1407
1390
|
end
|
1408
1391
|
|
@@ -446,8 +446,8 @@ module Google
|
|
446
446
|
|
447
447
|
# Create an association between a GCP project and a GitHub Enterprise server.
|
448
448
|
# @param [String] parent
|
449
|
-
#
|
450
|
-
#
|
449
|
+
# Name of the parent project. For example: projects/`$project_number` or
|
450
|
+
# projects/`$project_id`
|
451
451
|
# @param [Google::Apis::CloudbuildV1::GitHubEnterpriseConfig] git_hub_enterprise_config_object
|
452
452
|
# @param [String] ghe_config_id
|
453
453
|
# Optional. The ID to use for the GithubEnterpriseConfig, which will become the
|
@@ -1496,8 +1496,8 @@ module Google
|
|
1496
1496
|
|
1497
1497
|
# Create an association between a GCP project and a GitHub Enterprise server.
|
1498
1498
|
# @param [String] parent
|
1499
|
-
#
|
1500
|
-
#
|
1499
|
+
# Name of the parent project. For example: projects/`$project_number` or
|
1500
|
+
# projects/`$project_id`
|
1501
1501
|
# @param [Google::Apis::CloudbuildV1::GitHubEnterpriseConfig] git_hub_enterprise_config_object
|
1502
1502
|
# @param [String] ghe_config_id
|
1503
1503
|
# Optional. The ID to use for the GithubEnterpriseConfig, which will become the
|
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.65.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: 2024-
|
11
|
+
date: 2024-07-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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbuild_v1/v0.65.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: []
|