class Azure::PolicyInsights::Mgmt::V2018_07_01_preview::Models::IfNotExistsEvaluationDetails

Evaluation details of IfNotExists effect.

Attributes

resource_id[RW]

@return [String] ID of the last evaluated resource for IfNotExists effect.

total_resources[RW]

@return [Integer] Total number of resources to which the existence condition is applicable.

Private Class Methods

mapper() click to toggle source

Mapper for IfNotExistsEvaluationDetails class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/models/if_not_exists_evaluation_details.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IfNotExistsEvaluationDetails',
    type: {
      name: 'Composite',
      class_name: 'IfNotExistsEvaluationDetails',
      model_properties: {
        resource_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'resourceId',
          type: {
            name: 'String'
          }
        },
        total_resources: {
          client_side_validation: true,
          required: false,
          serialized_name: 'totalResources',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end