google-apis-cloudasset_v1p5beta1 0.5.0 → 0.6.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: eb7b9b5d4170ca86727c58b68503ed22853956a40bc450637fc0d10f53a0fd28
4
- data.tar.gz: 40e64fb3289003145c423360c774faee86a79a029683d0100eea4de6970ec4c9
3
+ metadata.gz: 6cabb7364aa1fda7670c244f24e2c070915974c0808bb7cac59cb2e843013b45
4
+ data.tar.gz: a32d856097a83e379143f356882c34a537217816537285aca38aeff5eb35f389
5
5
  SHA512:
6
- metadata.gz: 9308e53ac9c01be35722a5cbe0f5a15d3fa005c8446a528e97a0e80bc83e1970599c3e5a14b97b632bf1ceaaf679ef0c60c5d6789ee094cd386309d44b2d8264
7
- data.tar.gz: 02e0dd426b4c63b257f906f9a929c6c702dfb395154d09405974af1fe05936288563b21baf1f841a5494b6e6326f99959fa3836f79c7667355c335bf1882842c
6
+ metadata.gz: 859350b55381514d0aa2c2aef867739b107589969fbdaba583ac42b52ca6a2142d98f0db96dea8730102650e2e8e2d304c7348933e684010b8d0c96e02dc8b72
7
+ data.tar.gz: f725171177468ae3186abfb1727efec8f6f0694125c55fce7886c6bd86d966f288307480797d9aab7e0f645470693c42b2d28e4893060fd8acaa4883eafb17bf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudasset_v1p5beta1
2
2
 
3
+ ### v0.6.0 (2021-04-22)
4
+
5
+ * Regenerated from discovery document revision 20210416
6
+
3
7
  ### v0.5.0 (2021-03-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20210326
@@ -1281,9 +1281,9 @@ module Google
1281
1281
 
1282
1282
  # Defines the conditions under which an EgressPolicy matches a request.
1283
1283
  # Conditions based on information about the source of the request. Note that if
1284
- # the destination of the request is protected by a ServicePerimeter, then that
1285
- # ServicePerimeter must have an IngressPolicy which allows access in order for
1286
- # this request to succeed.
1284
+ # the destination of the request is also protected by a ServicePerimeter, then
1285
+ # that ServicePerimeter must have an IngressPolicy which allows access in order
1286
+ # for this request to succeed.
1287
1287
  class GoogleIdentityAccesscontextmanagerV1EgressFrom
1288
1288
  include Google::Apis::Core::Hashable
1289
1289
 
@@ -1329,9 +1329,9 @@ module Google
1329
1329
 
1330
1330
  # Defines the conditions under which an EgressPolicy matches a request.
1331
1331
  # Conditions based on information about the source of the request. Note that if
1332
- # the destination of the request is protected by a ServicePerimeter, then that
1333
- # ServicePerimeter must have an IngressPolicy which allows access in order for
1334
- # this request to succeed.
1332
+ # the destination of the request is also protected by a ServicePerimeter, then
1333
+ # that ServicePerimeter must have an IngressPolicy which allows access in order
1334
+ # for this request to succeed.
1335
1335
  # Corresponds to the JSON property `egressFrom`
1336
1336
  # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1EgressFrom]
1337
1337
  attr_accessor :egress_from
@@ -1339,8 +1339,10 @@ module Google
1339
1339
  # Defines the conditions under which an EgressPolicy matches a request.
1340
1340
  # Conditions are based on information about the ApiOperation intended to be
1341
1341
  # performed on the `resources` specified. Note that if the destination of the
1342
- # request is protected by a ServicePerimeter, then that ServicePerimeter must
1343
- # have an IngressPolicy which allows access in order for this request to succeed.
1342
+ # request is also protected by a ServicePerimeter, then that ServicePerimeter
1343
+ # must have an IngressPolicy which allows access in order for this request to
1344
+ # succeed. The request must match `operations` AND `resources` fields in order
1345
+ # to be allowed egress out of the perimeter.
1344
1346
  # Corresponds to the JSON property `egressTo`
1345
1347
  # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
1346
1348
  attr_accessor :egress_to
@@ -1359,21 +1361,25 @@ module Google
1359
1361
  # Defines the conditions under which an EgressPolicy matches a request.
1360
1362
  # Conditions are based on information about the ApiOperation intended to be
1361
1363
  # performed on the `resources` specified. Note that if the destination of the
1362
- # request is protected by a ServicePerimeter, then that ServicePerimeter must
1363
- # have an IngressPolicy which allows access in order for this request to succeed.
1364
+ # request is also protected by a ServicePerimeter, then that ServicePerimeter
1365
+ # must have an IngressPolicy which allows access in order for this request to
1366
+ # succeed. The request must match `operations` AND `resources` fields in order
1367
+ # to be allowed egress out of the perimeter.
1364
1368
  class GoogleIdentityAccesscontextmanagerV1EgressTo
1365
1369
  include Google::Apis::Core::Hashable
1366
1370
 
1367
- # A list of ApiOperations that this egress rule applies to. A request matches if
1368
- # it contains an operation/service in this list.
1371
+ # A list of ApiOperations allowed to be performed by the sources specified in
1372
+ # the corresponding EgressFrom. A request matches if it uses an operation/
1373
+ # service in this list.
1369
1374
  # Corresponds to the JSON property `operations`
1370
1375
  # @return [Array<Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation>]
1371
1376
  attr_accessor :operations
1372
1377
 
1373
- # A list of resources, currently only projects in the form `projects/`, that
1374
- # match this to stanza. A request matches if it contains a resource in this list.
1375
- # If `*` is specified for resources, then this EgressTo rule will authorize
1376
- # access to all resources outside the perimeter.
1378
+ # A list of resources, currently only projects in the form `projects/`, that are
1379
+ # allowed to be accessed by sources defined in the corresponding EgressFrom. A
1380
+ # request matches if it contains a resource in this list. If `*` is specified
1381
+ # for `resources`, then this EgressTo rule will authorize access to all
1382
+ # resources outside the perimeter.
1377
1383
  # Corresponds to the JSON property `resources`
1378
1384
  # @return [Array<String>]
1379
1385
  attr_accessor :resources
@@ -1390,7 +1396,9 @@ module Google
1390
1396
  end
1391
1397
 
1392
1398
  # Defines the conditions under which an IngressPolicy matches a request.
1393
- # Conditions are based on information about the source of the request.
1399
+ # Conditions are based on information about the source of the request. The
1400
+ # request must satisfy what is defined in `sources` AND identity related fields
1401
+ # in order to match.
1394
1402
  class GoogleIdentityAccesscontextmanagerV1IngressFrom
1395
1403
  include Google::Apis::Core::Hashable
1396
1404
 
@@ -1439,14 +1447,17 @@ module Google
1439
1447
  include Google::Apis::Core::Hashable
1440
1448
 
1441
1449
  # Defines the conditions under which an IngressPolicy matches a request.
1442
- # Conditions are based on information about the source of the request.
1450
+ # Conditions are based on information about the source of the request. The
1451
+ # request must satisfy what is defined in `sources` AND identity related fields
1452
+ # in order to match.
1443
1453
  # Corresponds to the JSON property `ingressFrom`
1444
1454
  # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1IngressFrom]
1445
1455
  attr_accessor :ingress_from
1446
1456
 
1447
1457
  # Defines the conditions under which an IngressPolicy matches a request.
1448
1458
  # Conditions are based on information about the ApiOperation intended to be
1449
- # performed on the destination of the request.
1459
+ # performed on the target resource of the request. The request must satisfy what
1460
+ # is defined in `operations` AND `resources` in order to match.
1450
1461
  # Corresponds to the JSON property `ingressTo`
1451
1462
  # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
1452
1463
  attr_accessor :ingress_to
@@ -1472,7 +1483,8 @@ module Google
1472
1483
  # cause an error. If no AccessLevel names are listed, resources within the
1473
1484
  # perimeter can only be accessed via Google Cloud calls with request origins
1474
1485
  # within the perimeter. Example: `accessPolicies/MY_POLICY/accessLevels/MY_LEVEL`
1475
- # . If `*` is specified, then all IngressSources will be allowed.
1486
+ # . If a single `*` is specified for `access_level`, then all IngressSources
1487
+ # will be allowed.
1476
1488
  # Corresponds to the JSON property `accessLevel`
1477
1489
  # @return [String]
1478
1490
  attr_accessor :access_level
@@ -1500,22 +1512,21 @@ module Google
1500
1512
 
1501
1513
  # Defines the conditions under which an IngressPolicy matches a request.
1502
1514
  # Conditions are based on information about the ApiOperation intended to be
1503
- # performed on the destination of the request.
1515
+ # performed on the target resource of the request. The request must satisfy what
1516
+ # is defined in `operations` AND `resources` in order to match.
1504
1517
  class GoogleIdentityAccesscontextmanagerV1IngressTo
1505
1518
  include Google::Apis::Core::Hashable
1506
1519
 
1507
- # A list of ApiOperations the sources specified in corresponding IngressFrom are
1508
- # allowed to perform in this ServicePerimeter.
1520
+ # A list of ApiOperations allowed to be performed by the sources specified in
1521
+ # corresponding IngressFrom in this ServicePerimeter.
1509
1522
  # Corresponds to the JSON property `operations`
1510
1523
  # @return [Array<Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ApiOperation>]
1511
1524
  attr_accessor :operations
1512
1525
 
1513
1526
  # A list of resources, currently only projects in the form `projects/`,
1514
1527
  # protected by this ServicePerimeter that are allowed to be accessed by sources
1515
- # defined in the corresponding IngressFrom. A request matches if it contains a
1516
- # resource in this list. If `*` is specified for resources, then this IngressTo
1517
- # rule will authorize access to all resources inside the perimeter, provided
1518
- # that the request also matches the `operations` field.
1528
+ # defined in the corresponding IngressFrom. If a single `*` is specified, then
1529
+ # access to all resources inside the perimeter are allowed.
1519
1530
  # Corresponds to the JSON property `resources`
1520
1531
  # @return [Array<String>]
1521
1532
  attr_accessor :resources
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudassetV1p5beta1
18
18
  # Version of the google-apis-cloudasset_v1p5beta1 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.6.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 = "20210326"
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_v1p5beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.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-04-05 00:00:00.000000000 Z
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_v1p5beta1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.5.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.6.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1p5beta1
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.13
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 V1p5beta1