Class: Google::Apis::PolicysimulatorV1::GoogleCloudPolicysimulatorV1alphaCreateOrgPolicyViolationsPreviewOperationMetadata

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

Overview

CreateOrgPolicyViolationsPreviewOperationMetadata is metadata about an OrgPolicyViolationsPreview generations operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1alphaCreateOrgPolicyViolationsPreviewOperationMetadata

Returns a new instance of GoogleCloudPolicysimulatorV1alphaCreateOrgPolicyViolationsPreviewOperationMetadata.



986
987
988
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 986

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

Instance Attribute Details

#request_timeString

Time when the request was received. Corresponds to the JSON property requestTime

Returns:

  • (String)


957
958
959
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 957

def request_time
  @request_time
end

#resources_foundFixnum

Total number of resources that need scanning. Should equal resource_scanned + resources_pending Corresponds to the JSON property resourcesFound

Returns:

  • (Fixnum)


963
964
965
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 963

def resources_found
  @resources_found
end

#resources_pendingFixnum

Number of resources still to scan. Corresponds to the JSON property resourcesPending

Returns:

  • (Fixnum)


968
969
970
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 968

def resources_pending
  @resources_pending
end

#resources_scannedFixnum

Number of resources already scanned. Corresponds to the JSON property resourcesScanned

Returns:

  • (Fixnum)


973
974
975
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 973

def resources_scanned
  @resources_scanned
end

#start_timeString

Time when the request started processing, i.e., when the state was set to RUNNING. Corresponds to the JSON property startTime

Returns:

  • (String)


979
980
981
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 979

def start_time
  @start_time
end

#stateString

Output only. The current state of the operation. Corresponds to the JSON property state

Returns:

  • (String)


984
985
986
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 984

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



991
992
993
994
995
996
997
998
# File 'lib/google/apis/policysimulator_v1/classes.rb', line 991

def update!(**args)
  @request_time = args[:request_time] if args.key?(:request_time)
  @resources_found = args[:resources_found] if args.key?(:resources_found)
  @resources_pending = args[:resources_pending] if args.key?(:resources_pending)
  @resources_scanned = args[:resources_scanned] if args.key?(:resources_scanned)
  @start_time = args[:start_time] if args.key?(:start_time)
  @state = args[:state] if args.key?(:state)
end