google-apis-cloudasset_v1p1beta1 0.40.0 → 0.42.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9819242dec981157a22d3176b4b8bce128d150c9c5f63d31721c27cdefb57ee0
4
- data.tar.gz: f8a4c66db0af2f580bbb1749892a56a846965f80783a8ddc72e6f8d47d8240bf
3
+ metadata.gz: 4860da2525fb33ec911ab1cc6ab91b34fe6fdc45f83c5fc99cb41bee4903d347
4
+ data.tar.gz: 252b13a9ce20cb5d08521fe6d9ab58bf8aac94f731ff943be9cc20c00bef3bb3
5
5
  SHA512:
6
- metadata.gz: 25fc06cd31af5db0198f73666bd9a0fa196cb741ca00cc3d10cc6eb99a2edf211187e666cb8d921b4cc32cbd793f221e35bbe3bab1ae7cb54639053a187374ba
7
- data.tar.gz: 503d402707b2d90364e9c4e24b690bd3072ff818b3bb52c9bcbebae776e8b42f036b9a7a329501575f1736c60bee39f91488d5f633242616585e28fd455e13ab
6
+ metadata.gz: 971359b7973c36e5689befea79cafa787a8a0d11737ff05b9244e04664edb684af13af947f6723f8007fd40e4c03f1fbc80fce37c26a223adaca675e5a235099
7
+ data.tar.gz: 9280006db22de2a82baf75f4ece5d5775ac93d0cdaae0961bbcd1941dfc28d1dca55b0f34392b8a28240606cbb3810384331de8b6a8269ed00e7d1ba806b55ff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudasset_v1p1beta1
2
2
 
3
+ ### v0.42.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241211
6
+
7
+ ### v0.41.0 (2024-12-02)
8
+
9
+ * Regenerated from discovery document revision 20241115
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.40.0 (2024-06-16)
4
13
 
5
14
  * Regenerated from discovery document revision 20240608
@@ -1261,9 +1261,10 @@ module Google
1261
1261
 
1262
1262
  # A list of identities that are allowed access through [EgressPolicy].
1263
1263
  # Identities can be an individual user, service account, Google group, or third-
1264
- # party identity. The `v1` identities that have the prefix `user`, `group`, `
1265
- # serviceAccount`, `principal`, and `principalSet` in https://cloud.google.com/
1266
- # iam/docs/principal-identifiers#v1 are supported.
1264
+ # party identity. For third-party identity, only single identities are supported
1265
+ # and other identity types are not supported. The `v1` identities that have the
1266
+ # prefix `user`, `group`, `serviceAccount`, and `principal` in https://cloud.
1267
+ # google.com/iam/docs/principal-identifiers#v1 are supported.
1267
1268
  # Corresponds to the JSON property `identities`
1268
1269
  # @return [Array<String>]
1269
1270
  attr_accessor :identities
@@ -1336,6 +1337,14 @@ module Google
1336
1337
  # @return [Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
1337
1338
  attr_accessor :egress_to
1338
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
+
1339
1348
  def initialize(**args)
1340
1349
  update!(**args)
1341
1350
  end
@@ -1344,6 +1353,7 @@ module Google
1344
1353
  def update!(**args)
1345
1354
  @egress_from = args[:egress_from] if args.key?(:egress_from)
1346
1355
  @egress_to = args[:egress_to] if args.key?(:egress_to)
1356
+ @title = args[:title] if args.key?(:title)
1347
1357
  end
1348
1358
  end
1349
1359
 
@@ -1431,9 +1441,10 @@ module Google
1431
1441
 
1432
1442
  # A list of identities that are allowed access through [IngressPolicy].
1433
1443
  # Identities can be an individual user, service account, Google group, or third-
1434
- # party identity. The `v1` identities that have the prefix `user`, `group`, `
1435
- # serviceAccount`, `principal`, and `principalSet` in https://cloud.google.com/
1436
- # iam/docs/principal-identifiers#v1 are supported.
1444
+ # party identity. For third-party identity, only single identities are supported
1445
+ # and other identity types are not supported. The `v1` identities that have the
1446
+ # prefix `user`, `group`, `serviceAccount`, and `principal` in https://cloud.
1447
+ # google.com/iam/docs/principal-identifiers#v1 are supported.
1437
1448
  # Corresponds to the JSON property `identities`
1438
1449
  # @return [Array<String>]
1439
1450
  attr_accessor :identities
@@ -1491,6 +1502,14 @@ module Google
1491
1502
  # @return [Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
1492
1503
  attr_accessor :ingress_to
1493
1504
 
1505
+ # Optional. Human-readable title for the ingress rule. The title must be unique
1506
+ # within the perimeter and can not exceed 100 characters. Within the access
1507
+ # policy, the combined length of all rule titles must not exceed 240,000
1508
+ # characters.
1509
+ # Corresponds to the JSON property `title`
1510
+ # @return [String]
1511
+ attr_accessor :title
1512
+
1494
1513
  def initialize(**args)
1495
1514
  update!(**args)
1496
1515
  end
@@ -1499,6 +1518,7 @@ module Google
1499
1518
  def update!(**args)
1500
1519
  @ingress_from = args[:ingress_from] if args.key?(:ingress_from)
1501
1520
  @ingress_to = args[:ingress_to] if args.key?(:ingress_to)
1521
+ @title = args[:title] if args.key?(:title)
1502
1522
  end
1503
1523
  end
1504
1524
 
@@ -1655,6 +1675,14 @@ module Google
1655
1675
  # @return [String]
1656
1676
  attr_accessor :description
1657
1677
 
1678
+ # Optional. An opaque identifier for the current version of the `
1679
+ # ServicePerimeter`. This identifier does not follow any specific format. If an
1680
+ # etag is not provided, the operation will be performed as if a valid etag is
1681
+ # provided.
1682
+ # Corresponds to the JSON property `etag`
1683
+ # @return [String]
1684
+ attr_accessor :etag
1685
+
1658
1686
  # Identifier. Resource name for the `ServicePerimeter`. Format: `accessPolicies/`
1659
1687
  # access_policy`/servicePerimeters/`service_perimeter``. The `service_perimeter`
1660
1688
  # component must begin with a letter, followed by alphanumeric characters or `_`.
@@ -1710,6 +1738,7 @@ module Google
1710
1738
  # Update properties of this object
1711
1739
  def update!(**args)
1712
1740
  @description = args[:description] if args.key?(:description)
1741
+ @etag = args[:etag] if args.key?(:etag)
1713
1742
  @name = args[:name] if args.key?(:name)
1714
1743
  @perimeter_type = args[:perimeter_type] if args.key?(:perimeter_type)
1715
1744
  @spec = args[:spec] if args.key?(:spec)
@@ -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.40.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240608"
25
+ REVISION = "20241211"
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
 
@@ -583,6 +584,7 @@ module Google
583
584
 
584
585
  property :ingress_to, as: 'ingressTo', class: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo, decorator: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo::Representation
585
586
 
587
+ property :title, as: 'title'
586
588
  end
587
589
  end
588
590
 
@@ -624,6 +626,7 @@ module Google
624
626
  # @private
625
627
  class Representation < Google::Apis::Core::JsonRepresentation
626
628
  property :description, as: 'description'
629
+ property :etag, as: 'etag'
627
630
  property :name, as: 'name'
628
631
  property :perimeter_type, as: 'perimeterType'
629
632
  property :spec, as: 'spec', class: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig, decorator: Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudasset_v1p1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.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-06-16 00:00:00.000000000 Z
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_v1p1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p1beta1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p1beta1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p1beta1
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.6
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 V1p1beta1