google-apis-servicecontrol_v1 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: '01186669e4c07aba11ecf71f2c130d35bd22ea94668617fab89ba7746afa4df5'
|
|
4
|
+
data.tar.gz: a36b25a1950c44a1a77aac8806d98f21009a8b4f3f14cd2b1c6786a8f55c4d4a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: feb5eeb76b367d9f11939c8e98f2f2175d059806ec27820533b5b3ad90f57f2faef4f44448b97df77992293e87815a5a5caf96200357a503ba210d1a13892ac2
|
|
7
|
+
data.tar.gz: d9ee2e15fdcb0c1cd4dc6e1ec43b3d6c786f912af7d74e8f277687400762ea2b685681eefe17b0ee7db9c25bf9f358eeb8715e22119a5c77fa16d352aea8c984
|
data/CHANGELOG.md
CHANGED
|
@@ -323,6 +323,37 @@ module Google
|
|
|
323
323
|
end
|
|
324
324
|
end
|
|
325
325
|
|
|
326
|
+
# A composite unique identifier for a PAM Grant which is `Org/Folder/Project
|
|
327
|
+
# identifier, grant Unique Identifier` tuple.
|
|
328
|
+
class AuditPamBindingId
|
|
329
|
+
include Google::Apis::Core::Hashable
|
|
330
|
+
|
|
331
|
+
# Output only. GCP Project/Folder/Organization identifier to which the PAM
|
|
332
|
+
# entitlement/grant is bound to. Container will be in the following form:
|
|
333
|
+
# projects/$project_num or folders/$folder_num or organizations/$org
|
|
334
|
+
# Corresponds to the JSON property `container`
|
|
335
|
+
# @return [String]
|
|
336
|
+
attr_accessor :container
|
|
337
|
+
|
|
338
|
+
# Output only. Represents the unique identifier for the PAM grant.
|
|
339
|
+
# Full_resource_name_pattern for PAM Grant is: //privilegedaccessmanager.
|
|
340
|
+
# googleapis.com/ (projects|folders|organizations)/$0/locations/$1/entitlements/$
|
|
341
|
+
# 2/ grants/$3 where $3 is the grant_uuid.
|
|
342
|
+
# Corresponds to the JSON property `grantUuid`
|
|
343
|
+
# @return [String]
|
|
344
|
+
attr_accessor :grant_uuid
|
|
345
|
+
|
|
346
|
+
def initialize(**args)
|
|
347
|
+
update!(**args)
|
|
348
|
+
end
|
|
349
|
+
|
|
350
|
+
# Update properties of this object
|
|
351
|
+
def update!(**args)
|
|
352
|
+
@container = args[:container] if args.key?(:container)
|
|
353
|
+
@grant_uuid = args[:grant_uuid] if args.key?(:grant_uuid)
|
|
354
|
+
end
|
|
355
|
+
end
|
|
356
|
+
|
|
326
357
|
# This message defines request authentication attributes. Terminology is based
|
|
327
358
|
# on the JSON Web Token (JWT) standard, but the terms also correlate to concepts
|
|
328
359
|
# in other standards.
|
|
@@ -520,6 +551,12 @@ module Google
|
|
|
520
551
|
# @return [String]
|
|
521
552
|
attr_accessor :permission_type
|
|
522
553
|
|
|
554
|
+
# Metadata about the Privileged Access Manager (PAM) backed authorization
|
|
555
|
+
# decisions.
|
|
556
|
+
# Corresponds to the JSON property `privilegedAccessManagerMetadata`
|
|
557
|
+
# @return [Google::Apis::ServicecontrolV1::PrivilegedAccessManagerMetadata]
|
|
558
|
+
attr_accessor :privileged_access_manager_metadata
|
|
559
|
+
|
|
523
560
|
# The resource being accessed, as a REST-style or cloud resource string. For
|
|
524
561
|
# example: bigquery.googleapis.com/projects/PROJECTID/datasets/DATASETID or
|
|
525
562
|
# projects/PROJECTID/datasets/DATASETID
|
|
@@ -543,6 +580,7 @@ module Google
|
|
|
543
580
|
@granted = args[:granted] if args.key?(:granted)
|
|
544
581
|
@permission = args[:permission] if args.key?(:permission)
|
|
545
582
|
@permission_type = args[:permission_type] if args.key?(:permission_type)
|
|
583
|
+
@privileged_access_manager_metadata = args[:privileged_access_manager_metadata] if args.key?(:privileged_access_manager_metadata)
|
|
546
584
|
@resource = args[:resource] if args.key?(:resource)
|
|
547
585
|
@resource_attributes = args[:resource_attributes] if args.key?(:resource_attributes)
|
|
548
586
|
end
|
|
@@ -1721,6 +1759,11 @@ module Google
|
|
|
1721
1759
|
# @return [Google::Apis::ServicecontrolV1::OrgPolicyViolationInfo]
|
|
1722
1760
|
attr_accessor :org_policy_violation_info
|
|
1723
1761
|
|
|
1762
|
+
# Represents Regional Access Boundary (RAB) Policy Violation information.
|
|
1763
|
+
# Corresponds to the JSON property `rabPolicyViolationInfo`
|
|
1764
|
+
# @return [Google::Apis::ServicecontrolV1::RabPolicyViolationInfo]
|
|
1765
|
+
attr_accessor :rab_policy_violation_info
|
|
1766
|
+
|
|
1724
1767
|
def initialize(**args)
|
|
1725
1768
|
update!(**args)
|
|
1726
1769
|
end
|
|
@@ -1728,6 +1771,31 @@ module Google
|
|
|
1728
1771
|
# Update properties of this object
|
|
1729
1772
|
def update!(**args)
|
|
1730
1773
|
@org_policy_violation_info = args[:org_policy_violation_info] if args.key?(:org_policy_violation_info)
|
|
1774
|
+
@rab_policy_violation_info = args[:rab_policy_violation_info] if args.key?(:rab_policy_violation_info)
|
|
1775
|
+
end
|
|
1776
|
+
end
|
|
1777
|
+
|
|
1778
|
+
# Metadata about the Privileged Access Manager (PAM) backed authorization
|
|
1779
|
+
# decisions.
|
|
1780
|
+
class PrivilegedAccessManagerMetadata
|
|
1781
|
+
include Google::Apis::Core::Hashable
|
|
1782
|
+
|
|
1783
|
+
# Output only. If PAM is managing the elevated access, AuditPamBindingId is
|
|
1784
|
+
# written to an Identity and Access Management (IAM) policy, which specifies
|
|
1785
|
+
# access controls for resources. If the access is granted via an IAM policy with
|
|
1786
|
+
# a binding which is managed by Privileged Access Manager,
|
|
1787
|
+
# PrivilegedAccessManagerMetadata will contain the AuditPamBindingId.
|
|
1788
|
+
# Corresponds to the JSON property `pamBindingIds`
|
|
1789
|
+
# @return [Array<Google::Apis::ServicecontrolV1::AuditPamBindingId>]
|
|
1790
|
+
attr_accessor :pam_binding_ids
|
|
1791
|
+
|
|
1792
|
+
def initialize(**args)
|
|
1793
|
+
update!(**args)
|
|
1794
|
+
end
|
|
1795
|
+
|
|
1796
|
+
# Update properties of this object
|
|
1797
|
+
def update!(**args)
|
|
1798
|
+
@pam_binding_ids = args[:pam_binding_ids] if args.key?(:pam_binding_ids)
|
|
1731
1799
|
end
|
|
1732
1800
|
end
|
|
1733
1801
|
|
|
@@ -1916,6 +1984,34 @@ module Google
|
|
|
1916
1984
|
end
|
|
1917
1985
|
end
|
|
1918
1986
|
|
|
1987
|
+
# Represents Regional Access Boundary (RAB) Policy Violation information.
|
|
1988
|
+
class RabPolicyViolationInfo
|
|
1989
|
+
include Google::Apis::Core::Hashable
|
|
1990
|
+
|
|
1991
|
+
# Optional. Error message detailing what triggered the violation. The error
|
|
1992
|
+
# message content originates from the authz library e.g., google3/cloud/security/
|
|
1993
|
+
# iam/cap/deny_explanation/internal/make_error_msg.cc. This will be the same (
|
|
1994
|
+
# canonical) error message provided by the http error code.
|
|
1995
|
+
# Corresponds to the JSON property `errorMessage`
|
|
1996
|
+
# @return [String]
|
|
1997
|
+
attr_accessor :error_message
|
|
1998
|
+
|
|
1999
|
+
# Optional. The list of target locations of the resource.
|
|
2000
|
+
# Corresponds to the JSON property `resourceLocations`
|
|
2001
|
+
# @return [Array<String>]
|
|
2002
|
+
attr_accessor :resource_locations
|
|
2003
|
+
|
|
2004
|
+
def initialize(**args)
|
|
2005
|
+
update!(**args)
|
|
2006
|
+
end
|
|
2007
|
+
|
|
2008
|
+
# Update properties of this object
|
|
2009
|
+
def update!(**args)
|
|
2010
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
|
2011
|
+
@resource_locations = args[:resource_locations] if args.key?(:resource_locations)
|
|
2012
|
+
end
|
|
2013
|
+
end
|
|
2014
|
+
|
|
1919
2015
|
# Represents the processing error of one Operation in the request.
|
|
1920
2016
|
class ReportError
|
|
1921
2017
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ServicecontrolV1
|
|
18
18
|
# Version of the google-apis-servicecontrol_v1 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 = "20260806"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -58,6 +58,12 @@ module Google
|
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
|
59
59
|
end
|
|
60
60
|
|
|
61
|
+
class AuditPamBindingId
|
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
|
+
|
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
65
|
+
end
|
|
66
|
+
|
|
61
67
|
class Auth
|
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
63
69
|
|
|
@@ -220,6 +226,12 @@ module Google
|
|
|
220
226
|
include Google::Apis::Core::JsonObjectSupport
|
|
221
227
|
end
|
|
222
228
|
|
|
229
|
+
class PrivilegedAccessManagerMetadata
|
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
|
+
|
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
233
|
+
end
|
|
234
|
+
|
|
223
235
|
class QuotaError
|
|
224
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
225
237
|
|
|
@@ -244,6 +256,12 @@ module Google
|
|
|
244
256
|
include Google::Apis::Core::JsonObjectSupport
|
|
245
257
|
end
|
|
246
258
|
|
|
259
|
+
class RabPolicyViolationInfo
|
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
261
|
+
|
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
263
|
+
end
|
|
264
|
+
|
|
247
265
|
class ReportError
|
|
248
266
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
267
|
|
|
@@ -453,6 +471,14 @@ module Google
|
|
|
453
471
|
end
|
|
454
472
|
end
|
|
455
473
|
|
|
474
|
+
class AuditPamBindingId
|
|
475
|
+
# @private
|
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
477
|
+
property :container, as: 'container'
|
|
478
|
+
property :grant_uuid, as: 'grantUuid'
|
|
479
|
+
end
|
|
480
|
+
end
|
|
481
|
+
|
|
456
482
|
class Auth
|
|
457
483
|
# @private
|
|
458
484
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -491,6 +517,8 @@ module Google
|
|
|
491
517
|
property :granted, as: 'granted'
|
|
492
518
|
property :permission, as: 'permission'
|
|
493
519
|
property :permission_type, as: 'permissionType'
|
|
520
|
+
property :privileged_access_manager_metadata, as: 'privilegedAccessManagerMetadata', class: Google::Apis::ServicecontrolV1::PrivilegedAccessManagerMetadata, decorator: Google::Apis::ServicecontrolV1::PrivilegedAccessManagerMetadata::Representation
|
|
521
|
+
|
|
494
522
|
property :resource, as: 'resource'
|
|
495
523
|
property :resource_attributes, as: 'resourceAttributes', class: Google::Apis::ServicecontrolV1::Resource, decorator: Google::Apis::ServicecontrolV1::Resource::Representation
|
|
496
524
|
|
|
@@ -777,6 +805,16 @@ module Google
|
|
|
777
805
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
778
806
|
property :org_policy_violation_info, as: 'orgPolicyViolationInfo', class: Google::Apis::ServicecontrolV1::OrgPolicyViolationInfo, decorator: Google::Apis::ServicecontrolV1::OrgPolicyViolationInfo::Representation
|
|
779
807
|
|
|
808
|
+
property :rab_policy_violation_info, as: 'rabPolicyViolationInfo', class: Google::Apis::ServicecontrolV1::RabPolicyViolationInfo, decorator: Google::Apis::ServicecontrolV1::RabPolicyViolationInfo::Representation
|
|
809
|
+
|
|
810
|
+
end
|
|
811
|
+
end
|
|
812
|
+
|
|
813
|
+
class PrivilegedAccessManagerMetadata
|
|
814
|
+
# @private
|
|
815
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
816
|
+
collection :pam_binding_ids, as: 'pamBindingIds', class: Google::Apis::ServicecontrolV1::AuditPamBindingId, decorator: Google::Apis::ServicecontrolV1::AuditPamBindingId::Representation
|
|
817
|
+
|
|
780
818
|
end
|
|
781
819
|
end
|
|
782
820
|
|
|
@@ -822,6 +860,14 @@ module Google
|
|
|
822
860
|
end
|
|
823
861
|
end
|
|
824
862
|
|
|
863
|
+
class RabPolicyViolationInfo
|
|
864
|
+
# @private
|
|
865
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
866
|
+
property :error_message, as: 'errorMessage'
|
|
867
|
+
collection :resource_locations, as: 'resourceLocations'
|
|
868
|
+
end
|
|
869
|
+
end
|
|
870
|
+
|
|
825
871
|
class ReportError
|
|
826
872
|
# @private
|
|
827
873
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-servicecontrol_v1
|
|
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-servicecontrol_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.49.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|