google-apis-cloudasset_v1beta1 0.41.0 → 0.42.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: 5df152631142021f1d33f52742f864897ecd487291c0b58cfc154fa617ccf752
|
4
|
+
data.tar.gz: b80333b5d327832e092bd832e73d8395bed3ab56b84885e8ab208f7a6975c902
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09e5d58b71f8df8a427e21e631e100849e44ff9096ea1551d6e56d1fdac5b7ee231af2300acbcea93ad35f7e358ba5bc759d8f290f01e4fd92679363ba1fd86f'
|
7
|
+
data.tar.gz: 74bef30bb07afd50a7d9699a68e87df8a9bcf9275b4bd1ce65afbbaed9255c68dcf4dd7cdf21020ac16944cb44f062c40d6442096d411b16dd873b4cd60e97b3
|
data/CHANGELOG.md
CHANGED
@@ -1527,6 +1527,14 @@ module Google
|
|
1527
1527
|
# @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
|
1528
1528
|
attr_accessor :egress_to
|
1529
1529
|
|
1530
|
+
# Optional. Human-readable title for the egress rule. The title must be unique
|
1531
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
1532
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
1533
|
+
# characters.
|
1534
|
+
# Corresponds to the JSON property `title`
|
1535
|
+
# @return [String]
|
1536
|
+
attr_accessor :title
|
1537
|
+
|
1530
1538
|
def initialize(**args)
|
1531
1539
|
update!(**args)
|
1532
1540
|
end
|
@@ -1535,6 +1543,7 @@ module Google
|
|
1535
1543
|
def update!(**args)
|
1536
1544
|
@egress_from = args[:egress_from] if args.key?(:egress_from)
|
1537
1545
|
@egress_to = args[:egress_to] if args.key?(:egress_to)
|
1546
|
+
@title = args[:title] if args.key?(:title)
|
1538
1547
|
end
|
1539
1548
|
end
|
1540
1549
|
|
@@ -1683,6 +1692,14 @@ module Google
|
|
1683
1692
|
# @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
|
1684
1693
|
attr_accessor :ingress_to
|
1685
1694
|
|
1695
|
+
# Optional. Human-readable title for the ingress rule. The title must be unique
|
1696
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
1697
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
1698
|
+
# characters.
|
1699
|
+
# Corresponds to the JSON property `title`
|
1700
|
+
# @return [String]
|
1701
|
+
attr_accessor :title
|
1702
|
+
|
1686
1703
|
def initialize(**args)
|
1687
1704
|
update!(**args)
|
1688
1705
|
end
|
@@ -1691,6 +1708,7 @@ module Google
|
|
1691
1708
|
def update!(**args)
|
1692
1709
|
@ingress_from = args[:ingress_from] if args.key?(:ingress_from)
|
1693
1710
|
@ingress_to = args[:ingress_to] if args.key?(:ingress_to)
|
1711
|
+
@title = args[:title] if args.key?(:title)
|
1694
1712
|
end
|
1695
1713
|
end
|
1696
1714
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudassetV1beta1
|
18
18
|
# Version of the google-apis-cloudasset_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.42.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241211"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -609,6 +609,7 @@ module Google
|
|
609
609
|
|
610
610
|
property :egress_to, as: 'egressTo', class: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo, decorator: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo::Representation
|
611
611
|
|
612
|
+
property :title, as: 'title'
|
612
613
|
end
|
613
614
|
end
|
614
615
|
|
@@ -646,6 +647,7 @@ module Google
|
|
646
647
|
|
647
648
|
property :ingress_to, as: 'ingressTo', class: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo, decorator: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo::Representation
|
648
649
|
|
650
|
+
property :title, as: 'title'
|
649
651
|
end
|
650
652
|
end
|
651
653
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudasset_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.42.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-12-
|
11
|
+
date: 2024-12-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-cloudasset_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Asset API V1beta1
|