google-apis-cloudasset_v1beta1 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: 501cabfc854ea2a08d4360979ba778bb2e26884cf8f743e959dc867375b2f082
4
- data.tar.gz: 93fd2471455609562299eb2e77cbf4c3972847ac7576034313d4339d5ed4f13f
3
+ metadata.gz: 9e80483f77639c2857f10403cbbde77e95c895fa30678cb2a95328f18275f4dc
4
+ data.tar.gz: 3bca7c3eb677cbbd9638fd0793e4a4ceab68e60c26398549038dc08797c8f378
5
5
  SHA512:
6
- metadata.gz: 366b7dace3d1422a31f564569cc3a02ee642eb366d0bc0490bbd959cfa838c3e679224f55e301332cef0e5b6c8bad8578eea9d6332ee50f5bbe2ea0d29fed76e
7
- data.tar.gz: 786f9209cb48718c808f138d33f16e013b86693e65533eacc9c1ceefd89196046934e8f75d4d637b3eaacc80417113787132e0405450c2f13f5551eb73c0565c
6
+ metadata.gz: 99e6957d704340c998eac4b468e0662b8a98a9d80b886ea93fe63c7eb695f60e4a81731c2dad2c7f423048f7a06ad9006ddb38cbc511f5cc79ac9c52e4ca5a66
7
+ data.tar.gz: bebc6d997991839f7258eeb6f11c2ac75dd2765dc82900fff5e00d6aa8e79afd9d2207066d03b7c1bc26633b3356090f1442c310fa89995828f0692a46824846
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-cloudasset_v1beta1
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
@@ -1527,6 +1527,14 @@ module Google
1527
1527
  # @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
1528
1528
  attr_accessor :egress_to
1529
1529
 
1530
+ # Optional. Human-readable title for the egress rule. The title must be unique
1531
+ # within the perimeter and can not exceed 100 characters. Within the access
1532
+ # policy, the combined length of all rule titles must not exceed 240,000
1533
+ # characters.
1534
+ # Corresponds to the JSON property `title`
1535
+ # @return [String]
1536
+ attr_accessor :title
1537
+
1530
1538
  def initialize(**args)
1531
1539
  update!(**args)
1532
1540
  end
@@ -1535,6 +1543,7 @@ module Google
1535
1543
  def update!(**args)
1536
1544
  @egress_from = args[:egress_from] if args.key?(:egress_from)
1537
1545
  @egress_to = args[:egress_to] if args.key?(:egress_to)
1546
+ @title = args[:title] if args.key?(:title)
1538
1547
  end
1539
1548
  end
1540
1549
 
@@ -1555,6 +1564,16 @@ module Google
1555
1564
  # @return [String]
1556
1565
  attr_accessor :access_level
1557
1566
 
1567
+ # A Google Cloud resource that you want to allow to egress the perimeter. These
1568
+ # resources can access data outside the perimeter. This field only supports
1569
+ # projects. The project format is `projects/`project_number``. The resource can
1570
+ # be in any Google Cloud organization, not just the organization where the
1571
+ # perimeter is defined. You can't use `*` in this field to allow all Google
1572
+ # Cloud resources.
1573
+ # Corresponds to the JSON property `resource`
1574
+ # @return [String]
1575
+ attr_accessor :resource
1576
+
1558
1577
  def initialize(**args)
1559
1578
  update!(**args)
1560
1579
  end
@@ -1562,6 +1581,7 @@ module Google
1562
1581
  # Update properties of this object
1563
1582
  def update!(**args)
1564
1583
  @access_level = args[:access_level] if args.key?(:access_level)
1584
+ @resource = args[:resource] if args.key?(:resource)
1565
1585
  end
1566
1586
  end
1567
1587
 
@@ -1683,6 +1703,14 @@ module Google
1683
1703
  # @return [Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
1684
1704
  attr_accessor :ingress_to
1685
1705
 
1706
+ # Optional. Human-readable title for the ingress rule. The title must be unique
1707
+ # within the perimeter and can not exceed 100 characters. Within the access
1708
+ # policy, the combined length of all rule titles must not exceed 240,000
1709
+ # characters.
1710
+ # Corresponds to the JSON property `title`
1711
+ # @return [String]
1712
+ attr_accessor :title
1713
+
1686
1714
  def initialize(**args)
1687
1715
  update!(**args)
1688
1716
  end
@@ -1691,6 +1719,7 @@ module Google
1691
1719
  def update!(**args)
1692
1720
  @ingress_from = args[:ingress_from] if args.key?(:ingress_from)
1693
1721
  @ingress_to = args[:ingress_to] if args.key?(:ingress_to)
1722
+ @title = args[:title] if args.key?(:title)
1694
1723
  end
1695
1724
  end
1696
1725
 
@@ -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.41.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.15.1"
22
+ GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241115"
25
+ REVISION = "20250104"
26
26
  end
27
27
  end
28
28
  end
@@ -609,6 +609,7 @@ module Google
609
609
 
610
610
  property :egress_to, as: 'egressTo', class: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo, decorator: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo::Representation
611
611
 
612
+ property :title, as: 'title'
612
613
  end
613
614
  end
614
615
 
@@ -616,6 +617,7 @@ module Google
616
617
  # @private
617
618
  class Representation < Google::Apis::Core::JsonRepresentation
618
619
  property :access_level, as: 'accessLevel'
620
+ property :resource, as: 'resource'
619
621
  end
620
622
  end
621
623
 
@@ -646,6 +648,7 @@ module Google
646
648
 
647
649
  property :ingress_to, as: 'ingressTo', class: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo, decorator: Google::Apis::CloudassetV1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo::Representation
648
650
 
651
+ property :title, as: 'title'
649
652
  end
650
653
  end
651
654
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudasset_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.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: 2024-12-04 00:00:00.000000000 Z
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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.41.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1beta1/v0.43.0
62
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1beta1
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.5.22
79
- signing_key:
76
+ rubygems_version: 3.6.2
80
77
  specification_version: 4
81
78
  summary: Simple REST client for Cloud Asset API V1beta1
82
79
  test_files: []