google-apis-cloudasset_v1p5beta1 0.40.0 → 0.41.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: a1aab129fbbe37a3e8f1e5659fd1914de14399686491f87e7a5fb41505d4ebae
4
- data.tar.gz: befcc76e9e1534672501fac547d2997eb5928b7be5478409c8913993c375a90b
3
+ metadata.gz: baee307de3c4c4f90adc6dab327e4c73a771aef027f97d32b03fd9493f8b5716
4
+ data.tar.gz: d23a15e45c395d126f68052d416d5be1e75288a22a4deacbac1b51f880464f70
5
5
  SHA512:
6
- metadata.gz: 2e7c31588f0d98aabd852abc06e12821263bba077d46c5a0965131ef8843c1612fed924081fedb6ee81485ebf5f4d9c225aa4fedd1da3b9d69646673aa49577a
7
- data.tar.gz: 996d0237043c57fb8ee752b7a8be161dd498742b9d3267cc9e9856c8017bd882d32852b71369026193ecf314f4a20c8bb3cd514033f2c6f87d24f7f3f35a2b2e
6
+ metadata.gz: 32071dff727ef1bf075ed400a9dc5d7bb04fe31b04a352f1b9f97347cf7a12a912d084a0c75b0ce8676ab49bdfa02591043eabf06c0e9b3a4d413a11878b8c5c
7
+ data.tar.gz: ea5e4a75c356110a60896f68c9087c8e1977c69c72fb15a7a60058e78ccadd9ec9be35d7808d247195f0f126e3941c82acaa4e61c2ee57455d67cedc9781c716
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudasset_v1p5beta1
2
2
 
3
+ ### v0.41.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241211
6
+
3
7
  ### v0.40.0 (2024-12-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20241115
@@ -1440,6 +1440,14 @@ module Google
1440
1440
  # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
1441
1441
  attr_accessor :egress_to
1442
1442
 
1443
+ # Optional. Human-readable title for the egress rule. The title must be unique
1444
+ # within the perimeter and can not exceed 100 characters. Within the access
1445
+ # policy, the combined length of all rule titles must not exceed 240,000
1446
+ # characters.
1447
+ # Corresponds to the JSON property `title`
1448
+ # @return [String]
1449
+ attr_accessor :title
1450
+
1443
1451
  def initialize(**args)
1444
1452
  update!(**args)
1445
1453
  end
@@ -1448,6 +1456,7 @@ module Google
1448
1456
  def update!(**args)
1449
1457
  @egress_from = args[:egress_from] if args.key?(:egress_from)
1450
1458
  @egress_to = args[:egress_to] if args.key?(:egress_to)
1459
+ @title = args[:title] if args.key?(:title)
1451
1460
  end
1452
1461
  end
1453
1462
 
@@ -1596,6 +1605,14 @@ module Google
1596
1605
  # @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
1597
1606
  attr_accessor :ingress_to
1598
1607
 
1608
+ # Optional. Human-readable title for the ingress rule. The title must be unique
1609
+ # within the perimeter and can not exceed 100 characters. Within the access
1610
+ # policy, the combined length of all rule titles must not exceed 240,000
1611
+ # characters.
1612
+ # Corresponds to the JSON property `title`
1613
+ # @return [String]
1614
+ attr_accessor :title
1615
+
1599
1616
  def initialize(**args)
1600
1617
  update!(**args)
1601
1618
  end
@@ -1604,6 +1621,7 @@ module Google
1604
1621
  def update!(**args)
1605
1622
  @ingress_from = args[:ingress_from] if args.key?(:ingress_from)
1606
1623
  @ingress_to = args[:ingress_to] if args.key?(:ingress_to)
1624
+ @title = args[:title] if args.key?(:title)
1607
1625
  end
1608
1626
  end
1609
1627
 
@@ -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.40.0"
19
+ GEM_VERSION = "0.41.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241115"
25
+ REVISION = "20241211"
26
26
  end
27
27
  end
28
28
  end
@@ -541,6 +541,7 @@ module Google
541
541
 
542
542
  property :egress_to, as: 'egressTo', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1EgressTo, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1EgressTo::Representation
543
543
 
544
+ property :title, as: 'title'
544
545
  end
545
546
  end
546
547
 
@@ -578,6 +579,7 @@ module Google
578
579
 
579
580
  property :ingress_to, as: 'ingressTo', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1IngressTo, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1IngressTo::Representation
580
581
 
582
+ property :title, as: 'title'
581
583
  end
582
584
  end
583
585
 
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.40.0
4
+ version: 0.41.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-12-04 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_v1p5beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.41.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p5beta1
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.22
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 V1p5beta1