google-apis-cloudasset_v1p5beta1 0.48.0 → 0.49.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: 03b9d9b35f706860c5588e46ac6a1308f6842fe41a72e3f21d7a035d34fb0b51
|
|
4
|
+
data.tar.gz: 1dcb23cb5748aad1a9a0400d56b0978fb65897da276a560d3a3e0d3c55c234ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 760dc24973429c117e02409d1b297e7dcda1cd9f20db88940794eb9008a445189681285fa046973a44b84ab06901f83c632849541ddf901bb222ba03f8ecc9d5
|
|
7
|
+
data.tar.gz: c4aeb857f99e77f1fb711e2ad7942bb65d14599dbd7af166666678730ae336e83bbc405d9feca1f3a0becf63e318315120c636b3a6d7a6737b565f0702c328bf
|
data/CHANGELOG.md
CHANGED
|
@@ -1118,6 +1118,31 @@ module Google
|
|
|
1118
1118
|
end
|
|
1119
1119
|
end
|
|
1120
1120
|
|
|
1121
|
+
# Adds a request header to the API.
|
|
1122
|
+
class GoogleIdentityAccesscontextmanagerV1AddRequestHeader
|
|
1123
|
+
include Google::Apis::Core::Hashable
|
|
1124
|
+
|
|
1125
|
+
# HTTP header key.
|
|
1126
|
+
# Corresponds to the JSON property `key`
|
|
1127
|
+
# @return [String]
|
|
1128
|
+
attr_accessor :key
|
|
1129
|
+
|
|
1130
|
+
# HTTP header value.
|
|
1131
|
+
# Corresponds to the JSON property `value`
|
|
1132
|
+
# @return [String]
|
|
1133
|
+
attr_accessor :value
|
|
1134
|
+
|
|
1135
|
+
def initialize(**args)
|
|
1136
|
+
update!(**args)
|
|
1137
|
+
end
|
|
1138
|
+
|
|
1139
|
+
# Update properties of this object
|
|
1140
|
+
def update!(**args)
|
|
1141
|
+
@key = args[:key] if args.key?(:key)
|
|
1142
|
+
@value = args[:value] if args.key?(:value)
|
|
1143
|
+
end
|
|
1144
|
+
end
|
|
1145
|
+
|
|
1121
1146
|
# Identification for an API Operation.
|
|
1122
1147
|
class GoogleIdentityAccesscontextmanagerV1ApiOperation
|
|
1123
1148
|
include Google::Apis::Core::Hashable
|
|
@@ -1476,6 +1501,11 @@ module Google
|
|
|
1476
1501
|
# @return [String]
|
|
1477
1502
|
attr_accessor :access_level
|
|
1478
1503
|
|
|
1504
|
+
# Specifies the PSC an API call refers to.
|
|
1505
|
+
# Corresponds to the JSON property `pscEndpoint`
|
|
1506
|
+
# @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint]
|
|
1507
|
+
attr_accessor :psc_endpoint
|
|
1508
|
+
|
|
1479
1509
|
# A Google Cloud resource from the service perimeter that you want to allow to
|
|
1480
1510
|
# access data outside the perimeter. This field supports only projects. The
|
|
1481
1511
|
# project format is `projects/`project_number``. You can't use `*` in this field
|
|
@@ -1491,6 +1521,7 @@ module Google
|
|
|
1491
1521
|
# Update properties of this object
|
|
1492
1522
|
def update!(**args)
|
|
1493
1523
|
@access_level = args[:access_level] if args.key?(:access_level)
|
|
1524
|
+
@psc_endpoint = args[:psc_endpoint] if args.key?(:psc_endpoint)
|
|
1494
1525
|
@resource = args[:resource] if args.key?(:resource)
|
|
1495
1526
|
end
|
|
1496
1527
|
end
|
|
@@ -1655,6 +1686,11 @@ module Google
|
|
|
1655
1686
|
# @return [String]
|
|
1656
1687
|
attr_accessor :access_level
|
|
1657
1688
|
|
|
1689
|
+
# Specifies the PSC an API call refers to.
|
|
1690
|
+
# Corresponds to the JSON property `pscEndpoint`
|
|
1691
|
+
# @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint]
|
|
1692
|
+
attr_accessor :psc_endpoint
|
|
1693
|
+
|
|
1658
1694
|
# A Google Cloud resource that is allowed to ingress the perimeter. Requests
|
|
1659
1695
|
# from these resources will be allowed to access perimeter data. Currently only
|
|
1660
1696
|
# projects and VPCs are allowed. Project format: `projects/`project_number`` VPC
|
|
@@ -1673,6 +1709,7 @@ module Google
|
|
|
1673
1709
|
# Update properties of this object
|
|
1674
1710
|
def update!(**args)
|
|
1675
1711
|
@access_level = args[:access_level] if args.key?(:access_level)
|
|
1712
|
+
@psc_endpoint = args[:psc_endpoint] if args.key?(:psc_endpoint)
|
|
1676
1713
|
@resource = args[:resource] if args.key?(:resource)
|
|
1677
1714
|
end
|
|
1678
1715
|
end
|
|
@@ -1744,6 +1781,25 @@ module Google
|
|
|
1744
1781
|
end
|
|
1745
1782
|
end
|
|
1746
1783
|
|
|
1784
|
+
# Modifier to apply to the API requests.
|
|
1785
|
+
class GoogleIdentityAccesscontextmanagerV1Modifier
|
|
1786
|
+
include Google::Apis::Core::Hashable
|
|
1787
|
+
|
|
1788
|
+
# Adds a request header to the API.
|
|
1789
|
+
# Corresponds to the JSON property `addRequestHeader`
|
|
1790
|
+
# @return [Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AddRequestHeader]
|
|
1791
|
+
attr_accessor :add_request_header
|
|
1792
|
+
|
|
1793
|
+
def initialize(**args)
|
|
1794
|
+
update!(**args)
|
|
1795
|
+
end
|
|
1796
|
+
|
|
1797
|
+
# Update properties of this object
|
|
1798
|
+
def update!(**args)
|
|
1799
|
+
@add_request_header = args[:add_request_header] if args.key?(:add_request_header)
|
|
1800
|
+
end
|
|
1801
|
+
end
|
|
1802
|
+
|
|
1747
1803
|
# A restriction on the OS type and version of devices making requests.
|
|
1748
1804
|
class GoogleIdentityAccesscontextmanagerV1OsConstraint
|
|
1749
1805
|
include Google::Apis::Core::Hashable
|
|
@@ -1781,6 +1837,60 @@ module Google
|
|
|
1781
1837
|
end
|
|
1782
1838
|
end
|
|
1783
1839
|
|
|
1840
|
+
# Specifies the PSC an API call refers to.
|
|
1841
|
+
class GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint
|
|
1842
|
+
include Google::Apis::Core::Hashable
|
|
1843
|
+
|
|
1844
|
+
# The global forwarding rule identifier. Forwarding rule format: `//compute.
|
|
1845
|
+
# googleapis.com/projects/`PROJECT_ID`/global/forwardingRules/`
|
|
1846
|
+
# FORWARDING_RULE_ID``.
|
|
1847
|
+
# Corresponds to the JSON property `forwardingRule`
|
|
1848
|
+
# @return [String]
|
|
1849
|
+
attr_accessor :forwarding_rule
|
|
1850
|
+
|
|
1851
|
+
def initialize(**args)
|
|
1852
|
+
update!(**args)
|
|
1853
|
+
end
|
|
1854
|
+
|
|
1855
|
+
# Update properties of this object
|
|
1856
|
+
def update!(**args)
|
|
1857
|
+
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
1858
|
+
end
|
|
1859
|
+
end
|
|
1860
|
+
|
|
1861
|
+
# Service patterns used to allow access.
|
|
1862
|
+
class GoogleIdentityAccesscontextmanagerV1ServicePattern
|
|
1863
|
+
include Google::Apis::Core::Hashable
|
|
1864
|
+
|
|
1865
|
+
# Modifiers to apply to the requests that match the URL pattern.
|
|
1866
|
+
# Corresponds to the JSON property `modifiers`
|
|
1867
|
+
# @return [Array<Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1Modifier>]
|
|
1868
|
+
attr_accessor :modifiers
|
|
1869
|
+
|
|
1870
|
+
# URL pattern to allow. Only patterns of ".googleapis.com/*", "www.googleapis.
|
|
1871
|
+
# com//*" and "*.appspot.com/* forms are supported, where should be
|
|
1872
|
+
# alphanumerical name.
|
|
1873
|
+
# Corresponds to the JSON property `pattern`
|
|
1874
|
+
# @return [String]
|
|
1875
|
+
attr_accessor :pattern
|
|
1876
|
+
|
|
1877
|
+
# Supported service to allow.
|
|
1878
|
+
# Corresponds to the JSON property `service`
|
|
1879
|
+
# @return [String]
|
|
1880
|
+
attr_accessor :service
|
|
1881
|
+
|
|
1882
|
+
def initialize(**args)
|
|
1883
|
+
update!(**args)
|
|
1884
|
+
end
|
|
1885
|
+
|
|
1886
|
+
# Update properties of this object
|
|
1887
|
+
def update!(**args)
|
|
1888
|
+
@modifiers = args[:modifiers] if args.key?(:modifiers)
|
|
1889
|
+
@pattern = args[:pattern] if args.key?(:pattern)
|
|
1890
|
+
@service = args[:service] if args.key?(:service)
|
|
1891
|
+
end
|
|
1892
|
+
end
|
|
1893
|
+
|
|
1784
1894
|
# `ServicePerimeter` describes a set of Google Cloud resources which can freely
|
|
1785
1895
|
# import and export data amongst themselves, but not export outside of the `
|
|
1786
1896
|
# ServicePerimeter`. If a request with a source within this `ServicePerimeter`
|
|
@@ -1941,6 +2051,12 @@ module Google
|
|
|
1941
2051
|
class GoogleIdentityAccesscontextmanagerV1VpcAccessibleServices
|
|
1942
2052
|
include Google::Apis::Core::Hashable
|
|
1943
2053
|
|
|
2054
|
+
# Specifies which Google services are allowed to be accessed from VPC networks
|
|
2055
|
+
# in the service perimeter.
|
|
2056
|
+
# Corresponds to the JSON property `allowedServicePatterns`
|
|
2057
|
+
# @return [Array<Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ServicePattern>]
|
|
2058
|
+
attr_accessor :allowed_service_patterns
|
|
2059
|
+
|
|
1944
2060
|
# The list of APIs usable within the Service Perimeter. Must be empty unless '
|
|
1945
2061
|
# enable_restriction' is True. You can specify a list of individual services, as
|
|
1946
2062
|
# well as include the 'RESTRICTED-SERVICES' value, which automatically includes
|
|
@@ -1956,14 +2072,21 @@ module Google
|
|
|
1956
2072
|
attr_accessor :enable_restriction
|
|
1957
2073
|
alias_method :enable_restriction?, :enable_restriction
|
|
1958
2074
|
|
|
2075
|
+
# Defines the enforcement scopes of service patterns.
|
|
2076
|
+
# Corresponds to the JSON property `servicePatternsEnforcementScopes`
|
|
2077
|
+
# @return [Array<String>]
|
|
2078
|
+
attr_accessor :service_patterns_enforcement_scopes
|
|
2079
|
+
|
|
1959
2080
|
def initialize(**args)
|
|
1960
2081
|
update!(**args)
|
|
1961
2082
|
end
|
|
1962
2083
|
|
|
1963
2084
|
# Update properties of this object
|
|
1964
2085
|
def update!(**args)
|
|
2086
|
+
@allowed_service_patterns = args[:allowed_service_patterns] if args.key?(:allowed_service_patterns)
|
|
1965
2087
|
@allowed_services = args[:allowed_services] if args.key?(:allowed_services)
|
|
1966
2088
|
@enable_restriction = args[:enable_restriction] if args.key?(:enable_restriction)
|
|
2089
|
+
@service_patterns_enforcement_scopes = args[:service_patterns_enforcement_scopes] if args.key?(:service_patterns_enforcement_scopes)
|
|
1967
2090
|
end
|
|
1968
2091
|
end
|
|
1969
2092
|
|
|
@@ -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.
|
|
19
|
+
GEM_VERSION = "0.49.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
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
|
|
@@ -130,6 +130,12 @@ module Google
|
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
|
131
131
|
end
|
|
132
132
|
|
|
133
|
+
class GoogleIdentityAccesscontextmanagerV1AddRequestHeader
|
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
|
+
|
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
137
|
+
end
|
|
138
|
+
|
|
133
139
|
class GoogleIdentityAccesscontextmanagerV1ApiOperation
|
|
134
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
141
|
|
|
@@ -214,12 +220,30 @@ module Google
|
|
|
214
220
|
include Google::Apis::Core::JsonObjectSupport
|
|
215
221
|
end
|
|
216
222
|
|
|
223
|
+
class GoogleIdentityAccesscontextmanagerV1Modifier
|
|
224
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
225
|
+
|
|
226
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
227
|
+
end
|
|
228
|
+
|
|
217
229
|
class GoogleIdentityAccesscontextmanagerV1OsConstraint
|
|
218
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
219
231
|
|
|
220
232
|
include Google::Apis::Core::JsonObjectSupport
|
|
221
233
|
end
|
|
222
234
|
|
|
235
|
+
class GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint
|
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
237
|
+
|
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
class GoogleIdentityAccesscontextmanagerV1ServicePattern
|
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
|
+
|
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
245
|
+
end
|
|
246
|
+
|
|
223
247
|
class GoogleIdentityAccesscontextmanagerV1ServicePerimeter
|
|
224
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
225
249
|
|
|
@@ -469,6 +493,14 @@ module Google
|
|
|
469
493
|
end
|
|
470
494
|
end
|
|
471
495
|
|
|
496
|
+
class GoogleIdentityAccesscontextmanagerV1AddRequestHeader
|
|
497
|
+
# @private
|
|
498
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
499
|
+
property :key, as: 'key'
|
|
500
|
+
property :value, as: 'value'
|
|
501
|
+
end
|
|
502
|
+
end
|
|
503
|
+
|
|
472
504
|
class GoogleIdentityAccesscontextmanagerV1ApiOperation
|
|
473
505
|
# @private
|
|
474
506
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -549,6 +581,8 @@ module Google
|
|
|
549
581
|
# @private
|
|
550
582
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
551
583
|
property :access_level, as: 'accessLevel'
|
|
584
|
+
property :psc_endpoint, as: 'pscEndpoint', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint::Representation
|
|
585
|
+
|
|
552
586
|
property :resource, as: 'resource'
|
|
553
587
|
end
|
|
554
588
|
end
|
|
@@ -589,6 +623,8 @@ module Google
|
|
|
589
623
|
# @private
|
|
590
624
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
591
625
|
property :access_level, as: 'accessLevel'
|
|
626
|
+
property :psc_endpoint, as: 'pscEndpoint', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint::Representation
|
|
627
|
+
|
|
592
628
|
property :resource, as: 'resource'
|
|
593
629
|
end
|
|
594
630
|
end
|
|
@@ -611,6 +647,14 @@ module Google
|
|
|
611
647
|
end
|
|
612
648
|
end
|
|
613
649
|
|
|
650
|
+
class GoogleIdentityAccesscontextmanagerV1Modifier
|
|
651
|
+
# @private
|
|
652
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
653
|
+
property :add_request_header, as: 'addRequestHeader', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AddRequestHeader, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1AddRequestHeader::Representation
|
|
654
|
+
|
|
655
|
+
end
|
|
656
|
+
end
|
|
657
|
+
|
|
614
658
|
class GoogleIdentityAccesscontextmanagerV1OsConstraint
|
|
615
659
|
# @private
|
|
616
660
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -620,6 +664,23 @@ module Google
|
|
|
620
664
|
end
|
|
621
665
|
end
|
|
622
666
|
|
|
667
|
+
class GoogleIdentityAccesscontextmanagerV1PrivateServiceConnectEndpoint
|
|
668
|
+
# @private
|
|
669
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
670
|
+
property :forwarding_rule, as: 'forwardingRule'
|
|
671
|
+
end
|
|
672
|
+
end
|
|
673
|
+
|
|
674
|
+
class GoogleIdentityAccesscontextmanagerV1ServicePattern
|
|
675
|
+
# @private
|
|
676
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
677
|
+
collection :modifiers, as: 'modifiers', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1Modifier, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1Modifier::Representation
|
|
678
|
+
|
|
679
|
+
property :pattern, as: 'pattern'
|
|
680
|
+
property :service, as: 'service'
|
|
681
|
+
end
|
|
682
|
+
end
|
|
683
|
+
|
|
623
684
|
class GoogleIdentityAccesscontextmanagerV1ServicePerimeter
|
|
624
685
|
# @private
|
|
625
686
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -654,8 +715,11 @@ module Google
|
|
|
654
715
|
class GoogleIdentityAccesscontextmanagerV1VpcAccessibleServices
|
|
655
716
|
# @private
|
|
656
717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
718
|
+
collection :allowed_service_patterns, as: 'allowedServicePatterns', class: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ServicePattern, decorator: Google::Apis::CloudassetV1p5beta1::GoogleIdentityAccesscontextmanagerV1ServicePattern::Representation
|
|
719
|
+
|
|
657
720
|
collection :allowed_services, as: 'allowedServices'
|
|
658
721
|
property :enable_restriction, as: 'enableRestriction'
|
|
722
|
+
collection :service_patterns_enforcement_scopes, as: 'servicePatternsEnforcementScopes'
|
|
659
723
|
end
|
|
660
724
|
end
|
|
661
725
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-cloudasset_v1p5beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.49.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_v1p5beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1p5beta1/v0.49.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudasset_v1p5beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|