Class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudPolicysimulatorV1alphaResourceContext

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

ResourceContext provides the context we know about a resource. It is similar in concept to google.cloud.asset.v1.Resource, but focuses on the information specifically used by Simulator.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudPolicysimulatorV1alphaResourceContext

Returns a new instance of GoogleCloudPolicysimulatorV1alphaResourceContext.



1478
1479
1480
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1478

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

Instance Attribute Details

#ancestorsArray<String>

The ancestry path of the resource in Google Cloud resource hierarchy, represented as a list of relative resource names. An ancestry path starts with the closest ancestor in the hierarchy and ends at root. If the resource is a project, folder, or organization, the ancestry path starts from the resource itself. Example: ["projects/123456789", "folders/5432", "organizations/1234"] Corresponds to the JSON property ancestors

Returns:

  • (Array<String>)


1461
1462
1463
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1461

def ancestors
  @ancestors
end

#asset_typeString

The asset type of the resource as defined by CAIS. Example: compute. googleapis.com/Firewall See Supported asset types for more information. Corresponds to the JSON property assetType

Returns:

  • (String)


1468
1469
1470
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1468

def asset_type
  @asset_type
end

#resourceString

The full name of the resource. Example: //compute.googleapis.com/projects/ my_project_123/zones/zone1/instances/instance1 See Resource names for more information. Corresponds to the JSON property resource

Returns:

  • (String)


1476
1477
1478
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1476

def resource
  @resource
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1483
1484
1485
1486
1487
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 1483

def update!(**args)
  @ancestors = args[:ancestors] if args.key?(:ancestors)
  @asset_type = args[:asset_type] if args.key?(:asset_type)
  @resource = args[:resource] if args.key?(:resource)
end