google-apis-cloudasset_v1p1beta1 0.41.0 → 0.43.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: 13e49a4a638ec4802990c99eefe614158e448b94625862152f6c900e7f4f21e8
|
4
|
+
data.tar.gz: c184d6fcccb02b6115bc557d42139d57823c3103fb2bdc56316c978720814a7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3fbf77de835295c530e65a42352c18f21299a2b63a9ef089b0faf531d9ec5ba49086847b6d5d32d9b6e2be2ce49868a4f3dc649ce5d89b7d33bb44c8e1ff911
|
7
|
+
data.tar.gz: e2e51f12343620f28891ab9da4cb4ca81492f8801c2f3c1f20249ddf520ea40d28a3567741ffac0c0908757a7360e0821c1b9c8b7825c1871baccdbc4b64e34c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-cloudasset_v1p1beta1
|
2
2
|
|
3
|
+
### v0.43.0 (2025-01-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250104
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.42.0 (2024-12-15)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241211
|
11
|
+
|
3
12
|
### v0.41.0 (2024-12-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241115
|
@@ -1337,6 +1337,14 @@ module Google
|
|
1337
1337
|
# @return [Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
|
1338
1338
|
attr_accessor :egress_to
|
1339
1339
|
|
1340
|
+
# Optional. Human-readable title for the egress rule. The title must be unique
|
1341
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
1342
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
1343
|
+
# characters.
|
1344
|
+
# Corresponds to the JSON property `title`
|
1345
|
+
# @return [String]
|
1346
|
+
attr_accessor :title
|
1347
|
+
|
1340
1348
|
def initialize(**args)
|
1341
1349
|
update!(**args)
|
1342
1350
|
end
|
@@ -1345,6 +1353,7 @@ module Google
|
|
1345
1353
|
def update!(**args)
|
1346
1354
|
@egress_from = args[:egress_from] if args.key?(:egress_from)
|
1347
1355
|
@egress_to = args[:egress_to] if args.key?(:egress_to)
|
1356
|
+
@title = args[:title] if args.key?(:title)
|
1348
1357
|
end
|
1349
1358
|
end
|
1350
1359
|
|
@@ -1365,6 +1374,16 @@ module Google
|
|
1365
1374
|
# @return [String]
|
1366
1375
|
attr_accessor :access_level
|
1367
1376
|
|
1377
|
+
# A Google Cloud resource that you want to allow to egress the perimeter. These
|
1378
|
+
# resources can access data outside the perimeter. This field only supports
|
1379
|
+
# projects. The project format is `projects/`project_number``. The resource can
|
1380
|
+
# be in any Google Cloud organization, not just the organization where the
|
1381
|
+
# perimeter is defined. You can't use `*` in this field to allow all Google
|
1382
|
+
# Cloud resources.
|
1383
|
+
# Corresponds to the JSON property `resource`
|
1384
|
+
# @return [String]
|
1385
|
+
attr_accessor :resource
|
1386
|
+
|
1368
1387
|
def initialize(**args)
|
1369
1388
|
update!(**args)
|
1370
1389
|
end
|
@@ -1372,6 +1391,7 @@ module Google
|
|
1372
1391
|
# Update properties of this object
|
1373
1392
|
def update!(**args)
|
1374
1393
|
@access_level = args[:access_level] if args.key?(:access_level)
|
1394
|
+
@resource = args[:resource] if args.key?(:resource)
|
1375
1395
|
end
|
1376
1396
|
end
|
1377
1397
|
|
@@ -1493,6 +1513,14 @@ module Google
|
|
1493
1513
|
# @return [Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
|
1494
1514
|
attr_accessor :ingress_to
|
1495
1515
|
|
1516
|
+
# Optional. Human-readable title for the ingress rule. The title must be unique
|
1517
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
1518
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
1519
|
+
# characters.
|
1520
|
+
# Corresponds to the JSON property `title`
|
1521
|
+
# @return [String]
|
1522
|
+
attr_accessor :title
|
1523
|
+
|
1496
1524
|
def initialize(**args)
|
1497
1525
|
update!(**args)
|
1498
1526
|
end
|
@@ -1501,6 +1529,7 @@ module Google
|
|
1501
1529
|
def update!(**args)
|
1502
1530
|
@ingress_from = args[:ingress_from] if args.key?(:ingress_from)
|
1503
1531
|
@ingress_to = args[:ingress_to] if args.key?(:ingress_to)
|
1532
|
+
@title = args[:title] if args.key?(:title)
|
1504
1533
|
end
|
1505
1534
|
end
|
1506
1535
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudassetV1p1beta1
|
18
18
|
# Version of the google-apis-cloudasset_v1p1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250104"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -546,6 +546,7 @@ module Google
|
|
546
546
|
|
547
547
|
property :egress_to, as: 'egressTo', class: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo, decorator: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo::Representation
|
548
548
|
|
549
|
+
property :title, as: 'title'
|
549
550
|
end
|
550
551
|
end
|
551
552
|
|
@@ -553,6 +554,7 @@ module Google
|
|
553
554
|
# @private
|
554
555
|
class Representation < Google::Apis::Core::JsonRepresentation
|
555
556
|
property :access_level, as: 'accessLevel'
|
557
|
+
property :resource, as: 'resource'
|
556
558
|
end
|
557
559
|
end
|
558
560
|
|
@@ -583,6 +585,7 @@ module Google
|
|
583
585
|
|
584
586
|
property :ingress_to, as: 'ingressTo', class: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo, decorator: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo::Representation
|
585
587
|
|
588
|
+
property :title, as: 'title'
|
586
589
|
end
|
587
590
|
end
|
588
591
|
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudasset_v1p1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p1beta1/v0.43.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p1beta1
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Cloud Asset API V1p1beta1
|
82
79
|
test_files: []
|