google-apis-containeranalysis_v1alpha1 0.50.0 → 0.52.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: 15f949c4218499b6f45d3665f5e836c00dd156042dc0198d56ef4312311b2e78
|
4
|
+
data.tar.gz: 6fdc4e453cf3c8a6f1a055b859c4b342108784e8811111f164ff8b8c17c0fa33
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac1e510553025651ddf31605702599eefde57c2089f8a3282db67bdbff2a825b4a2ac43179847fb063cbfc0eb5300338fc13361d6dffb570c878d2f5a4bb3731
|
7
|
+
data.tar.gz: 8992ac5cf1c0f324089850b97bb437ccb473bd56f3c03fa61ec645a31d209d90a8ee5b5269630f7769e264a69bb4bfcfe138279040e9cc014e60352381b74315
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-containeranalysis_v1alpha1
|
2
2
|
|
3
|
+
### v0.52.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230804
|
6
|
+
|
7
|
+
### v0.51.0 (2023-08-03)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230721
|
10
|
+
|
3
11
|
### v0.50.0 (2023-07-23)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230717
|
@@ -623,7 +623,7 @@ module Google
|
|
623
623
|
end
|
624
624
|
end
|
625
625
|
|
626
|
-
# A step in the build pipeline. Next ID:
|
626
|
+
# A step in the build pipeline. Next ID: 21
|
627
627
|
class BuildStep
|
628
628
|
include Google::Apis::Core::Hashable
|
629
629
|
|
@@ -652,6 +652,13 @@ module Google
|
|
652
652
|
# @return [Array<String>]
|
653
653
|
attr_accessor :args
|
654
654
|
|
655
|
+
# Option to include built-in and custom substitutions as env variables for this
|
656
|
+
# build step. This option will override the global option in BuildOption.
|
657
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
658
|
+
# @return [Boolean]
|
659
|
+
attr_accessor :automap_substitutions
|
660
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
661
|
+
|
655
662
|
# Working directory to use when running this step's container. If this value is
|
656
663
|
# a relative path, it is relative to the build's working directory. If this
|
657
664
|
# value is absolute, it may be outside the build's working directory, in which
|
@@ -765,6 +772,7 @@ module Google
|
|
765
772
|
@allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
|
766
773
|
@allow_failure = args[:allow_failure] if args.key?(:allow_failure)
|
767
774
|
@args = args[:args] if args.key?(:args)
|
775
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
768
776
|
@dir = args[:dir] if args.key?(:dir)
|
769
777
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
770
778
|
@env = args[:env] if args.key?(:env)
|
@@ -1706,6 +1714,13 @@ module Google
|
|
1706
1714
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
|
1707
1715
|
include Google::Apis::Core::Hashable
|
1708
1716
|
|
1717
|
+
# Option to include built-in and custom substitutions as env variables for all
|
1718
|
+
# build steps.
|
1719
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
1720
|
+
# @return [Boolean]
|
1721
|
+
attr_accessor :automap_substitutions
|
1722
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
1723
|
+
|
1709
1724
|
# Optional. Option to specify how default logs buckets are setup.
|
1710
1725
|
# Corresponds to the JSON property `defaultLogsBucketBehavior`
|
1711
1726
|
# @return [String]
|
@@ -1806,6 +1821,7 @@ module Google
|
|
1806
1821
|
|
1807
1822
|
# Update properties of this object
|
1808
1823
|
def update!(**args)
|
1824
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
1809
1825
|
@default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
|
1810
1826
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1811
1827
|
@dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
|
@@ -1875,6 +1891,13 @@ module Google
|
|
1875
1891
|
# @return [Array<String>]
|
1876
1892
|
attr_accessor :args
|
1877
1893
|
|
1894
|
+
# Option to include built-in and custom substitutions as env variables for this
|
1895
|
+
# build step. This option will override the global option in BuildOption.
|
1896
|
+
# Corresponds to the JSON property `automapSubstitutions`
|
1897
|
+
# @return [Boolean]
|
1898
|
+
attr_accessor :automap_substitutions
|
1899
|
+
alias_method :automap_substitutions?, :automap_substitutions
|
1900
|
+
|
1878
1901
|
# Working directory to use when running this step's container. If this value is
|
1879
1902
|
# a relative path, it is relative to the build's working directory. If this
|
1880
1903
|
# value is absolute, it may be outside the build's working directory, in which
|
@@ -1988,6 +2011,7 @@ module Google
|
|
1988
2011
|
@allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
|
1989
2012
|
@allow_failure = args[:allow_failure] if args.key?(:allow_failure)
|
1990
2013
|
@args = args[:args] if args.key?(:args)
|
2014
|
+
@automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
|
1991
2015
|
@dir = args[:dir] if args.key?(:dir)
|
1992
2016
|
@entrypoint = args[:entrypoint] if args.key?(:entrypoint)
|
1993
2017
|
@env = args[:env] if args.key?(:env)
|
@@ -5140,13 +5164,13 @@ module Google
|
|
5140
5164
|
# @return [String]
|
5141
5165
|
attr_accessor :name
|
5142
5166
|
|
5143
|
-
# The normal response of the operation
|
5144
|
-
#
|
5145
|
-
#
|
5146
|
-
#
|
5147
|
-
#
|
5148
|
-
#
|
5149
|
-
#
|
5167
|
+
# The normal, successful response of the operation. If the original method
|
5168
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
5169
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
5170
|
+
# response should be the resource. For other methods, the response should have
|
5171
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
5172
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
5173
|
+
# `TakeSnapshotResponse`.
|
5150
5174
|
# Corresponds to the JSON property `response`
|
5151
5175
|
# @return [Hash<String,Object>]
|
5152
5176
|
attr_accessor :response
|
@@ -5577,22 +5601,22 @@ module Google
|
|
5577
5601
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
5578
5602
|
# the request, the resource, or both. To learn which resources support
|
5579
5603
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
5580
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
5604
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
5581
5605
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
5582
5606
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
5583
5607
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
5584
5608
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
5585
5609
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
5586
5610
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
5587
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
5588
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
5589
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
5590
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
5591
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
5592
|
-
# access description: Does not grant access after Sep 2020
|
5593
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
5594
|
-
# a description of IAM and its features, see the
|
5595
|
-
# cloud.google.com/iam/docs/).
|
5611
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
5612
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
5613
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
5614
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
5615
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
5616
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
5617
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
5618
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
5619
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
5596
5620
|
class Policy
|
5597
5621
|
include Google::Apis::Core::Hashable
|
5598
5622
|
|
@@ -6323,22 +6347,22 @@ module Google
|
|
6323
6347
|
# evaluates to `true`. A condition can add constraints based on attributes of
|
6324
6348
|
# the request, the resource, or both. To learn which resources support
|
6325
6349
|
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
6326
|
-
# google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
|
6350
|
+
# google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
|
6327
6351
|
# bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
|
6328
6352
|
# "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
|
6329
6353
|
# serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
|
6330
6354
|
# roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
|
6331
6355
|
# ], "condition": ` "title": "expirable access", "description": "Does not grant
|
6332
6356
|
# access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
|
6333
|
-
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML
|
6334
|
-
# bindings: - members: - user:mike@example.com - group:admins@
|
6335
|
-
# domain:google.com - serviceAccount:my-project-id@appspot.
|
6336
|
-
# role: roles/resourcemanager.organizationAdmin - members: -
|
6337
|
-
# com role: roles/resourcemanager.organizationViewer condition:
|
6338
|
-
# access description: Does not grant access after Sep 2020
|
6339
|
-
# time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
6340
|
-
# a description of IAM and its features, see the
|
6341
|
-
# cloud.google.com/iam/docs/).
|
6357
|
+
# 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
|
6358
|
+
# example:** ``` bindings: - members: - user:mike@example.com - group:admins@
|
6359
|
+
# example.com - domain:google.com - serviceAccount:my-project-id@appspot.
|
6360
|
+
# gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
|
6361
|
+
# user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
|
6362
|
+
# title: expirable access description: Does not grant access after Sep 2020
|
6363
|
+
# expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
|
6364
|
+
# BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
|
6365
|
+
# [IAM documentation](https://cloud.google.com/iam/docs/).
|
6342
6366
|
# Corresponds to the JSON property `policy`
|
6343
6367
|
# @return [Google::Apis::ContaineranalysisV1alpha1::Policy]
|
6344
6368
|
attr_accessor :policy
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContaineranalysisV1alpha1
|
18
18
|
# Version of the google-apis-containeranalysis_v1alpha1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.52.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230804"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1186,6 +1186,7 @@ module Google
|
|
1186
1186
|
collection :allow_exit_codes, as: 'allowExitCodes'
|
1187
1187
|
property :allow_failure, as: 'allowFailure'
|
1188
1188
|
collection :args, as: 'args'
|
1189
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
1189
1190
|
property :dir, as: 'dir'
|
1190
1191
|
property :entrypoint, as: 'entrypoint'
|
1191
1192
|
collection :env, as: 'env'
|
@@ -1441,6 +1442,7 @@ module Google
|
|
1441
1442
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
|
1442
1443
|
# @private
|
1443
1444
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1445
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
1444
1446
|
property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
|
1445
1447
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
1446
1448
|
property :dynamic_substitutions, as: 'dynamicSubstitutions'
|
@@ -1473,6 +1475,7 @@ module Google
|
|
1473
1475
|
collection :allow_exit_codes, as: 'allowExitCodes'
|
1474
1476
|
property :allow_failure, as: 'allowFailure'
|
1475
1477
|
collection :args, as: 'args'
|
1478
|
+
property :automap_substitutions, as: 'automapSubstitutions'
|
1476
1479
|
property :dir, as: 'dir'
|
1477
1480
|
property :entrypoint, as: 'entrypoint'
|
1478
1481
|
collection :env, as: 'env'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-containeranalysis_v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.52.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: 2023-
|
11
|
+
date: 2023-08-20 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-containeranalysis_v1alpha1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1alpha1/v0.52.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1alpha1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|