google-apis-cloudasset_v1p1beta1 0.41.0 → 0.42.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: 7d006d26788aa43be8981e02e684b92c900dae8487e80765d7d176581c076723
4
- data.tar.gz: 7ada50e0ef50afd3be733cc72ca084c39fba0504d3f922c2d32fde2b950ad26e
3
+ metadata.gz: 4860da2525fb33ec911ab1cc6ab91b34fe6fdc45f83c5fc99cb41bee4903d347
4
+ data.tar.gz: 252b13a9ce20cb5d08521fe6d9ab58bf8aac94f731ff943be9cc20c00bef3bb3
5
5
  SHA512:
6
- metadata.gz: ca2ecbe337c9e26c92a4d2bbd50355b9bfe07476b9f3316a0f41cf4697b4b15f3a1c5382bd4442310fefdb5bc40eea1f330aae507062ea00843d2f31ab23a174
7
- data.tar.gz: 1d0d6d6845283d506497fcae58e14968a75a108a049cb638cfb6c4745d252488f34e2ddb5f4a6a616db707cbf23578cc544813042657f73c23404b4dea6f3c54
6
+ metadata.gz: 971359b7973c36e5689befea79cafa787a8a0d11737ff05b9244e04664edb684af13af947f6723f8007fd40e4c03f1fbc80fce37c26a223adaca675e5a235099
7
+ data.tar.gz: 9280006db22de2a82baf75f4ece5d5775ac93d0cdaae0961bbcd1941dfc28d1dca55b0f34392b8a28240606cbb3810384331de8b6a8269ed00e7d1ba806b55ff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.41.0 (2024-12-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20241115
@@ -1337,6 +1337,14 @@ module Google
1337
1337
  # @return [Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
1338
1338
  attr_accessor :egress_to
1339
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
+
1340
1348
  def initialize(**args)
1341
1349
  update!(**args)
1342
1350
  end
@@ -1345,6 +1353,7 @@ module Google
1345
1353
  def update!(**args)
1346
1354
  @egress_from = args[:egress_from] if args.key?(:egress_from)
1347
1355
  @egress_to = args[:egress_to] if args.key?(:egress_to)
1356
+ @title = args[:title] if args.key?(:title)
1348
1357
  end
1349
1358
  end
1350
1359
 
@@ -1493,6 +1502,14 @@ module Google
1493
1502
  # @return [Google::Apis::CloudassetV1p1beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
1494
1503
  attr_accessor :ingress_to
1495
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
+
1496
1513
  def initialize(**args)
1497
1514
  update!(**args)
1498
1515
  end
@@ -1501,6 +1518,7 @@ module Google
1501
1518
  def update!(**args)
1502
1519
  @ingress_from = args[:ingress_from] if args.key?(:ingress_from)
1503
1520
  @ingress_to = args[:ingress_to] if args.key?(:ingress_to)
1521
+ @title = args[:title] if args.key?(:title)
1504
1522
  end
1505
1523
  end
1506
1524
 
@@ -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.41.0"
19
+ GEM_VERSION = "0.42.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
@@ -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
 
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.41.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-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_v1p1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p1beta1/v0.41.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.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 V1p1beta1