class Google::Apis::CloudresourcemanagerV1::ClearOrgPolicyRequest

The request sent to the ClearOrgPolicy method.

Attributes

constraint[RW]

Name of the `Constraint` of the `Policy` to clear. Corresponds to the JSON property `constraint` @return [String]

etag[RW]

The current version, for concurrency control. Not sending an `etag` will cause the `Policy` to be cleared blindly. Corresponds to the JSON property `etag` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 263
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 268
def update!(**args)
  @constraint = args[:constraint] if args.key?(:constraint)
  @etag = args[:etag] if args.key?(:etag)
end