google-apis-config_v1 0.1.0 → 0.2.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: 9501cd1abe60c35731b37a06deb6ee1d26875933acfc1dee3f69d4a5a0d427cf
|
|
4
|
+
data.tar.gz: 5f8c19deb0d9265035ef6a6f58fe480ee89fa4e6f4a932a8d0c6d41c2647c4ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 060dc689380707b5c28589da65a8caf6d450c8f9658d9e81be3494b622ae9328ec92e198bf355d473a987f62c04a80d6e751aea10071c5787f23edfb29fb0627
|
|
7
|
+
data.tar.gz: 836008af4d344c4c8882ee99728cf90099fae7b8622b3054332ad7bc4eda20a57706e4d7ba0f435a415a4e6f569a680c2641a627dec4f106d6533adc060e9dfe
|
data/CHANGELOG.md
CHANGED
|
@@ -266,7 +266,7 @@ module Google
|
|
|
266
266
|
include Google::Apis::Core::Hashable
|
|
267
267
|
|
|
268
268
|
# Optional. Arbitrary key-value metadata storage e.g. to help client tools
|
|
269
|
-
#
|
|
269
|
+
# identify deployments during automation. See https://google.aip.dev/148#
|
|
270
270
|
# annotations for details on format and size limitations.
|
|
271
271
|
# Corresponds to the JSON property `annotations`
|
|
272
272
|
# @return [Hash<String,String>]
|
|
@@ -1218,6 +1218,13 @@ module Google
|
|
|
1218
1218
|
class Preview
|
|
1219
1219
|
include Google::Apis::Core::Hashable
|
|
1220
1220
|
|
|
1221
|
+
# Optional. Arbitrary key-value metadata storage e.g. to help client tools
|
|
1222
|
+
# identifiy preview during automation. See https://google.aip.dev/148#
|
|
1223
|
+
# annotations for details on format and size limitations.
|
|
1224
|
+
# Corresponds to the JSON property `annotations`
|
|
1225
|
+
# @return [Hash<String,String>]
|
|
1226
|
+
attr_accessor :annotations
|
|
1227
|
+
|
|
1221
1228
|
# Optional. User-defined location of Cloud Build logs, artifacts, and in Google
|
|
1222
1229
|
# Cloud Storage. Format: `gs://`bucket`/`folder`` A default bucket will be
|
|
1223
1230
|
# bootstrapped if the field is not set or empty Default Bucket Format: `gs://--
|
|
@@ -1320,6 +1327,17 @@ module Google
|
|
|
1320
1327
|
# @return [Array<Google::Apis::ConfigV1::TerraformError>]
|
|
1321
1328
|
attr_accessor :tf_errors
|
|
1322
1329
|
|
|
1330
|
+
# Output only. The current Terraform version set on the preview. It is in the
|
|
1331
|
+
# format of "Major.Minor.Patch", for example, "1.3.10".
|
|
1332
|
+
# Corresponds to the JSON property `tfVersion`
|
|
1333
|
+
# @return [String]
|
|
1334
|
+
attr_accessor :tf_version
|
|
1335
|
+
|
|
1336
|
+
# Optional. The user-specified Terraform version constraint. Example: "=1.3.10".
|
|
1337
|
+
# Corresponds to the JSON property `tfVersionConstraint`
|
|
1338
|
+
# @return [String]
|
|
1339
|
+
attr_accessor :tf_version_constraint
|
|
1340
|
+
|
|
1323
1341
|
# Optional. The user-specified Worker Pool resource in which the Cloud Build job
|
|
1324
1342
|
# will execute. Format projects/`project`/locations/`location`/workerPools/`
|
|
1325
1343
|
# workerPoolId` If this field is unspecified, the default Cloud Build worker
|
|
@@ -1335,6 +1353,7 @@ module Google
|
|
|
1335
1353
|
|
|
1336
1354
|
# Update properties of this object
|
|
1337
1355
|
def update!(**args)
|
|
1356
|
+
@annotations = args[:annotations] if args.key?(:annotations)
|
|
1338
1357
|
@artifacts_gcs_bucket = args[:artifacts_gcs_bucket] if args.key?(:artifacts_gcs_bucket)
|
|
1339
1358
|
@build = args[:build] if args.key?(:build)
|
|
1340
1359
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
@@ -1351,6 +1370,8 @@ module Google
|
|
|
1351
1370
|
@state = args[:state] if args.key?(:state)
|
|
1352
1371
|
@terraform_blueprint = args[:terraform_blueprint] if args.key?(:terraform_blueprint)
|
|
1353
1372
|
@tf_errors = args[:tf_errors] if args.key?(:tf_errors)
|
|
1373
|
+
@tf_version = args[:tf_version] if args.key?(:tf_version)
|
|
1374
|
+
@tf_version_constraint = args[:tf_version_constraint] if args.key?(:tf_version_constraint)
|
|
1354
1375
|
@worker_pool = args[:worker_pool] if args.key?(:worker_pool)
|
|
1355
1376
|
end
|
|
1356
1377
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ConfigV1
|
|
18
18
|
# Version of the google-apis-config_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.2.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240424"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -603,6 +603,7 @@ module Google
|
|
|
603
603
|
class Preview
|
|
604
604
|
# @private
|
|
605
605
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
606
|
+
hash :annotations, as: 'annotations'
|
|
606
607
|
property :artifacts_gcs_bucket, as: 'artifactsGcsBucket'
|
|
607
608
|
property :build, as: 'build'
|
|
608
609
|
property :create_time, as: 'createTime'
|
|
@@ -623,6 +624,8 @@ module Google
|
|
|
623
624
|
|
|
624
625
|
collection :tf_errors, as: 'tfErrors', class: Google::Apis::ConfigV1::TerraformError, decorator: Google::Apis::ConfigV1::TerraformError::Representation
|
|
625
626
|
|
|
627
|
+
property :tf_version, as: 'tfVersion'
|
|
628
|
+
property :tf_version_constraint, as: 'tfVersionConstraint'
|
|
626
629
|
property :worker_pool, as: 'workerPool'
|
|
627
630
|
end
|
|
628
631
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-config_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.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-05-05 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-config_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-config_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-config_v1/v0.2.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-config_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|