google-apis-cloudasset_v1beta1 0.4.0 → 0.5.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/cloudasset_v1beta1/classes.rb +38 -27
- data/lib/google/apis/cloudasset_v1beta1/gem_version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 28ad23275d7d2153fb0670d94238543969f6670d5529b4cc525b3932b5f5f977
|
4
|
+
data.tar.gz: bcc2355d6d0fbf5a2e1425ab5e3e891e910526d36fb9210e5b85cb387d067e55
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd67601492a54f7b5d66834429c1dd87127423145a785b97d22225520d04e8d852949e86620997950fa453c65fe93d87e6cd1e4ad2b4da2af2732284f3faa889
|
7
|
+
data.tar.gz: ea73a171a956c9fee1a1876f9877b2b94ab3e1516572596f1eaf07914004fb2200c21ed4a8c14976802944f7755b713f7c9faab0c1acbcb9ec5ec654b1f36046
|
data/CHANGELOG.md
CHANGED
@@ -1368,9 +1368,9 @@ module Google
|
|
1368
1368
|
|
1369
1369
|
# Defines the conditions under which an EgressPolicy matches a request.
|
1370
1370
|
# Conditions based on information about the source of the request. Note that if
|
1371
|
-
# the destination of the request is protected by a ServicePerimeter, then
|
1372
|
-
# ServicePerimeter must have an IngressPolicy which allows access in order
|
1373
|
-
# this request to succeed.
|
1371
|
+
# the destination of the request is also protected by a ServicePerimeter, then
|
1372
|
+
# that ServicePerimeter must have an IngressPolicy which allows access in order
|
1373
|
+
# for this request to succeed.
|
1374
1374
|
class GoogleIdentityAccesscontextmanagerV1EgressFrom
|
1375
1375
|
include Google::Apis::Core::Hashable
|
1376
1376
|
|
@@ -1416,9 +1416,9 @@ module Google
|
|
1416
1416
|
|
1417
1417
|
# Defines the conditions under which an EgressPolicy matches a request.
|
1418
1418
|
# Conditions based on information about the source of the request. Note that if
|
1419
|
-
# the destination of the request is protected by a ServicePerimeter, then
|
1420
|
-
# ServicePerimeter must have an IngressPolicy which allows access in order
|
1421
|
-
# this request to succeed.
|
1419
|
+
# the destination of the request is also protected by a ServicePerimeter, then
|
1420
|
+
# that ServicePerimeter must have an IngressPolicy which allows access in order
|
1421
|
+
# for this request to succeed.
|
1422
1422
|
# Corresponds to the JSON property `egressFrom`
|
1423
1423
|
# @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressFrom]
|
1424
1424
|
attr_accessor :egress_from
|
@@ -1426,8 +1426,10 @@ module Google
|
|
1426
1426
|
# Defines the conditions under which an EgressPolicy matches a request.
|
1427
1427
|
# Conditions are based on information about the ApiOperation intended to be
|
1428
1428
|
# performed on the `resources` specified. Note that if the destination of the
|
1429
|
-
# request is protected by a ServicePerimeter, then that ServicePerimeter
|
1430
|
-
# have an IngressPolicy which allows access in order for this request to
|
1429
|
+
# request is also protected by a ServicePerimeter, then that ServicePerimeter
|
1430
|
+
# must have an IngressPolicy which allows access in order for this request to
|
1431
|
+
# succeed. The request must match `operations` AND `resources` fields in order
|
1432
|
+
# to be allowed egress out of the perimeter.
|
1431
1433
|
# Corresponds to the JSON property `egressTo`
|
1432
1434
|
# @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
|
1433
1435
|
attr_accessor :egress_to
|
@@ -1446,21 +1448,25 @@ module Google
|
|
1446
1448
|
# Defines the conditions under which an EgressPolicy matches a request.
|
1447
1449
|
# Conditions are based on information about the ApiOperation intended to be
|
1448
1450
|
# performed on the `resources` specified. Note that if the destination of the
|
1449
|
-
# request is protected by a ServicePerimeter, then that ServicePerimeter
|
1450
|
-
# have an IngressPolicy which allows access in order for this request to
|
1451
|
+
# request is also protected by a ServicePerimeter, then that ServicePerimeter
|
1452
|
+
# must have an IngressPolicy which allows access in order for this request to
|
1453
|
+
# succeed. The request must match `operations` AND `resources` fields in order
|
1454
|
+
# to be allowed egress out of the perimeter.
|
1451
1455
|
class GoogleIdentityAccesscontextmanagerV1EgressTo
|
1452
1456
|
include Google::Apis::Core::Hashable
|
1453
1457
|
|
1454
|
-
# A list of ApiOperations
|
1455
|
-
# it
|
1458
|
+
# A list of ApiOperations allowed to be performed by the sources specified in
|
1459
|
+
# the corresponding EgressFrom. A request matches if it uses an operation/
|
1460
|
+
# service in this list.
|
1456
1461
|
# Corresponds to the JSON property `operations`
|
1457
1462
|
# @return [Array<Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation>]
|
1458
1463
|
attr_accessor :operations
|
1459
1464
|
|
1460
|
-
# A list of resources, currently only projects in the form `projects/`, that
|
1461
|
-
#
|
1462
|
-
#
|
1463
|
-
#
|
1465
|
+
# A list of resources, currently only projects in the form `projects/`, that are
|
1466
|
+
# allowed to be accessed by sources defined in the corresponding EgressFrom. A
|
1467
|
+
# request matches if it contains a resource in this list. If `*` is specified
|
1468
|
+
# for `resources`, then this EgressTo rule will authorize access to all
|
1469
|
+
# resources outside the perimeter.
|
1464
1470
|
# Corresponds to the JSON property `resources`
|
1465
1471
|
# @return [Array<String>]
|
1466
1472
|
attr_accessor :resources
|
@@ -1477,7 +1483,9 @@ module Google
|
|
1477
1483
|
end
|
1478
1484
|
|
1479
1485
|
# Defines the conditions under which an IngressPolicy matches a request.
|
1480
|
-
# Conditions are based on information about the source of the request.
|
1486
|
+
# Conditions are based on information about the source of the request. The
|
1487
|
+
# request must satisfy what is defined in `sources` AND identity related fields
|
1488
|
+
# in order to match.
|
1481
1489
|
class GoogleIdentityAccesscontextmanagerV1IngressFrom
|
1482
1490
|
include Google::Apis::Core::Hashable
|
1483
1491
|
|
@@ -1526,14 +1534,17 @@ module Google
|
|
1526
1534
|
include Google::Apis::Core::Hashable
|
1527
1535
|
|
1528
1536
|
# Defines the conditions under which an IngressPolicy matches a request.
|
1529
|
-
# Conditions are based on information about the source of the request.
|
1537
|
+
# Conditions are based on information about the source of the request. The
|
1538
|
+
# request must satisfy what is defined in `sources` AND identity related fields
|
1539
|
+
# in order to match.
|
1530
1540
|
# Corresponds to the JSON property `ingressFrom`
|
1531
1541
|
# @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressFrom]
|
1532
1542
|
attr_accessor :ingress_from
|
1533
1543
|
|
1534
1544
|
# Defines the conditions under which an IngressPolicy matches a request.
|
1535
1545
|
# Conditions are based on information about the ApiOperation intended to be
|
1536
|
-
# performed on the
|
1546
|
+
# performed on the target resource of the request. The request must satisfy what
|
1547
|
+
# is defined in `operations` AND `resources` in order to match.
|
1537
1548
|
# Corresponds to the JSON property `ingressTo`
|
1538
1549
|
# @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
|
1539
1550
|
attr_accessor :ingress_to
|
@@ -1559,7 +1570,8 @@ module Google
|
|
1559
1570
|
# cause an error. If no AccessLevel names are listed, resources within the
|
1560
1571
|
# perimeter can only be accessed via Google Cloud calls with request origins
|
1561
1572
|
# within the perimeter. Example: `accessPolicies/MY_POLICY/accessLevels/MY_LEVEL`
|
1562
|
-
# . If `*` is specified
|
1573
|
+
# . If a single `*` is specified for `access_level`, then all IngressSources
|
1574
|
+
# will be allowed.
|
1563
1575
|
# Corresponds to the JSON property `accessLevel`
|
1564
1576
|
# @return [String]
|
1565
1577
|
attr_accessor :access_level
|
@@ -1587,22 +1599,21 @@ module Google
|
|
1587
1599
|
|
1588
1600
|
# Defines the conditions under which an IngressPolicy matches a request.
|
1589
1601
|
# Conditions are based on information about the ApiOperation intended to be
|
1590
|
-
# performed on the
|
1602
|
+
# performed on the target resource of the request. The request must satisfy what
|
1603
|
+
# is defined in `operations` AND `resources` in order to match.
|
1591
1604
|
class GoogleIdentityAccesscontextmanagerV1IngressTo
|
1592
1605
|
include Google::Apis::Core::Hashable
|
1593
1606
|
|
1594
|
-
# A list of ApiOperations the sources specified in
|
1595
|
-
#
|
1607
|
+
# A list of ApiOperations allowed to be performed by the sources specified in
|
1608
|
+
# corresponding IngressFrom in this ServicePerimeter.
|
1596
1609
|
# Corresponds to the JSON property `operations`
|
1597
1610
|
# @return [Array<Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation>]
|
1598
1611
|
attr_accessor :operations
|
1599
1612
|
|
1600
1613
|
# A list of resources, currently only projects in the form `projects/`,
|
1601
1614
|
# protected by this ServicePerimeter that are allowed to be accessed by sources
|
1602
|
-
# defined in the corresponding IngressFrom.
|
1603
|
-
#
|
1604
|
-
# rule will authorize access to all resources inside the perimeter, provided
|
1605
|
-
# that the request also matches the `operations` field.
|
1615
|
+
# defined in the corresponding IngressFrom. If a single `*` is specified, then
|
1616
|
+
# access to all resources inside the perimeter are allowed.
|
1606
1617
|
# Corresponds to the JSON property `resources`
|
1607
1618
|
# @return [Array<String>]
|
1608
1619
|
attr_accessor :resources
|
@@ -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.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210416"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
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.5.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-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.5.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Cloud Asset API V1beta1
|