Class: Google::Apis::ServicecontrolV1::AuditLog

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicecontrol_v1/classes.rb,
generated/google/apis/servicecontrol_v1/representations.rb,
generated/google/apis/servicecontrol_v1/representations.rb

Overview

Common audit log format for Google Cloud Platform API operations.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AuditLog

Returns a new instance of AuditLog.



288
289
290
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 288

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#authentication_infoGoogle::Apis::ServicecontrolV1::AuthenticationInfo

Authentication information for the operation. Corresponds to the JSON property authenticationInfo



193
194
195
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 193

def authentication_info
  @authentication_info
end

#authorization_infoArray<Google::Apis::ServicecontrolV1::AuthorizationInfo>

Authorization information. If there are multiple resources or permissions involved, then there is one AuthorizationInfo element for each resource, permission tuple. Corresponds to the JSON property authorizationInfo



200
201
202
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 200

def authorization_info
  @authorization_info
end

#metadataHash<String,Object>

Other service-specific data about the request, response, and other information associated with the current audited event. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,Object>)


206
207
208
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 206

def 
  @metadata
end

#method_nameString

The name of the service method or operation. For API calls, this should be the name of the API method. For example, "google.cloud.bigquery.v2.TableService. InsertTable" "google.logging.v2.ConfigServiceV2.CreateSink" Corresponds to the JSON property methodName

Returns:

  • (String)


213
214
215
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 213

def method_name
  @method_name
end

#num_response_itemsFixnum

The number of items returned from a List or Query API method, if applicable. Corresponds to the JSON property numResponseItems

Returns:

  • (Fixnum)


218
219
220
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 218

def num_response_items
  @num_response_items
end

#requestHash<String,Object>

The operation request. This may not include all request parameters, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the @type property. Corresponds to the JSON property request

Returns:

  • (Hash<String,Object>)


227
228
229
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 227

def request
  @request
end

#request_metadataGoogle::Apis::ServicecontrolV1::RequestMetadata

Metadata about the request. Corresponds to the JSON property requestMetadata



232
233
234
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 232

def 
  @request_metadata
end

#resource_locationGoogle::Apis::ServicecontrolV1::ResourceLocation

Location information about a resource. Corresponds to the JSON property resourceLocation



237
238
239
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 237

def resource_location
  @resource_location
end

#resource_nameString

The resource or collection that is the target of the operation. The name is a scheme-less URI, not including the API service name. For example: "projects/ PROJECT_ID/zones/us-central1-a/instances" "projects/PROJECT_ID/datasets/ DATASET_ID" Corresponds to the JSON property resourceName

Returns:

  • (String)


245
246
247
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 245

def resource_name
  @resource_name
end

#resource_original_stateHash<String,Object>

The resource's original state before mutation. Present only for operations which have successfully modified the targeted resource(s). In general, this field should contain all changed fields, except those that are already been included in request, response, metadata or service_data fields. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the @type property. Corresponds to the JSON property resourceOriginalState

Returns:

  • (Hash<String,Object>)


255
256
257
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 255

def resource_original_state
  @resource_original_state
end

#responseHash<String,Object>

The operation response. This may not include all response elements, such as those that are too large, privacy-sensitive, or duplicated elsewhere in the log record. It should never include user-generated data, such as file contents. When the JSON object represented here has a proto equivalent, the proto name will be indicated in the @type property. Corresponds to the JSON property response

Returns:

  • (Hash<String,Object>)


264
265
266
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 264

def response
  @response
end

#service_dataHash<String,Object>

Deprecated. Use the metadata field instead. Other service-specific data about the request, response, and other activities. Corresponds to the JSON property serviceData

Returns:

  • (Hash<String,Object>)


270
271
272
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 270

def service_data
  @service_data
end

#service_nameString

The name of the API service performing the operation. For example, "compute. googleapis.com". Corresponds to the JSON property serviceName

Returns:

  • (String)


276
277
278
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 276

def service_name
  @service_name
end

#statusGoogle::Apis::ServicecontrolV1::Status

The Status type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by gRPC. Each Status message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the API Design Guide. Corresponds to the JSON property status



286
287
288
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 286

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'generated/google/apis/servicecontrol_v1/classes.rb', line 293

def update!(**args)
  @authentication_info = args[:authentication_info] if args.key?(:authentication_info)
  @authorization_info = args[:authorization_info] if args.key?(:authorization_info)
  @metadata = args[:metadata] if args.key?(:metadata)
  @method_name = args[:method_name] if args.key?(:method_name)
  @num_response_items = args[:num_response_items] if args.key?(:num_response_items)
  @request = args[:request] if args.key?(:request)
  @request_metadata = args[:request_metadata] if args.key?(:request_metadata)
  @resource_location = args[:resource_location] if args.key?(:resource_location)
  @resource_name = args[:resource_name] if args.key?(:resource_name)
  @resource_original_state = args[:resource_original_state] if args.key?(:resource_original_state)
  @response = args[:response] if args.key?(:response)
  @service_data = args[:service_data] if args.key?(:service_data)
  @service_name = args[:service_name] if args.key?(:service_name)
  @status = args[:status] if args.key?(:status)
end