Class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1betaCreateOrgPolicyViolationsPreviewOperationMetadata

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

Overview

CreateOrgPolicyViolationsPreviewOperationMetadata is metadata about an OrgPolicyViolationsPreview generations operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1betaCreateOrgPolicyViolationsPreviewOperationMetadata

Returns a new instance of GoogleCloudPolicysimulatorV1betaCreateOrgPolicyViolationsPreviewOperationMetadata.



1612
1613
1614
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1612

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)


1583
1584
1585
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1583

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)


1589
1590
1591
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1589

def resources_found
  @resources_found
end

#resources_pendingFixnum

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

Returns:

  • (Fixnum)


1594
1595
1596
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1594

def resources_pending
  @resources_pending
end

#resources_scannedFixnum

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

Returns:

  • (Fixnum)


1599
1600
1601
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1599

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)


1605
1606
1607
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1605

def start_time
  @start_time
end

#stateString

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

Returns:

  • (String)


1610
1611
1612
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1610

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1617
1618
1619
1620
1621
1622
1623
1624
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1617

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