google-apis-cloudasset_v1 0.84.0 → 0.85.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: e4d7e47b4b2c5bbd98bb9b54a4fd62f43c0ad3afa39297096123b1cd4a43edb5
|
4
|
+
data.tar.gz: 857bba8c4e9fd6287e23fa622d036253024b6798bf24684ea4c00a6e2a914d38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b4a49786b202e4d92f5d51acb80dc0f159841d0056076c9fa46c976d3ec9045974358c232369cf9e84346d05b701c2dc529e5cb4f2b2504bc4586244fe0e94a
|
7
|
+
data.tar.gz: 2e08b915684c4a863be544763977e455d2e5461b875a4ba68c896901fbb10e06dde39466776cbfaca43093b3d85663c4fc1bc98bfb23afb687a7917a26385010
|
data/CHANGELOG.md
CHANGED
@@ -3241,6 +3241,14 @@ module Google
|
|
3241
3241
|
# @return [Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1EgressTo]
|
3242
3242
|
attr_accessor :egress_to
|
3243
3243
|
|
3244
|
+
# Optional. Human-readable title for the egress rule. The title must be unique
|
3245
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
3246
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
3247
|
+
# characters.
|
3248
|
+
# Corresponds to the JSON property `title`
|
3249
|
+
# @return [String]
|
3250
|
+
attr_accessor :title
|
3251
|
+
|
3244
3252
|
def initialize(**args)
|
3245
3253
|
update!(**args)
|
3246
3254
|
end
|
@@ -3249,6 +3257,7 @@ module Google
|
|
3249
3257
|
def update!(**args)
|
3250
3258
|
@egress_from = args[:egress_from] if args.key?(:egress_from)
|
3251
3259
|
@egress_to = args[:egress_to] if args.key?(:egress_to)
|
3260
|
+
@title = args[:title] if args.key?(:title)
|
3252
3261
|
end
|
3253
3262
|
end
|
3254
3263
|
|
@@ -3397,6 +3406,14 @@ module Google
|
|
3397
3406
|
# @return [Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1IngressTo]
|
3398
3407
|
attr_accessor :ingress_to
|
3399
3408
|
|
3409
|
+
# Optional. Human-readable title for the ingress rule. The title must be unique
|
3410
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
3411
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
3412
|
+
# characters.
|
3413
|
+
# Corresponds to the JSON property `title`
|
3414
|
+
# @return [String]
|
3415
|
+
attr_accessor :title
|
3416
|
+
|
3400
3417
|
def initialize(**args)
|
3401
3418
|
update!(**args)
|
3402
3419
|
end
|
@@ -3405,6 +3422,7 @@ module Google
|
|
3405
3422
|
def update!(**args)
|
3406
3423
|
@ingress_from = args[:ingress_from] if args.key?(:ingress_from)
|
3407
3424
|
@ingress_to = args[:ingress_to] if args.key?(:ingress_to)
|
3425
|
+
@title = args[:title] if args.key?(:title)
|
3408
3426
|
end
|
3409
3427
|
end
|
3410
3428
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudassetV1
|
18
18
|
# Version of the google-apis-cloudasset_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.85.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
|
@@ -1595,6 +1595,7 @@ module Google
|
|
1595
1595
|
|
1596
1596
|
property :egress_to, as: 'egressTo', class: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1EgressTo, decorator: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1EgressTo::Representation
|
1597
1597
|
|
1598
|
+
property :title, as: 'title'
|
1598
1599
|
end
|
1599
1600
|
end
|
1600
1601
|
|
@@ -1632,6 +1633,7 @@ module Google
|
|
1632
1633
|
|
1633
1634
|
property :ingress_to, as: 'ingressTo', class: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1IngressTo, decorator: Google::Apis::CloudassetV1::GoogleIdentityAccesscontextmanagerV1IngressTo::Representation
|
1634
1635
|
|
1636
|
+
property :title, as: 'title'
|
1635
1637
|
end
|
1636
1638
|
end
|
1637
1639
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudasset_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.85.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.85.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1
|
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 V1
|