Class: Google::Apis::WebsecurityscannerV1alpha::ScanConfig

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

Overview

A ScanConfig resource contains the configurations to launch a scan. next id: 12

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ScanConfig

Returns a new instance of ScanConfig.



543
544
545
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 543

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

Instance Attribute Details

#authenticationGoogle::Apis::WebsecurityscannerV1alpha::Authentication

Scan authentication configuration. Corresponds to the JSON property authentication



489
490
491
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 489

def authentication
  @authentication
end

#blacklist_patternsArray<String>

The blacklist URL patterns as described in https://cloud.google.com/security-scanner/docs/excluded-urls Corresponds to the JSON property blacklistPatterns

Returns:

  • (Array<String>)


495
496
497
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 495

def blacklist_patterns
  @blacklist_patterns
end

#display_nameString

Required. The user provided display name of the ScanConfig. Corresponds to the JSON property displayName

Returns:

  • (String)


500
501
502
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 500

def display_name
  @display_name
end

#latest_runGoogle::Apis::WebsecurityscannerV1alpha::ScanRun

A ScanRun is a output-only resource representing an actual run of the scan. Corresponds to the JSON property latestRun



505
506
507
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 505

def latest_run
  @latest_run
end

#max_qpsFixnum

The maximum QPS during scanning. A valid value ranges from 5 to 20 inclusively. If the field is unspecified or its value is set 0, server will default to 15. Other values outside of [5, 20] range will be rejected with INVALID_ARGUMENT error. Corresponds to the JSON property maxQps

Returns:

  • (Fixnum)


513
514
515
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 513

def max_qps
  @max_qps
end

#nameString

The resource name of the ScanConfig. The name follows the format of 'projects/projectId/scanConfigs/scanConfigId'. The ScanConfig IDs are generated by the system. Corresponds to the JSON property name

Returns:

  • (String)


520
521
522
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 520

def name
  @name
end

#scheduleGoogle::Apis::WebsecurityscannerV1alpha::Schedule

Scan schedule configuration. Corresponds to the JSON property schedule



525
526
527
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 525

def schedule
  @schedule
end

#starting_urlsArray<String>

Required. The starting URLs from which the scanner finds site pages. Corresponds to the JSON property startingUrls

Returns:

  • (Array<String>)


530
531
532
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 530

def starting_urls
  @starting_urls
end

#target_platformsArray<String>

Set of Cloud Platforms targeted by the scan. If empty, APP_ENGINE will be used as a default. Corresponds to the JSON property targetPlatforms

Returns:

  • (Array<String>)


536
537
538
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 536

def target_platforms
  @target_platforms
end

#user_agentString

The user agent used during scanning. Corresponds to the JSON property userAgent

Returns:

  • (String)


541
542
543
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 541

def user_agent
  @user_agent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



548
549
550
551
552
553
554
555
556
557
558
559
# File 'generated/google/apis/websecurityscanner_v1alpha/classes.rb', line 548

def update!(**args)
  @authentication = args[:authentication] if args.key?(:authentication)
  @blacklist_patterns = args[:blacklist_patterns] if args.key?(:blacklist_patterns)
  @display_name = args[:display_name] if args.key?(:display_name)
  @latest_run = args[:latest_run] if args.key?(:latest_run)
  @max_qps = args[:max_qps] if args.key?(:max_qps)
  @name = args[:name] if args.key?(:name)
  @schedule = args[:schedule] if args.key?(:schedule)
  @starting_urls = args[:starting_urls] if args.key?(:starting_urls)
  @target_platforms = args[:target_platforms] if args.key?(:target_platforms)
  @user_agent = args[:user_agent] if args.key?(:user_agent)
end