google-apis-cloudasset_v1p7beta1 0.40.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f13660ad1a00fc9350879d97cc096f46fd7162e8e9c9951ea211f86dab69b73
|
4
|
+
data.tar.gz: ee142d00ef32f6eea7a63d79bdb9124e22ca7a82169dbbd7cd8392faf7e8ecb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c4cabade4094892ba6133c7575d223dfc5b4b7a0f16be1dde40d855fbf54a9434228dead1b030ba2d0e550d2ff88a49275dc0e302452c3f39acf9ed38d39b31b
|
7
|
+
data.tar.gz: 10dc341e3b2f5f9636eb97e5b123d7fa95abcd3b7eae46f43c8a68908ae494f7743075f582c3fc1630feeef87dc8974dbb2ee967f01f34deb392e9fa1242be91
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-cloudasset_v1p7beta1
|
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
|
@@ -1454,9 +1454,10 @@ module Google
|
|
1454
1454
|
|
1455
1455
|
# A list of identities that are allowed access through [EgressPolicy].
|
1456
1456
|
# Identities can be an individual user, service account, Google group, or third-
|
1457
|
-
# party identity.
|
1458
|
-
#
|
1459
|
-
#
|
1457
|
+
# party identity. For third-party identity, only single identities are supported
|
1458
|
+
# and other identity types are not supported. The `v1` identities that have the
|
1459
|
+
# prefix `user`, `group`, `serviceAccount`, and `principal` in https://cloud.
|
1460
|
+
# google.com/iam/docs/principal-identifiers#v1 are supported.
|
1460
1461
|
# Corresponds to the JSON property `identities`
|
1461
1462
|
# @return [Array<String>]
|
1462
1463
|
attr_accessor :identities
|
@@ -1529,6 +1530,14 @@ module Google
|
|
1529
1530
|
# @return [Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1EgressTo]
|
1530
1531
|
attr_accessor :egress_to
|
1531
1532
|
|
1533
|
+
# Optional. Human-readable title for the egress rule. The title must be unique
|
1534
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
1535
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
1536
|
+
# characters.
|
1537
|
+
# Corresponds to the JSON property `title`
|
1538
|
+
# @return [String]
|
1539
|
+
attr_accessor :title
|
1540
|
+
|
1532
1541
|
def initialize(**args)
|
1533
1542
|
update!(**args)
|
1534
1543
|
end
|
@@ -1537,6 +1546,7 @@ module Google
|
|
1537
1546
|
def update!(**args)
|
1538
1547
|
@egress_from = args[:egress_from] if args.key?(:egress_from)
|
1539
1548
|
@egress_to = args[:egress_to] if args.key?(:egress_to)
|
1549
|
+
@title = args[:title] if args.key?(:title)
|
1540
1550
|
end
|
1541
1551
|
end
|
1542
1552
|
|
@@ -1624,9 +1634,10 @@ module Google
|
|
1624
1634
|
|
1625
1635
|
# A list of identities that are allowed access through [IngressPolicy].
|
1626
1636
|
# Identities can be an individual user, service account, Google group, or third-
|
1627
|
-
# party identity.
|
1628
|
-
#
|
1629
|
-
#
|
1637
|
+
# party identity. For third-party identity, only single identities are supported
|
1638
|
+
# and other identity types are not supported. The `v1` identities that have the
|
1639
|
+
# prefix `user`, `group`, `serviceAccount`, and `principal` in https://cloud.
|
1640
|
+
# google.com/iam/docs/principal-identifiers#v1 are supported.
|
1630
1641
|
# Corresponds to the JSON property `identities`
|
1631
1642
|
# @return [Array<String>]
|
1632
1643
|
attr_accessor :identities
|
@@ -1684,6 +1695,14 @@ module Google
|
|
1684
1695
|
# @return [Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1IngressTo]
|
1685
1696
|
attr_accessor :ingress_to
|
1686
1697
|
|
1698
|
+
# Optional. Human-readable title for the ingress rule. The title must be unique
|
1699
|
+
# within the perimeter and can not exceed 100 characters. Within the access
|
1700
|
+
# policy, the combined length of all rule titles must not exceed 240,000
|
1701
|
+
# characters.
|
1702
|
+
# Corresponds to the JSON property `title`
|
1703
|
+
# @return [String]
|
1704
|
+
attr_accessor :title
|
1705
|
+
|
1687
1706
|
def initialize(**args)
|
1688
1707
|
update!(**args)
|
1689
1708
|
end
|
@@ -1692,6 +1711,7 @@ module Google
|
|
1692
1711
|
def update!(**args)
|
1693
1712
|
@ingress_from = args[:ingress_from] if args.key?(:ingress_from)
|
1694
1713
|
@ingress_to = args[:ingress_to] if args.key?(:ingress_to)
|
1714
|
+
@title = args[:title] if args.key?(:title)
|
1695
1715
|
end
|
1696
1716
|
end
|
1697
1717
|
|
@@ -1848,6 +1868,14 @@ module Google
|
|
1848
1868
|
# @return [String]
|
1849
1869
|
attr_accessor :description
|
1850
1870
|
|
1871
|
+
# Optional. An opaque identifier for the current version of the `
|
1872
|
+
# ServicePerimeter`. This identifier does not follow any specific format. If an
|
1873
|
+
# etag is not provided, the operation will be performed as if a valid etag is
|
1874
|
+
# provided.
|
1875
|
+
# Corresponds to the JSON property `etag`
|
1876
|
+
# @return [String]
|
1877
|
+
attr_accessor :etag
|
1878
|
+
|
1851
1879
|
# Identifier. Resource name for the `ServicePerimeter`. Format: `accessPolicies/`
|
1852
1880
|
# access_policy`/servicePerimeters/`service_perimeter``. The `service_perimeter`
|
1853
1881
|
# component must begin with a letter, followed by alphanumeric characters or `_`.
|
@@ -1903,6 +1931,7 @@ module Google
|
|
1903
1931
|
# Update properties of this object
|
1904
1932
|
def update!(**args)
|
1905
1933
|
@description = args[:description] if args.key?(:description)
|
1934
|
+
@etag = args[:etag] if args.key?(:etag)
|
1906
1935
|
@name = args[:name] if args.key?(:name)
|
1907
1936
|
@perimeter_type = args[:perimeter_type] if args.key?(:perimeter_type)
|
1908
1937
|
@spec = args[:spec] if args.key?(:spec)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudassetV1p7beta1
|
18
18
|
# Version of the google-apis-cloudasset_v1p7beta1 gem
|
19
|
-
GEM_VERSION = "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.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241211"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -593,6 +593,7 @@ module Google
|
|
593
593
|
|
594
594
|
property :egress_to, as: 'egressTo', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1EgressTo, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1EgressTo::Representation
|
595
595
|
|
596
|
+
property :title, as: 'title'
|
596
597
|
end
|
597
598
|
end
|
598
599
|
|
@@ -630,6 +631,7 @@ module Google
|
|
630
631
|
|
631
632
|
property :ingress_to, as: 'ingressTo', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1IngressTo, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1IngressTo::Representation
|
632
633
|
|
634
|
+
property :title, as: 'title'
|
633
635
|
end
|
634
636
|
end
|
635
637
|
|
@@ -671,6 +673,7 @@ module Google
|
|
671
673
|
# @private
|
672
674
|
class Representation < Google::Apis::Core::JsonRepresentation
|
673
675
|
property :description, as: 'description'
|
676
|
+
property :etag, as: 'etag'
|
674
677
|
property :name, as: 'name'
|
675
678
|
property :perimeter_type, as: 'perimeterType'
|
676
679
|
property :spec, as: 'spec', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1ServicePerimeterConfig::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudasset_v1p7beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 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-
|
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_v1p7beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p7beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p7beta1/v0.42.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p7beta1
|
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.
|
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 V1p7beta1
|