google-apis-binaryauthorization_v1beta1 0.11.0 → 0.12.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: 6db4acf7a316ec922d7b9345ccd3e8dbcc1351d518b5e97b1caafd30bee4009c
|
|
4
|
+
data.tar.gz: 6b76ada8d5ecc12ee603dd63cd12a359752a41fd889d4654e757abf51a92658d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9897537f10efe245052211a094ba4b005f25c6a0671f23e98929837700e61efd2cdbe5a79dc972dd930ac9faa9805c0126b4bb5408f9deb99e2f2e5a0ed0af6b
|
|
7
|
+
data.tar.gz: acc227d7c165f4a3f53d9451139423b8aea026294509771883d238c38145b142ae729533f9793b8e3d26029ab35abaddb50a52e86b8997a1823fe7bdd933b2e5
|
data/CHANGELOG.md
CHANGED
|
@@ -68,10 +68,10 @@ module Google
|
|
|
68
68
|
|
|
69
69
|
# An image name pattern to allowlist, in the form `registry/path/to/image`. This
|
|
70
70
|
# supports a trailing `*` as a wildcard, but this is allowed only in text after
|
|
71
|
-
# the `registry/` part. `*` wildcard does not match `/`, i.e., gcr.io/nginx
|
|
72
|
-
# matches gcr.io/nginx@latest
|
|
73
|
-
# also supports a trailing `**` wildcard which matches subdirectories, i.e.,
|
|
74
|
-
# io/nginx
|
|
71
|
+
# the `registry/` part. `*` wildcard does not match `/`, i.e., `gcr.io/nginx*`
|
|
72
|
+
# matches `gcr.io/nginx@latest`, but it does not match `gcr.io/nginx/image`.
|
|
73
|
+
# This also supports a trailing `**` wildcard which matches subdirectories, i.e.,
|
|
74
|
+
# `gcr.io/nginx**` matches `gcr.io/nginx/image`.
|
|
75
75
|
# Corresponds to the JSON property `namePattern`
|
|
76
76
|
# @return [String]
|
|
77
77
|
attr_accessor :name_pattern
|
|
@@ -576,20 +576,20 @@ module Google
|
|
|
576
576
|
attr_accessor :global_policy_evaluation_mode
|
|
577
577
|
|
|
578
578
|
# Optional. Per-istio-service-identity admission rules. Istio service identity
|
|
579
|
-
# spec format: spiffe:///ns//sa
|
|
580
|
-
# ns/sa/default
|
|
579
|
+
# spec format: `spiffe:///ns//sa/` or `/ns//sa/` e.g. `spiffe://example.com/ns/
|
|
580
|
+
# test-ns/sa/default`
|
|
581
581
|
# Corresponds to the JSON property `istioServiceIdentityAdmissionRules`
|
|
582
582
|
# @return [Hash<String,Google::Apis::BinaryauthorizationV1beta1::AdmissionRule>]
|
|
583
583
|
attr_accessor :istio_service_identity_admission_rules
|
|
584
584
|
|
|
585
585
|
# Optional. Per-kubernetes-namespace admission rules. K8s namespace spec format:
|
|
586
|
-
# [a-z.-]
|
|
586
|
+
# `[a-z.-]+`, e.g. `some-namespace`
|
|
587
587
|
# Corresponds to the JSON property `kubernetesNamespaceAdmissionRules`
|
|
588
588
|
# @return [Hash<String,Google::Apis::BinaryauthorizationV1beta1::AdmissionRule>]
|
|
589
589
|
attr_accessor :kubernetes_namespace_admission_rules
|
|
590
590
|
|
|
591
591
|
# Optional. Per-kubernetes-service-account admission rules. Service account spec
|
|
592
|
-
# format: `namespace:serviceaccount`. e.g.
|
|
592
|
+
# format: `namespace:serviceaccount`. e.g. `test-ns:default`
|
|
593
593
|
# Corresponds to the JSON property `kubernetesServiceAccountAdmissionRules`
|
|
594
594
|
# @return [Hash<String,Google::Apis::BinaryauthorizationV1beta1::AdmissionRule>]
|
|
595
595
|
attr_accessor :kubernetes_service_account_admission_rules
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BinaryauthorizationV1beta1
|
|
18
18
|
# Version of the google-apis-binaryauthorization_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.12.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20211105"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -228,13 +228,16 @@ module Google
|
|
|
228
228
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
229
229
|
# operation documentation for the appropriate value for this field.
|
|
230
230
|
# @param [Fixnum] options_requested_policy_version
|
|
231
|
-
# Optional. The policy
|
|
232
|
-
# 3. Requests specifying an invalid value will be
|
|
233
|
-
# policies with any conditional bindings must
|
|
234
|
-
#
|
|
235
|
-
# field unset.
|
|
236
|
-
#
|
|
237
|
-
#
|
|
231
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
232
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
233
|
+
# rejected. Requests for policies with any conditional role bindings must
|
|
234
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
|
235
|
+
# valid value or leave the field unset. The policy in the response might use the
|
|
236
|
+
# policy version that you specified, or it might use a lower policy version. For
|
|
237
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
238
|
+
# bindings, the response uses version 1. To learn which resources support
|
|
239
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
240
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
238
241
|
# @param [String] fields
|
|
239
242
|
# Selector specifying which fields to include in a partial response.
|
|
240
243
|
# @param [String] quota_user
|
|
@@ -452,13 +455,16 @@ module Google
|
|
|
452
455
|
# REQUIRED: The resource for which the policy is being requested. See the
|
|
453
456
|
# operation documentation for the appropriate value for this field.
|
|
454
457
|
# @param [Fixnum] options_requested_policy_version
|
|
455
|
-
# Optional. The policy
|
|
456
|
-
# 3. Requests specifying an invalid value will be
|
|
457
|
-
# policies with any conditional bindings must
|
|
458
|
-
#
|
|
459
|
-
# field unset.
|
|
460
|
-
#
|
|
461
|
-
#
|
|
458
|
+
# Optional. The maximum policy version that will be used to format the policy.
|
|
459
|
+
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
|
460
|
+
# rejected. Requests for policies with any conditional role bindings must
|
|
461
|
+
# specify version 3. Policies with no conditional role bindings may specify any
|
|
462
|
+
# valid value or leave the field unset. The policy in the response might use the
|
|
463
|
+
# policy version that you specified, or it might use a lower policy version. For
|
|
464
|
+
# example, if you specify version 3, but the policy has no conditional role
|
|
465
|
+
# bindings, the response uses version 1. To learn which resources support
|
|
466
|
+
# conditions in their IAM policies, see the [IAM documentation](https://cloud.
|
|
467
|
+
# google.com/iam/help/conditions/resource-policies).
|
|
462
468
|
# @param [String] fields
|
|
463
469
|
# Selector specifying which fields to include in a partial response.
|
|
464
470
|
# @param [String] quota_user
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-binaryauthorization_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.12.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: 2021-
|
|
11
|
+
date: 2021-11-15 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-binaryauthorization_v1beta1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-binaryauthorization_v1beta1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-binaryauthorization_v1beta1/v0.12.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-binaryauthorization_v1beta1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|