google-apis-cloudasset_v1p7beta1 0.50.0 → 0.52.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebf223e0dc7c9bdaf7638fb4e85090fb9b9fdf6d707a1667d2fee75dd5cf8269
|
|
4
|
+
data.tar.gz: 1f00f51391152c3820cf76b3a74875c6b16f37336d08dd9fb513793823823698
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2e2292a65f5b449d71aea67cc20a163a0accf4d954bdd9c3239fa2b18a98affea3f7c10b35154d8591ff25f4818868b61cf1fe6aac76f9be499532e1265c237
|
|
7
|
+
data.tar.gz: 8aaa5b28e4ef5d7c186a0de63404332b3150951e314e3d0e3ad3eccd60e4e864cc206ebdd7f66e553cfce613eca5dd75d5771b06e5ca39fa0e529e19cae675f0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-cloudasset_v1p7beta1
|
|
2
2
|
|
|
3
|
+
### v0.52.0 (2026-06-28)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260624
|
|
6
|
+
|
|
7
|
+
### v0.51.0 (2026-06-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated using generator version 0.19.0
|
|
10
|
+
|
|
3
11
|
### v0.50.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260417
|
data/OVERVIEW.md
CHANGED
|
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/asset-inventory/docs/quicks
|
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
86
|
-
This library is supported on Ruby 3.
|
|
86
|
+
This library is supported on Ruby 3.2+.
|
|
87
87
|
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
|
89
89
|
|
|
@@ -1208,6 +1208,31 @@ module Google
|
|
|
1208
1208
|
end
|
|
1209
1209
|
end
|
|
1210
1210
|
|
|
1211
|
+
# Adds a request header to the API.
|
|
1212
|
+
class GoogleIdentityAccesscontextmanagerV1AddRequestHeader
|
|
1213
|
+
include Google::Apis::Core::Hashable
|
|
1214
|
+
|
|
1215
|
+
# HTTP header key.
|
|
1216
|
+
# Corresponds to the JSON property `key`
|
|
1217
|
+
# @return [String]
|
|
1218
|
+
attr_accessor :key
|
|
1219
|
+
|
|
1220
|
+
# HTTP header value.
|
|
1221
|
+
# Corresponds to the JSON property `value`
|
|
1222
|
+
# @return [String]
|
|
1223
|
+
attr_accessor :value
|
|
1224
|
+
|
|
1225
|
+
def initialize(**args)
|
|
1226
|
+
update!(**args)
|
|
1227
|
+
end
|
|
1228
|
+
|
|
1229
|
+
# Update properties of this object
|
|
1230
|
+
def update!(**args)
|
|
1231
|
+
@key = args[:key] if args.key?(:key)
|
|
1232
|
+
@value = args[:value] if args.key?(:value)
|
|
1233
|
+
end
|
|
1234
|
+
end
|
|
1235
|
+
|
|
1211
1236
|
# Identification for an API Operation.
|
|
1212
1237
|
class GoogleIdentityAccesscontextmanagerV1ApiOperation
|
|
1213
1238
|
include Google::Apis::Core::Hashable
|
|
@@ -1566,6 +1591,11 @@ module Google
|
|
|
1566
1591
|
# @return [String]
|
|
1567
1592
|
attr_accessor :access_level
|
|
1568
1593
|
|
|
1594
|
+
# Specifies the PSC an API call refers to.
|
|
1595
|
+
# Corresponds to the JSON property `pscEndpoint`
|
|
1596
|
+
# @return [Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint]
|
|
1597
|
+
attr_accessor :psc_endpoint
|
|
1598
|
+
|
|
1569
1599
|
# A Google Cloud resource from the service perimeter that you want to allow to
|
|
1570
1600
|
# access data outside the perimeter. This field supports only projects. The
|
|
1571
1601
|
# project format is `projects/`project_number``. You can't use `*` in this field
|
|
@@ -1581,6 +1611,7 @@ module Google
|
|
|
1581
1611
|
# Update properties of this object
|
|
1582
1612
|
def update!(**args)
|
|
1583
1613
|
@access_level = args[:access_level] if args.key?(:access_level)
|
|
1614
|
+
@psc_endpoint = args[:psc_endpoint] if args.key?(:psc_endpoint)
|
|
1584
1615
|
@resource = args[:resource] if args.key?(:resource)
|
|
1585
1616
|
end
|
|
1586
1617
|
end
|
|
@@ -1745,6 +1776,11 @@ module Google
|
|
|
1745
1776
|
# @return [String]
|
|
1746
1777
|
attr_accessor :access_level
|
|
1747
1778
|
|
|
1779
|
+
# Specifies the PSC an API call refers to.
|
|
1780
|
+
# Corresponds to the JSON property `pscEndpoint`
|
|
1781
|
+
# @return [Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint]
|
|
1782
|
+
attr_accessor :psc_endpoint
|
|
1783
|
+
|
|
1748
1784
|
# A Google Cloud resource that is allowed to ingress the perimeter. Requests
|
|
1749
1785
|
# from these resources will be allowed to access perimeter data. Currently only
|
|
1750
1786
|
# projects and VPCs are allowed. Project format: `projects/`project_number`` VPC
|
|
@@ -1763,6 +1799,7 @@ module Google
|
|
|
1763
1799
|
# Update properties of this object
|
|
1764
1800
|
def update!(**args)
|
|
1765
1801
|
@access_level = args[:access_level] if args.key?(:access_level)
|
|
1802
|
+
@psc_endpoint = args[:psc_endpoint] if args.key?(:psc_endpoint)
|
|
1766
1803
|
@resource = args[:resource] if args.key?(:resource)
|
|
1767
1804
|
end
|
|
1768
1805
|
end
|
|
@@ -1834,6 +1871,25 @@ module Google
|
|
|
1834
1871
|
end
|
|
1835
1872
|
end
|
|
1836
1873
|
|
|
1874
|
+
# Modifier to apply to the API requests.
|
|
1875
|
+
class GoogleIdentityAccesscontextmanagerV1Modifier
|
|
1876
|
+
include Google::Apis::Core::Hashable
|
|
1877
|
+
|
|
1878
|
+
# Adds a request header to the API.
|
|
1879
|
+
# Corresponds to the JSON property `addRequestHeader`
|
|
1880
|
+
# @return [Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1AddRequestHeader]
|
|
1881
|
+
attr_accessor :add_request_header
|
|
1882
|
+
|
|
1883
|
+
def initialize(**args)
|
|
1884
|
+
update!(**args)
|
|
1885
|
+
end
|
|
1886
|
+
|
|
1887
|
+
# Update properties of this object
|
|
1888
|
+
def update!(**args)
|
|
1889
|
+
@add_request_header = args[:add_request_header] if args.key?(:add_request_header)
|
|
1890
|
+
end
|
|
1891
|
+
end
|
|
1892
|
+
|
|
1837
1893
|
# A restriction on the OS type and version of devices making requests.
|
|
1838
1894
|
class GoogleIdentityAccesscontextmanagerV1OsConstraint
|
|
1839
1895
|
include Google::Apis::Core::Hashable
|
|
@@ -1871,6 +1927,60 @@ module Google
|
|
|
1871
1927
|
end
|
|
1872
1928
|
end
|
|
1873
1929
|
|
|
1930
|
+
# Specifies the PSC an API call refers to.
|
|
1931
|
+
class GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint
|
|
1932
|
+
include Google::Apis::Core::Hashable
|
|
1933
|
+
|
|
1934
|
+
# The global forwarding rule identifier. Forwarding rule format: `//compute.
|
|
1935
|
+
# googleapis.com/projects/`PROJECT_ID`/global/forwardingRules/`
|
|
1936
|
+
# FORWARDING_RULE_ID``.
|
|
1937
|
+
# Corresponds to the JSON property `forwardingRule`
|
|
1938
|
+
# @return [String]
|
|
1939
|
+
attr_accessor :forwarding_rule
|
|
1940
|
+
|
|
1941
|
+
def initialize(**args)
|
|
1942
|
+
update!(**args)
|
|
1943
|
+
end
|
|
1944
|
+
|
|
1945
|
+
# Update properties of this object
|
|
1946
|
+
def update!(**args)
|
|
1947
|
+
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
1948
|
+
end
|
|
1949
|
+
end
|
|
1950
|
+
|
|
1951
|
+
# Service patterns used to allow access.
|
|
1952
|
+
class GoogleIdentityAccesscontextmanagerV1ServicePattern
|
|
1953
|
+
include Google::Apis::Core::Hashable
|
|
1954
|
+
|
|
1955
|
+
# Modifiers to apply to the requests that match the URL pattern.
|
|
1956
|
+
# Corresponds to the JSON property `modifiers`
|
|
1957
|
+
# @return [Array<Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1Modifier>]
|
|
1958
|
+
attr_accessor :modifiers
|
|
1959
|
+
|
|
1960
|
+
# URL pattern to allow. Only patterns of ".googleapis.com/*", "www.googleapis.
|
|
1961
|
+
# com//*" and "*.appspot.com/* forms are supported, where should be
|
|
1962
|
+
# alphanumerical name.
|
|
1963
|
+
# Corresponds to the JSON property `pattern`
|
|
1964
|
+
# @return [String]
|
|
1965
|
+
attr_accessor :pattern
|
|
1966
|
+
|
|
1967
|
+
# Supported service to allow.
|
|
1968
|
+
# Corresponds to the JSON property `service`
|
|
1969
|
+
# @return [String]
|
|
1970
|
+
attr_accessor :service
|
|
1971
|
+
|
|
1972
|
+
def initialize(**args)
|
|
1973
|
+
update!(**args)
|
|
1974
|
+
end
|
|
1975
|
+
|
|
1976
|
+
# Update properties of this object
|
|
1977
|
+
def update!(**args)
|
|
1978
|
+
@modifiers = args[:modifiers] if args.key?(:modifiers)
|
|
1979
|
+
@pattern = args[:pattern] if args.key?(:pattern)
|
|
1980
|
+
@service = args[:service] if args.key?(:service)
|
|
1981
|
+
end
|
|
1982
|
+
end
|
|
1983
|
+
|
|
1874
1984
|
# `ServicePerimeter` describes a set of Google Cloud resources which can freely
|
|
1875
1985
|
# import and export data amongst themselves, but not export outside of the `
|
|
1876
1986
|
# ServicePerimeter`. If a request with a source within this `ServicePerimeter`
|
|
@@ -2031,6 +2141,12 @@ module Google
|
|
|
2031
2141
|
class GoogleIdentityAccesscontextmanagerV1VpcAccessibleServices
|
|
2032
2142
|
include Google::Apis::Core::Hashable
|
|
2033
2143
|
|
|
2144
|
+
# Specifies which Google services are allowed to be accessed from VPC networks
|
|
2145
|
+
# in the service perimeter.
|
|
2146
|
+
# Corresponds to the JSON property `allowedServicePatterns`
|
|
2147
|
+
# @return [Array<Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1ServicePattern>]
|
|
2148
|
+
attr_accessor :allowed_service_patterns
|
|
2149
|
+
|
|
2034
2150
|
# The list of APIs usable within the Service Perimeter. Must be empty unless '
|
|
2035
2151
|
# enable_restriction' is True. You can specify a list of individual services, as
|
|
2036
2152
|
# well as include the 'RESTRICTED-SERVICES' value, which automatically includes
|
|
@@ -2046,14 +2162,21 @@ module Google
|
|
|
2046
2162
|
attr_accessor :enable_restriction
|
|
2047
2163
|
alias_method :enable_restriction?, :enable_restriction
|
|
2048
2164
|
|
|
2165
|
+
# Defines the enforcement scopes of service patterns.
|
|
2166
|
+
# Corresponds to the JSON property `servicePatternsEnforcementScopes`
|
|
2167
|
+
# @return [Array<String>]
|
|
2168
|
+
attr_accessor :service_patterns_enforcement_scopes
|
|
2169
|
+
|
|
2049
2170
|
def initialize(**args)
|
|
2050
2171
|
update!(**args)
|
|
2051
2172
|
end
|
|
2052
2173
|
|
|
2053
2174
|
# Update properties of this object
|
|
2054
2175
|
def update!(**args)
|
|
2176
|
+
@allowed_service_patterns = args[:allowed_service_patterns] if args.key?(:allowed_service_patterns)
|
|
2055
2177
|
@allowed_services = args[:allowed_services] if args.key?(:allowed_services)
|
|
2056
2178
|
@enable_restriction = args[:enable_restriction] if args.key?(:enable_restriction)
|
|
2179
|
+
@service_patterns_enforcement_scopes = args[:service_patterns_enforcement_scopes] if args.key?(:service_patterns_enforcement_scopes)
|
|
2057
2180
|
end
|
|
2058
2181
|
end
|
|
2059
2182
|
|
|
@@ -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.52.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260624"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -154,6 +154,12 @@ module Google
|
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
|
155
155
|
end
|
|
156
156
|
|
|
157
|
+
class GoogleIdentityAccesscontextmanagerV1AddRequestHeader
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
157
163
|
class GoogleIdentityAccesscontextmanagerV1ApiOperation
|
|
158
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
165
|
|
|
@@ -238,12 +244,30 @@ module Google
|
|
|
238
244
|
include Google::Apis::Core::JsonObjectSupport
|
|
239
245
|
end
|
|
240
246
|
|
|
247
|
+
class GoogleIdentityAccesscontextmanagerV1Modifier
|
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
|
+
|
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
251
|
+
end
|
|
252
|
+
|
|
241
253
|
class GoogleIdentityAccesscontextmanagerV1OsConstraint
|
|
242
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
255
|
|
|
244
256
|
include Google::Apis::Core::JsonObjectSupport
|
|
245
257
|
end
|
|
246
258
|
|
|
259
|
+
class GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint
|
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
|
+
|
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
263
|
+
end
|
|
264
|
+
|
|
265
|
+
class GoogleIdentityAccesscontextmanagerV1ServicePattern
|
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
267
|
+
|
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
269
|
+
end
|
|
270
|
+
|
|
247
271
|
class GoogleIdentityAccesscontextmanagerV1ServicePerimeter
|
|
248
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
273
|
|
|
@@ -521,6 +545,14 @@ module Google
|
|
|
521
545
|
end
|
|
522
546
|
end
|
|
523
547
|
|
|
548
|
+
class GoogleIdentityAccesscontextmanagerV1AddRequestHeader
|
|
549
|
+
# @private
|
|
550
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
551
|
+
property :key, as: 'key'
|
|
552
|
+
property :value, as: 'value'
|
|
553
|
+
end
|
|
554
|
+
end
|
|
555
|
+
|
|
524
556
|
class GoogleIdentityAccesscontextmanagerV1ApiOperation
|
|
525
557
|
# @private
|
|
526
558
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -601,6 +633,8 @@ module Google
|
|
|
601
633
|
# @private
|
|
602
634
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
603
635
|
property :access_level, as: 'accessLevel'
|
|
636
|
+
property :psc_endpoint, as: 'pscEndpoint', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint::Representation
|
|
637
|
+
|
|
604
638
|
property :resource, as: 'resource'
|
|
605
639
|
end
|
|
606
640
|
end
|
|
@@ -641,6 +675,8 @@ module Google
|
|
|
641
675
|
# @private
|
|
642
676
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
643
677
|
property :access_level, as: 'accessLevel'
|
|
678
|
+
property :psc_endpoint, as: 'pscEndpoint', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint::Representation
|
|
679
|
+
|
|
644
680
|
property :resource, as: 'resource'
|
|
645
681
|
end
|
|
646
682
|
end
|
|
@@ -663,6 +699,14 @@ module Google
|
|
|
663
699
|
end
|
|
664
700
|
end
|
|
665
701
|
|
|
702
|
+
class GoogleIdentityAccesscontextmanagerV1Modifier
|
|
703
|
+
# @private
|
|
704
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
705
|
+
property :add_request_header, as: 'addRequestHeader', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1AddRequestHeader, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1AddRequestHeader::Representation
|
|
706
|
+
|
|
707
|
+
end
|
|
708
|
+
end
|
|
709
|
+
|
|
666
710
|
class GoogleIdentityAccesscontextmanagerV1OsConstraint
|
|
667
711
|
# @private
|
|
668
712
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -672,6 +716,23 @@ module Google
|
|
|
672
716
|
end
|
|
673
717
|
end
|
|
674
718
|
|
|
719
|
+
class GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint
|
|
720
|
+
# @private
|
|
721
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
722
|
+
property :forwarding_rule, as: 'forwardingRule'
|
|
723
|
+
end
|
|
724
|
+
end
|
|
725
|
+
|
|
726
|
+
class GoogleIdentityAccesscontextmanagerV1ServicePattern
|
|
727
|
+
# @private
|
|
728
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
729
|
+
collection :modifiers, as: 'modifiers', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1Modifier, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1Modifier::Representation
|
|
730
|
+
|
|
731
|
+
property :pattern, as: 'pattern'
|
|
732
|
+
property :service, as: 'service'
|
|
733
|
+
end
|
|
734
|
+
end
|
|
735
|
+
|
|
675
736
|
class GoogleIdentityAccesscontextmanagerV1ServicePerimeter
|
|
676
737
|
# @private
|
|
677
738
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -706,8 +767,11 @@ module Google
|
|
|
706
767
|
class GoogleIdentityAccesscontextmanagerV1VpcAccessibleServices
|
|
707
768
|
# @private
|
|
708
769
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
770
|
+
collection :allowed_service_patterns, as: 'allowedServicePatterns', class: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1ServicePattern, decorator: Google::Apis::CloudassetV1p7beta1::GoogleIdentityAccesscontextmanagerV1ServicePattern::Representation
|
|
771
|
+
|
|
709
772
|
collection :allowed_services, as: 'allowedServices'
|
|
710
773
|
property :enable_restriction, as: 'enableRestriction'
|
|
774
|
+
collection :service_patterns_enforcement_scopes, as: 'servicePatternsEnforcementScopes'
|
|
711
775
|
end
|
|
712
776
|
end
|
|
713
777
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.52.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p7beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p7beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p7beta1/v0.52.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p7beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|
|
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
66
66
|
requirements:
|
|
67
67
|
- - ">="
|
|
68
68
|
- !ruby/object:Gem::Version
|
|
69
|
-
version: '3.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|