google-apis-containeranalysis_v1 0.37.0 → 0.39.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: 9d23fd5d12174e5912a02474875dd96559a3c021ba48023073969b2185c68f11
4
- data.tar.gz: 0bef5a52b6ef3de049bec5585c943afaf9c09a15152a12a2e2bfbabcb85dbe73
3
+ metadata.gz: 784fd5aecf9853c2e7cb3f7b7faefc66faafd3659933021f69e175402e273fe3
4
+ data.tar.gz: 959bda26384badaca2c189ba41cf1a51ac6ee60ded1bcc3f9086aa708594f6c1
5
5
  SHA512:
6
- metadata.gz: 127b888975b3de3c728f74779a4ae4977750ec59d648d667f9c7bce72a46d7ec3ff67c92619d4f6433a2a907974f0e0ed66d4150e7778c7717de0d73a0774dab
7
- data.tar.gz: 942a2a68dd598983147b46984a3f6f8d86e5a750839aa124d49538b45e17fab983ebbdf52891c0912df7200786606e01c14f1595570661e980e6db4eead5881e
6
+ metadata.gz: 3a0cd3c974bdf87ac9ffdc5fa0ec0bf8ec305723d0ff2b7c9f46f39654695b80570a8d664a8e5071811cdf76f79d406115a628268b5d4b9618be6ac0c02319e9
7
+ data.tar.gz: e72fe758e092b832ee613764e6f8de7fdba8e37a3104d4ced2cdc0470af88423f7cb7b2274279b3da44ccc807e44f3a25d0c6a75d43f33da55276612dbc3c8e8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-containeranalysis_v1
2
2
 
3
+ ### v0.39.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230804
6
+
7
+ ### v0.38.0 (2023-08-03)
8
+
9
+ * Regenerated from discovery document revision 20230721
10
+
3
11
  ### v0.37.0 (2023-07-23)
4
12
 
5
13
  * Regenerated from discovery document revision 20230717
@@ -649,7 +649,7 @@ module Google
649
649
  end
650
650
  end
651
651
 
652
- # A step in the build pipeline. Next ID: 20
652
+ # A step in the build pipeline. Next ID: 21
653
653
  class BuildStep
654
654
  include Google::Apis::Core::Hashable
655
655
 
@@ -678,6 +678,13 @@ module Google
678
678
  # @return [Array<String>]
679
679
  attr_accessor :args
680
680
 
681
+ # Option to include built-in and custom substitutions as env variables for this
682
+ # build step. This option will override the global option in BuildOption.
683
+ # Corresponds to the JSON property `automapSubstitutions`
684
+ # @return [Boolean]
685
+ attr_accessor :automap_substitutions
686
+ alias_method :automap_substitutions?, :automap_substitutions
687
+
681
688
  # Working directory to use when running this step's container. If this value is
682
689
  # a relative path, it is relative to the build's working directory. If this
683
690
  # value is absolute, it may be outside the build's working directory, in which
@@ -791,6 +798,7 @@ module Google
791
798
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
792
799
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
793
800
  @args = args[:args] if args.key?(:args)
801
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
794
802
  @dir = args[:dir] if args.key?(:dir)
795
803
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
796
804
  @env = args[:env] if args.key?(:env)
@@ -1842,6 +1850,13 @@ module Google
1842
1850
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1843
1851
  include Google::Apis::Core::Hashable
1844
1852
 
1853
+ # Option to include built-in and custom substitutions as env variables for all
1854
+ # build steps.
1855
+ # Corresponds to the JSON property `automapSubstitutions`
1856
+ # @return [Boolean]
1857
+ attr_accessor :automap_substitutions
1858
+ alias_method :automap_substitutions?, :automap_substitutions
1859
+
1845
1860
  # Optional. Option to specify how default logs buckets are setup.
1846
1861
  # Corresponds to the JSON property `defaultLogsBucketBehavior`
1847
1862
  # @return [String]
@@ -1942,6 +1957,7 @@ module Google
1942
1957
 
1943
1958
  # Update properties of this object
1944
1959
  def update!(**args)
1960
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
1945
1961
  @default_logs_bucket_behavior = args[:default_logs_bucket_behavior] if args.key?(:default_logs_bucket_behavior)
1946
1962
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
1947
1963
  @dynamic_substitutions = args[:dynamic_substitutions] if args.key?(:dynamic_substitutions)
@@ -2011,6 +2027,13 @@ module Google
2011
2027
  # @return [Array<String>]
2012
2028
  attr_accessor :args
2013
2029
 
2030
+ # Option to include built-in and custom substitutions as env variables for this
2031
+ # build step. This option will override the global option in BuildOption.
2032
+ # Corresponds to the JSON property `automapSubstitutions`
2033
+ # @return [Boolean]
2034
+ attr_accessor :automap_substitutions
2035
+ alias_method :automap_substitutions?, :automap_substitutions
2036
+
2014
2037
  # Working directory to use when running this step's container. If this value is
2015
2038
  # a relative path, it is relative to the build's working directory. If this
2016
2039
  # value is absolute, it may be outside the build's working directory, in which
@@ -2124,6 +2147,7 @@ module Google
2124
2147
  @allow_exit_codes = args[:allow_exit_codes] if args.key?(:allow_exit_codes)
2125
2148
  @allow_failure = args[:allow_failure] if args.key?(:allow_failure)
2126
2149
  @args = args[:args] if args.key?(:args)
2150
+ @automap_substitutions = args[:automap_substitutions] if args.key?(:automap_substitutions)
2127
2151
  @dir = args[:dir] if args.key?(:dir)
2128
2152
  @entrypoint = args[:entrypoint] if args.key?(:entrypoint)
2129
2153
  @env = args[:env] if args.key?(:env)
@@ -5013,22 +5037,22 @@ module Google
5013
5037
  # evaluates to `true`. A condition can add constraints based on attributes of
5014
5038
  # the request, the resource, or both. To learn which resources support
5015
5039
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
5016
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
5040
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
5017
5041
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
5018
5042
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
5019
5043
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
5020
5044
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
5021
5045
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
5022
5046
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
5023
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
5024
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
5025
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
5026
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
5027
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
5028
- # access description: Does not grant access after Sep 2020 expression: request.
5029
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
5030
- # a description of IAM and its features, see the [IAM documentation](https://
5031
- # cloud.google.com/iam/docs/).
5047
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
5048
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
5049
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
5050
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
5051
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
5052
+ # title: expirable access description: Does not grant access after Sep 2020
5053
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
5054
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
5055
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
5032
5056
  class Policy
5033
5057
  include Google::Apis::Core::Hashable
5034
5058
 
@@ -5627,22 +5651,22 @@ module Google
5627
5651
  # evaluates to `true`. A condition can add constraints based on attributes of
5628
5652
  # the request, the resource, or both. To learn which resources support
5629
5653
  # conditions in their IAM policies, see the [IAM documentation](https://cloud.
5630
- # google.com/iam/help/conditions/resource-policies). **JSON example:** ` "
5654
+ # google.com/iam/help/conditions/resource-policies). **JSON example:** ``` ` "
5631
5655
  # bindings": [ ` "role": "roles/resourcemanager.organizationAdmin", "members": [
5632
5656
  # "user:mike@example.com", "group:admins@example.com", "domain:google.com", "
5633
5657
  # serviceAccount:my-project-id@appspot.gserviceaccount.com" ] `, ` "role": "
5634
5658
  # roles/resourcemanager.organizationViewer", "members": [ "user:eve@example.com"
5635
5659
  # ], "condition": ` "title": "expirable access", "description": "Does not grant
5636
5660
  # access after Sep 2020", "expression": "request.time < timestamp('2020-10-01T00:
5637
- # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` **YAML example:**
5638
- # bindings: - members: - user:mike@example.com - group:admins@example.com -
5639
- # domain:google.com - serviceAccount:my-project-id@appspot.gserviceaccount.com
5640
- # role: roles/resourcemanager.organizationAdmin - members: - user:eve@example.
5641
- # com role: roles/resourcemanager.organizationViewer condition: title: expirable
5642
- # access description: Does not grant access after Sep 2020 expression: request.
5643
- # time < timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For
5644
- # a description of IAM and its features, see the [IAM documentation](https://
5645
- # cloud.google.com/iam/docs/).
5661
+ # 00:00.000Z')", ` ` ], "etag": "BwWWja0YfJA=", "version": 3 ` ``` **YAML
5662
+ # example:** ``` bindings: - members: - user:mike@example.com - group:admins@
5663
+ # example.com - domain:google.com - serviceAccount:my-project-id@appspot.
5664
+ # gserviceaccount.com role: roles/resourcemanager.organizationAdmin - members: -
5665
+ # user:eve@example.com role: roles/resourcemanager.organizationViewer condition:
5666
+ # title: expirable access description: Does not grant access after Sep 2020
5667
+ # expression: request.time < timestamp('2020-10-01T00:00:00.000Z') etag:
5668
+ # BwWWja0YfJA= version: 3 ``` For a description of IAM and its features, see the
5669
+ # [IAM documentation](https://cloud.google.com/iam/docs/).
5646
5670
  # Corresponds to the JSON property `policy`
5647
5671
  # @return [Google::Apis::ContaineranalysisV1::Policy]
5648
5672
  attr_accessor :policy
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContaineranalysisV1
18
18
  # Version of the google-apis-containeranalysis_v1 gem
19
- GEM_VERSION = "0.37.0"
19
+ GEM_VERSION = "0.39.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 = "20230717"
25
+ REVISION = "20230804"
26
26
  end
27
27
  end
28
28
  end
@@ -1149,6 +1149,7 @@ module Google
1149
1149
  collection :allow_exit_codes, as: 'allowExitCodes'
1150
1150
  property :allow_failure, as: 'allowFailure'
1151
1151
  collection :args, as: 'args'
1152
+ property :automap_substitutions, as: 'automapSubstitutions'
1152
1153
  property :dir, as: 'dir'
1153
1154
  property :entrypoint, as: 'entrypoint'
1154
1155
  collection :env, as: 'env'
@@ -1431,6 +1432,7 @@ module Google
1431
1432
  class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildOptions
1432
1433
  # @private
1433
1434
  class Representation < Google::Apis::Core::JsonRepresentation
1435
+ property :automap_substitutions, as: 'automapSubstitutions'
1434
1436
  property :default_logs_bucket_behavior, as: 'defaultLogsBucketBehavior'
1435
1437
  property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
1436
1438
  property :dynamic_substitutions, as: 'dynamicSubstitutions'
@@ -1463,6 +1465,7 @@ module Google
1463
1465
  collection :allow_exit_codes, as: 'allowExitCodes'
1464
1466
  property :allow_failure, as: 'allowFailure'
1465
1467
  collection :args, as: 'args'
1468
+ property :automap_substitutions, as: 'automapSubstitutions'
1466
1469
  property :dir, as: 'dir'
1467
1470
  property :entrypoint, as: 'entrypoint'
1468
1471
  collection :env, as: 'env'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-containeranalysis_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.37.0
4
+ version: 0.39.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-07-23 00:00:00.000000000 Z
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.37.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.39.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
63
63
  post_install_message:
64
64
  rdoc_options: []