Class: Google::Apis::IamV1::QueryAuditableServicesRequest
- Inherits:
-
Object
- Object
- Google::Apis::IamV1::QueryAuditableServicesRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/iam_v1/classes.rb,
generated/google/apis/iam_v1/representations.rb,
generated/google/apis/iam_v1/representations.rb
Overview
A request to get the list of auditable services for a resource.
Instance Attribute Summary collapse
-
#full_resource_name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueryAuditableServicesRequest
constructor
A new instance of QueryAuditableServicesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ QueryAuditableServicesRequest
Returns a new instance of QueryAuditableServicesRequest
606 607 608 |
# File 'generated/google/apis/iam_v1/classes.rb', line 606 def initialize(**args) update!(**args) end |
Instance Attribute Details
#full_resource_name ⇒ String
Required. The full resource name to query from the list of auditable
services.
The name follows the Google Cloud Platform resource format.
For example, a Cloud Platform project with id my-project
will be named
//cloudresourcemanager.googleapis.com/projects/my-project
.
Corresponds to the JSON property fullResourceName
604 605 606 |
# File 'generated/google/apis/iam_v1/classes.rb', line 604 def full_resource_name @full_resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
611 612 613 |
# File 'generated/google/apis/iam_v1/classes.rb', line 611 def update!(**args) @full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name) end |