google-apis-containeranalysis_v1 0.72.0 → 0.73.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf7025f9d044b07d7da07b65f1cb5b73ed8e0c894479610b7407e930e5e99f70
|
|
4
|
+
data.tar.gz: f374c3c88f78bc26ca29a4017ee822b1db4efe4f48f4509eba0cf6c02567d415
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c30ac67267ae714ba90d0da5af4bb7267abb1e702dfab1d3a3c6138fbce7eabfc79fc4473c53a758639984d94f87dc8c57a6611c1fa872c9e2e3b26d5dc5c225
|
|
7
|
+
data.tar.gz: 457a1be63782df465387ca25166bd4f730808de945ed858ff33ef70567ffe92d92a1a579721aa35d0b663683b5edd14ae88c1212172b2dec4ed7855c7fb7c11c
|
data/CHANGELOG.md
CHANGED
|
@@ -22,6 +22,44 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module ContaineranalysisV1
|
|
24
24
|
|
|
25
|
+
# AISkillAnalysisNote provides the metadata of an AI-based skill analysis.
|
|
26
|
+
class AiSkillAnalysisNote
|
|
27
|
+
include Google::Apis::Core::Hashable
|
|
28
|
+
|
|
29
|
+
def initialize(**args)
|
|
30
|
+
update!(**args)
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Update properties of this object
|
|
34
|
+
def update!(**args)
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.
|
|
39
|
+
class AiSkillAnalysisOccurrence
|
|
40
|
+
include Google::Apis::Core::Hashable
|
|
41
|
+
|
|
42
|
+
# Findings produced by the analysis.
|
|
43
|
+
# Corresponds to the JSON property `findings`
|
|
44
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::Finding>]
|
|
45
|
+
attr_accessor :findings
|
|
46
|
+
|
|
47
|
+
# Name of the skill that produced this analysis.
|
|
48
|
+
# Corresponds to the JSON property `skillName`
|
|
49
|
+
# @return [String]
|
|
50
|
+
attr_accessor :skill_name
|
|
51
|
+
|
|
52
|
+
def initialize(**args)
|
|
53
|
+
update!(**args)
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Update properties of this object
|
|
57
|
+
def update!(**args)
|
|
58
|
+
@findings = args[:findings] if args.key?(:findings)
|
|
59
|
+
@skill_name = args[:skill_name] if args.key?(:skill_name)
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
25
63
|
# An alias to a repo revision.
|
|
26
64
|
class AliasContext
|
|
27
65
|
include Google::Apis::Core::Hashable
|
|
@@ -1487,6 +1525,13 @@ module Google
|
|
|
1487
1525
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1488
1526
|
include Google::Apis::Core::Hashable
|
|
1489
1527
|
|
|
1528
|
+
# Optional. A list of generic artifacts to be uploaded to Artifact Registry upon
|
|
1529
|
+
# successful completion of all build steps. If any artifacts fail to be pushed,
|
|
1530
|
+
# the build is marked FAILURE.
|
|
1531
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
1532
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact>]
|
|
1533
|
+
attr_accessor :generic_artifacts
|
|
1534
|
+
|
|
1490
1535
|
# Optional. A list of Go modules to be uploaded to Artifact Registry upon
|
|
1491
1536
|
# successful completion of all build steps. If any objects fail to be pushed,
|
|
1492
1537
|
# the build is marked FAILURE.
|
|
@@ -1550,6 +1595,7 @@ module Google
|
|
|
1550
1595
|
|
|
1551
1596
|
# Update properties of this object
|
|
1552
1597
|
def update!(**args)
|
|
1598
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
1553
1599
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
1554
1600
|
@images = args[:images] if args.key?(:images)
|
|
1555
1601
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -1595,6 +1641,35 @@ module Google
|
|
|
1595
1641
|
end
|
|
1596
1642
|
end
|
|
1597
1643
|
|
|
1644
|
+
# Generic artifact to upload to Artifact Registry upon successful completion of
|
|
1645
|
+
# all build steps.
|
|
1646
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1647
|
+
include Google::Apis::Core::Hashable
|
|
1648
|
+
|
|
1649
|
+
# Required. Path to the generic artifact in the build's workspace to be uploaded
|
|
1650
|
+
# to Artifact Registry.
|
|
1651
|
+
# Corresponds to the JSON property `folder`
|
|
1652
|
+
# @return [String]
|
|
1653
|
+
attr_accessor :folder
|
|
1654
|
+
|
|
1655
|
+
# Required. Registry path to upload the generic artifact to, in the form
|
|
1656
|
+
# projects/$PROJECT/locations/$LOCATION/repositories/$REPO/packages/$PACKAGE/
|
|
1657
|
+
# versions/$VERSION
|
|
1658
|
+
# Corresponds to the JSON property `registryPath`
|
|
1659
|
+
# @return [String]
|
|
1660
|
+
attr_accessor :registry_path
|
|
1661
|
+
|
|
1662
|
+
def initialize(**args)
|
|
1663
|
+
update!(**args)
|
|
1664
|
+
end
|
|
1665
|
+
|
|
1666
|
+
# Update properties of this object
|
|
1667
|
+
def update!(**args)
|
|
1668
|
+
@folder = args[:folder] if args.key?(:folder)
|
|
1669
|
+
@registry_path = args[:registry_path] if args.key?(:registry_path)
|
|
1670
|
+
end
|
|
1671
|
+
end
|
|
1672
|
+
|
|
1598
1673
|
# Go module to upload to Artifact Registry upon successful completion of all
|
|
1599
1674
|
# build steps. A module refers to all dependencies in a go.mod file.
|
|
1600
1675
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
@@ -2356,6 +2431,11 @@ module Google
|
|
|
2356
2431
|
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
2357
2432
|
attr_accessor :pull_timing
|
|
2358
2433
|
|
|
2434
|
+
# Declaration of results for this build step.
|
|
2435
|
+
# Corresponds to the JSON property `results`
|
|
2436
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult>]
|
|
2437
|
+
attr_accessor :results
|
|
2438
|
+
|
|
2359
2439
|
# A shell script to be executed in the step. When script is provided, the user
|
|
2360
2440
|
# cannot specify the entrypoint or args.
|
|
2361
2441
|
# Corresponds to the JSON property `script`
|
|
@@ -2422,6 +2502,7 @@ module Google
|
|
|
2422
2502
|
@id = args[:id] if args.key?(:id)
|
|
2423
2503
|
@name = args[:name] if args.key?(:name)
|
|
2424
2504
|
@pull_timing = args[:pull_timing] if args.key?(:pull_timing)
|
|
2505
|
+
@results = args[:results] if args.key?(:results)
|
|
2425
2506
|
@script = args[:script] if args.key?(:script)
|
|
2426
2507
|
@secret_env = args[:secret_env] if args.key?(:secret_env)
|
|
2427
2508
|
@status = args[:status] if args.key?(:status)
|
|
@@ -2432,6 +2513,25 @@ module Google
|
|
|
2432
2513
|
end
|
|
2433
2514
|
end
|
|
2434
2515
|
|
|
2516
|
+
# Results for a build step.
|
|
2517
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
2518
|
+
include Google::Apis::Core::Hashable
|
|
2519
|
+
|
|
2520
|
+
# Results for a build step.
|
|
2521
|
+
# Corresponds to the JSON property `results`
|
|
2522
|
+
# @return [Hash<String,String>]
|
|
2523
|
+
attr_accessor :results
|
|
2524
|
+
|
|
2525
|
+
def initialize(**args)
|
|
2526
|
+
update!(**args)
|
|
2527
|
+
end
|
|
2528
|
+
|
|
2529
|
+
# Update properties of this object
|
|
2530
|
+
def update!(**args)
|
|
2531
|
+
@results = args[:results] if args.key?(:results)
|
|
2532
|
+
end
|
|
2533
|
+
end
|
|
2534
|
+
|
|
2435
2535
|
# A non-fatal problem encountered during the execution of the build.
|
|
2436
2536
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
2437
2537
|
include Google::Apis::Core::Hashable
|
|
@@ -2547,6 +2647,11 @@ module Google
|
|
|
2547
2647
|
attr_accessor :empty
|
|
2548
2648
|
alias_method :empty?, :empty
|
|
2549
2649
|
|
|
2650
|
+
# Represents a generic artifact as a build dependency.
|
|
2651
|
+
# Corresponds to the JSON property `genericArtifact`
|
|
2652
|
+
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency]
|
|
2653
|
+
attr_accessor :generic_artifact
|
|
2654
|
+
|
|
2550
2655
|
# Represents a git repository as a build dependency.
|
|
2551
2656
|
# Corresponds to the JSON property `gitSource`
|
|
2552
2657
|
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency]
|
|
@@ -2559,10 +2664,37 @@ module Google
|
|
|
2559
2664
|
# Update properties of this object
|
|
2560
2665
|
def update!(**args)
|
|
2561
2666
|
@empty = args[:empty] if args.key?(:empty)
|
|
2667
|
+
@generic_artifact = args[:generic_artifact] if args.key?(:generic_artifact)
|
|
2562
2668
|
@git_source = args[:git_source] if args.key?(:git_source)
|
|
2563
2669
|
end
|
|
2564
2670
|
end
|
|
2565
2671
|
|
|
2672
|
+
# Represents a generic artifact as a build dependency.
|
|
2673
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
2674
|
+
include Google::Apis::Core::Hashable
|
|
2675
|
+
|
|
2676
|
+
# Required. Where the artifact files should be placed on the worker.
|
|
2677
|
+
# Corresponds to the JSON property `destPath`
|
|
2678
|
+
# @return [String]
|
|
2679
|
+
attr_accessor :dest_path
|
|
2680
|
+
|
|
2681
|
+
# Required. The location to download the artifact files from. Ex: projects/p1/
|
|
2682
|
+
# locations/us/repositories/r1/packages/p1/versions/v1
|
|
2683
|
+
# Corresponds to the JSON property `resource`
|
|
2684
|
+
# @return [String]
|
|
2685
|
+
attr_accessor :resource
|
|
2686
|
+
|
|
2687
|
+
def initialize(**args)
|
|
2688
|
+
update!(**args)
|
|
2689
|
+
end
|
|
2690
|
+
|
|
2691
|
+
# Update properties of this object
|
|
2692
|
+
def update!(**args)
|
|
2693
|
+
@dest_path = args[:dest_path] if args.key?(:dest_path)
|
|
2694
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
2695
|
+
end
|
|
2696
|
+
end
|
|
2697
|
+
|
|
2566
2698
|
# Represents a git repository as a build dependency.
|
|
2567
2699
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
2568
2700
|
include Google::Apis::Core::Hashable
|
|
@@ -2924,6 +3056,17 @@ module Google
|
|
|
2924
3056
|
# @return [Array<String>]
|
|
2925
3057
|
attr_accessor :build_step_outputs
|
|
2926
3058
|
|
|
3059
|
+
# Results for build steps. step_id ->
|
|
3060
|
+
# Corresponds to the JSON property `buildStepResults`
|
|
3061
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults>]
|
|
3062
|
+
attr_accessor :build_step_results
|
|
3063
|
+
|
|
3064
|
+
# Output only. Generic artifacts uploaded to Artifact Registry at the end of the
|
|
3065
|
+
# build.
|
|
3066
|
+
# Corresponds to the JSON property `genericArtifacts`
|
|
3067
|
+
# @return [Array<Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact>]
|
|
3068
|
+
attr_accessor :generic_artifacts
|
|
3069
|
+
|
|
2927
3070
|
# Optional. Go module artifacts uploaded to Artifact Registry at the end of the
|
|
2928
3071
|
# build.
|
|
2929
3072
|
# Corresponds to the JSON property `goModules`
|
|
@@ -2966,6 +3109,8 @@ module Google
|
|
|
2966
3109
|
@artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing)
|
|
2967
3110
|
@build_step_images = args[:build_step_images] if args.key?(:build_step_images)
|
|
2968
3111
|
@build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs)
|
|
3112
|
+
@build_step_results = args[:build_step_results] if args.key?(:build_step_results)
|
|
3113
|
+
@generic_artifacts = args[:generic_artifacts] if args.key?(:generic_artifacts)
|
|
2969
3114
|
@go_modules = args[:go_modules] if args.key?(:go_modules)
|
|
2970
3115
|
@images = args[:images] if args.key?(:images)
|
|
2971
3116
|
@maven_artifacts = args[:maven_artifacts] if args.key?(:maven_artifacts)
|
|
@@ -3168,6 +3313,37 @@ module Google
|
|
|
3168
3313
|
end
|
|
3169
3314
|
end
|
|
3170
3315
|
|
|
3316
|
+
# StepResult is the declaration of a result for a build step.
|
|
3317
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
3318
|
+
include Google::Apis::Core::Hashable
|
|
3319
|
+
|
|
3320
|
+
# Optional. The content of the attestation to be generated.
|
|
3321
|
+
# Corresponds to the JSON property `attestationContent`
|
|
3322
|
+
# @return [String]
|
|
3323
|
+
attr_accessor :attestation_content
|
|
3324
|
+
|
|
3325
|
+
# Optional. The type of attestation to be generated.
|
|
3326
|
+
# Corresponds to the JSON property `attestationType`
|
|
3327
|
+
# @return [String]
|
|
3328
|
+
attr_accessor :attestation_type
|
|
3329
|
+
|
|
3330
|
+
# Required. The name of the result.
|
|
3331
|
+
# Corresponds to the JSON property `name`
|
|
3332
|
+
# @return [String]
|
|
3333
|
+
attr_accessor :name
|
|
3334
|
+
|
|
3335
|
+
def initialize(**args)
|
|
3336
|
+
update!(**args)
|
|
3337
|
+
end
|
|
3338
|
+
|
|
3339
|
+
# Update properties of this object
|
|
3340
|
+
def update!(**args)
|
|
3341
|
+
@attestation_content = args[:attestation_content] if args.key?(:attestation_content)
|
|
3342
|
+
@attestation_type = args[:attestation_type] if args.key?(:attestation_type)
|
|
3343
|
+
@name = args[:name] if args.key?(:name)
|
|
3344
|
+
end
|
|
3345
|
+
end
|
|
3346
|
+
|
|
3171
3347
|
# Location of the source in an archive file in Cloud Storage.
|
|
3172
3348
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
3173
3349
|
include Google::Apis::Core::Hashable
|
|
@@ -3270,6 +3446,52 @@ module Google
|
|
|
3270
3446
|
end
|
|
3271
3447
|
end
|
|
3272
3448
|
|
|
3449
|
+
# A generic artifact uploaded to Artifact Registry using the GenericArtifact
|
|
3450
|
+
# directive.
|
|
3451
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
3452
|
+
include Google::Apis::Core::Hashable
|
|
3453
|
+
|
|
3454
|
+
# Container message for hashes of byte content of files, used in
|
|
3455
|
+
# SourceProvenance messages to verify integrity of source input to the build.
|
|
3456
|
+
# Corresponds to the JSON property `artifactFingerprint`
|
|
3457
|
+
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes]
|
|
3458
|
+
attr_accessor :artifact_fingerprint
|
|
3459
|
+
|
|
3460
|
+
# Output only. Path to the artifact in Artifact Registry.
|
|
3461
|
+
# Corresponds to the JSON property `artifactRegistryPackage`
|
|
3462
|
+
# @return [String]
|
|
3463
|
+
attr_accessor :artifact_registry_package
|
|
3464
|
+
|
|
3465
|
+
# Output only. The file hashes that make up the generic artifact.
|
|
3466
|
+
# Corresponds to the JSON property `fileHashes`
|
|
3467
|
+
# @return [Hash<String,Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes>]
|
|
3468
|
+
attr_accessor :file_hashes
|
|
3469
|
+
|
|
3470
|
+
# Start and end times for a build execution phase.
|
|
3471
|
+
# Corresponds to the JSON property `pushTiming`
|
|
3472
|
+
# @return [Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan]
|
|
3473
|
+
attr_accessor :push_timing
|
|
3474
|
+
|
|
3475
|
+
# Output only. URI of the uploaded artifact. Ex: projects/p1/locations/us/
|
|
3476
|
+
# repositories/r1/packages/p1/versions/v1
|
|
3477
|
+
# Corresponds to the JSON property `uri`
|
|
3478
|
+
# @return [String]
|
|
3479
|
+
attr_accessor :uri
|
|
3480
|
+
|
|
3481
|
+
def initialize(**args)
|
|
3482
|
+
update!(**args)
|
|
3483
|
+
end
|
|
3484
|
+
|
|
3485
|
+
# Update properties of this object
|
|
3486
|
+
def update!(**args)
|
|
3487
|
+
@artifact_fingerprint = args[:artifact_fingerprint] if args.key?(:artifact_fingerprint)
|
|
3488
|
+
@artifact_registry_package = args[:artifact_registry_package] if args.key?(:artifact_registry_package)
|
|
3489
|
+
@file_hashes = args[:file_hashes] if args.key?(:file_hashes)
|
|
3490
|
+
@push_timing = args[:push_timing] if args.key?(:push_timing)
|
|
3491
|
+
@uri = args[:uri] if args.key?(:uri)
|
|
3492
|
+
end
|
|
3493
|
+
end
|
|
3494
|
+
|
|
3273
3495
|
# A Go module artifact uploaded to Artifact Registry using the GoModule
|
|
3274
3496
|
# directive.
|
|
3275
3497
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
@@ -4142,6 +4364,62 @@ module Google
|
|
|
4142
4364
|
end
|
|
4143
4365
|
end
|
|
4144
4366
|
|
|
4367
|
+
# Finding provides details for a single finding within an
|
|
4368
|
+
# AISkillAnalysisOccurrence.
|
|
4369
|
+
class Finding
|
|
4370
|
+
include Google::Apis::Core::Hashable
|
|
4371
|
+
|
|
4372
|
+
# Category of the finding.
|
|
4373
|
+
# Corresponds to the JSON property `category`
|
|
4374
|
+
# @return [String]
|
|
4375
|
+
attr_accessor :category
|
|
4376
|
+
|
|
4377
|
+
# Detailed description of the finding.
|
|
4378
|
+
# Corresponds to the JSON property `description`
|
|
4379
|
+
# @return [String]
|
|
4380
|
+
attr_accessor :description
|
|
4381
|
+
|
|
4382
|
+
# Path to the file where the finding was detected.
|
|
4383
|
+
# Corresponds to the JSON property `filePath`
|
|
4384
|
+
# @return [String]
|
|
4385
|
+
attr_accessor :file_path
|
|
4386
|
+
|
|
4387
|
+
# Unique identifier of the rule that produced this finding.
|
|
4388
|
+
# Corresponds to the JSON property `ruleId`
|
|
4389
|
+
# @return [String]
|
|
4390
|
+
attr_accessor :rule_id
|
|
4391
|
+
|
|
4392
|
+
# Severity of the finding.
|
|
4393
|
+
# Corresponds to the JSON property `severity`
|
|
4394
|
+
# @return [String]
|
|
4395
|
+
attr_accessor :severity
|
|
4396
|
+
|
|
4397
|
+
# Code snippet relevant to the finding.
|
|
4398
|
+
# Corresponds to the JSON property `snippet`
|
|
4399
|
+
# @return [String]
|
|
4400
|
+
attr_accessor :snippet
|
|
4401
|
+
|
|
4402
|
+
# Title of the finding.
|
|
4403
|
+
# Corresponds to the JSON property `title`
|
|
4404
|
+
# @return [String]
|
|
4405
|
+
attr_accessor :title
|
|
4406
|
+
|
|
4407
|
+
def initialize(**args)
|
|
4408
|
+
update!(**args)
|
|
4409
|
+
end
|
|
4410
|
+
|
|
4411
|
+
# Update properties of this object
|
|
4412
|
+
def update!(**args)
|
|
4413
|
+
@category = args[:category] if args.key?(:category)
|
|
4414
|
+
@description = args[:description] if args.key?(:description)
|
|
4415
|
+
@file_path = args[:file_path] if args.key?(:file_path)
|
|
4416
|
+
@rule_id = args[:rule_id] if args.key?(:rule_id)
|
|
4417
|
+
@severity = args[:severity] if args.key?(:severity)
|
|
4418
|
+
@snippet = args[:snippet] if args.key?(:snippet)
|
|
4419
|
+
@title = args[:title] if args.key?(:title)
|
|
4420
|
+
end
|
|
4421
|
+
end
|
|
4422
|
+
|
|
4145
4423
|
# A set of properties that uniquely identify a given Docker image.
|
|
4146
4424
|
class Fingerprint
|
|
4147
4425
|
include Google::Apis::Core::Hashable
|
|
@@ -5259,6 +5537,11 @@ module Google
|
|
|
5259
5537
|
class Note
|
|
5260
5538
|
include Google::Apis::Core::Hashable
|
|
5261
5539
|
|
|
5540
|
+
# AISkillAnalysisNote provides the metadata of an AI-based skill analysis.
|
|
5541
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5542
|
+
# @return [Google::Apis::ContaineranalysisV1::AiSkillAnalysisNote]
|
|
5543
|
+
attr_accessor :ai_skill_analysis
|
|
5544
|
+
|
|
5262
5545
|
# Note kind that represents a logical attestation "role" or "authority". For
|
|
5263
5546
|
# example, an organization might have one `Authority` for "QA" and one for "
|
|
5264
5547
|
# build". This note is intended to act strictly as a grouping mechanism for the
|
|
@@ -5395,6 +5678,7 @@ module Google
|
|
|
5395
5678
|
|
|
5396
5679
|
# Update properties of this object
|
|
5397
5680
|
def update!(**args)
|
|
5681
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5398
5682
|
@attestation = args[:attestation] if args.key?(:attestation)
|
|
5399
5683
|
@build = args[:build] if args.key?(:build)
|
|
5400
5684
|
@compliance = args[:compliance] if args.key?(:compliance)
|
|
@@ -5429,6 +5713,11 @@ module Google
|
|
|
5429
5713
|
# @return [String]
|
|
5430
5714
|
attr_accessor :advisory_publish_time
|
|
5431
5715
|
|
|
5716
|
+
# AISkillAnalysisOccurrence provides the results of an AI-based skill analysis.
|
|
5717
|
+
# Corresponds to the JSON property `aiSkillAnalysis`
|
|
5718
|
+
# @return [Google::Apis::ContaineranalysisV1::AiSkillAnalysisOccurrence]
|
|
5719
|
+
attr_accessor :ai_skill_analysis
|
|
5720
|
+
|
|
5432
5721
|
# Occurrence that represents a single "attestation". The authenticity of an
|
|
5433
5722
|
# attestation can be verified using the attached signature. If the verifier
|
|
5434
5723
|
# trusts the public key of the signer, then verifying the signature is
|
|
@@ -5558,6 +5847,7 @@ module Google
|
|
|
5558
5847
|
# Update properties of this object
|
|
5559
5848
|
def update!(**args)
|
|
5560
5849
|
@advisory_publish_time = args[:advisory_publish_time] if args.key?(:advisory_publish_time)
|
|
5850
|
+
@ai_skill_analysis = args[:ai_skill_analysis] if args.key?(:ai_skill_analysis)
|
|
5561
5851
|
@attestation = args[:attestation] if args.key?(:attestation)
|
|
5562
5852
|
@build = args[:build] if args.key?(:build)
|
|
5563
5853
|
@compliance = args[:compliance] if args.key?(:compliance)
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ContaineranalysisV1
|
|
18
18
|
# Version of the google-apis-containeranalysis_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.73.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260423"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,18 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module ContaineranalysisV1
|
|
24
24
|
|
|
25
|
+
class AiSkillAnalysisNote
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
class AiSkillAnalysisOccurrence
|
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
33
|
+
|
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
35
|
+
end
|
|
36
|
+
|
|
25
37
|
class AliasContext
|
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
39
|
|
|
@@ -232,6 +244,12 @@ module Google
|
|
|
232
244
|
include Google::Apis::Core::JsonObjectSupport
|
|
233
245
|
end
|
|
234
246
|
|
|
247
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
248
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
|
+
|
|
250
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
251
|
+
end
|
|
252
|
+
|
|
235
253
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
236
254
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
237
255
|
|
|
@@ -298,6 +316,12 @@ module Google
|
|
|
298
316
|
include Google::Apis::Core::JsonObjectSupport
|
|
299
317
|
end
|
|
300
318
|
|
|
319
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
320
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
321
|
+
|
|
322
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
323
|
+
end
|
|
324
|
+
|
|
301
325
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
302
326
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
303
327
|
|
|
@@ -322,6 +346,12 @@ module Google
|
|
|
322
346
|
include Google::Apis::Core::JsonObjectSupport
|
|
323
347
|
end
|
|
324
348
|
|
|
349
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
+
|
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
+
end
|
|
354
|
+
|
|
325
355
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
326
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
327
357
|
|
|
@@ -418,6 +448,12 @@ module Google
|
|
|
418
448
|
include Google::Apis::Core::JsonObjectSupport
|
|
419
449
|
end
|
|
420
450
|
|
|
451
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
|
+
|
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
455
|
+
end
|
|
456
|
+
|
|
421
457
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
422
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
423
459
|
|
|
@@ -436,6 +472,12 @@ module Google
|
|
|
436
472
|
include Google::Apis::Core::JsonObjectSupport
|
|
437
473
|
end
|
|
438
474
|
|
|
475
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
477
|
+
|
|
478
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
479
|
+
end
|
|
480
|
+
|
|
439
481
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
440
482
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
441
483
|
|
|
@@ -580,6 +622,12 @@ module Google
|
|
|
580
622
|
include Google::Apis::Core::JsonObjectSupport
|
|
581
623
|
end
|
|
582
624
|
|
|
625
|
+
class Finding
|
|
626
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
627
|
+
|
|
628
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
629
|
+
end
|
|
630
|
+
|
|
583
631
|
class Fingerprint
|
|
584
632
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
585
633
|
|
|
@@ -1120,6 +1168,21 @@ module Google
|
|
|
1120
1168
|
include Google::Apis::Core::JsonObjectSupport
|
|
1121
1169
|
end
|
|
1122
1170
|
|
|
1171
|
+
class AiSkillAnalysisNote
|
|
1172
|
+
# @private
|
|
1173
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1174
|
+
end
|
|
1175
|
+
end
|
|
1176
|
+
|
|
1177
|
+
class AiSkillAnalysisOccurrence
|
|
1178
|
+
# @private
|
|
1179
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1180
|
+
collection :findings, as: 'findings', class: Google::Apis::ContaineranalysisV1::Finding, decorator: Google::Apis::ContaineranalysisV1::Finding::Representation
|
|
1181
|
+
|
|
1182
|
+
property :skill_name, as: 'skillName'
|
|
1183
|
+
end
|
|
1184
|
+
end
|
|
1185
|
+
|
|
1123
1186
|
class AliasContext
|
|
1124
1187
|
# @private
|
|
1125
1188
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1487,6 +1550,8 @@ module Google
|
|
|
1487
1550
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1Artifacts
|
|
1488
1551
|
# @private
|
|
1489
1552
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1553
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact::Representation
|
|
1554
|
+
|
|
1490
1555
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule::Representation
|
|
1491
1556
|
|
|
1492
1557
|
collection :images, as: 'images'
|
|
@@ -1513,6 +1578,14 @@ module Google
|
|
|
1513
1578
|
end
|
|
1514
1579
|
end
|
|
1515
1580
|
|
|
1581
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGenericArtifact
|
|
1582
|
+
# @private
|
|
1583
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1584
|
+
property :folder, as: 'folder'
|
|
1585
|
+
property :registry_path, as: 'registryPath'
|
|
1586
|
+
end
|
|
1587
|
+
end
|
|
1588
|
+
|
|
1516
1589
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1ArtifactsGoModule
|
|
1517
1590
|
# @private
|
|
1518
1591
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1679,6 +1752,8 @@ module Google
|
|
|
1679
1752
|
property :name, as: 'name'
|
|
1680
1753
|
property :pull_timing, as: 'pullTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
1681
1754
|
|
|
1755
|
+
collection :results, as: 'results', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult::Representation
|
|
1756
|
+
|
|
1682
1757
|
property :script, as: 'script'
|
|
1683
1758
|
collection :secret_env, as: 'secretEnv'
|
|
1684
1759
|
property :status, as: 'status'
|
|
@@ -1691,6 +1766,13 @@ module Google
|
|
|
1691
1766
|
end
|
|
1692
1767
|
end
|
|
1693
1768
|
|
|
1769
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults
|
|
1770
|
+
# @private
|
|
1771
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1772
|
+
hash :results, as: 'results'
|
|
1773
|
+
end
|
|
1774
|
+
end
|
|
1775
|
+
|
|
1694
1776
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1BuildWarning
|
|
1695
1777
|
# @private
|
|
1696
1778
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1724,11 +1806,21 @@ module Google
|
|
|
1724
1806
|
# @private
|
|
1725
1807
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1726
1808
|
property :empty, as: 'empty'
|
|
1809
|
+
property :generic_artifact, as: 'genericArtifact', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency::Representation
|
|
1810
|
+
|
|
1727
1811
|
property :git_source, as: 'gitSource', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency::Representation
|
|
1728
1812
|
|
|
1729
1813
|
end
|
|
1730
1814
|
end
|
|
1731
1815
|
|
|
1816
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGenericArtifactDependency
|
|
1817
|
+
# @private
|
|
1818
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1819
|
+
property :dest_path, as: 'destPath'
|
|
1820
|
+
property :resource, as: 'resource'
|
|
1821
|
+
end
|
|
1822
|
+
end
|
|
1823
|
+
|
|
1732
1824
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1DependencyGitSourceDependency
|
|
1733
1825
|
# @private
|
|
1734
1826
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1828,6 +1920,10 @@ module Google
|
|
|
1828
1920
|
|
|
1829
1921
|
collection :build_step_images, as: 'buildStepImages'
|
|
1830
1922
|
collection :build_step_outputs, as: 'buildStepOutputs'
|
|
1923
|
+
hash :build_step_results, as: 'buildStepResults', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuildStepResults::Representation
|
|
1924
|
+
|
|
1925
|
+
collection :generic_artifacts, as: 'genericArtifacts', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact::Representation
|
|
1926
|
+
|
|
1831
1927
|
collection :go_modules, as: 'goModules', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule::Representation
|
|
1832
1928
|
|
|
1833
1929
|
collection :images, as: 'images', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1BuiltImage::Representation
|
|
@@ -1904,6 +2000,15 @@ module Google
|
|
|
1904
2000
|
end
|
|
1905
2001
|
end
|
|
1906
2002
|
|
|
2003
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1StepResult
|
|
2004
|
+
# @private
|
|
2005
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2006
|
+
property :attestation_content, as: 'attestationContent'
|
|
2007
|
+
property :attestation_type, as: 'attestationType'
|
|
2008
|
+
property :name, as: 'name'
|
|
2009
|
+
end
|
|
2010
|
+
end
|
|
2011
|
+
|
|
1907
2012
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1StorageSource
|
|
1908
2013
|
# @private
|
|
1909
2014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1931,6 +2036,20 @@ module Google
|
|
|
1931
2036
|
end
|
|
1932
2037
|
end
|
|
1933
2038
|
|
|
2039
|
+
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGenericArtifact
|
|
2040
|
+
# @private
|
|
2041
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2042
|
+
property :artifact_fingerprint, as: 'artifactFingerprint', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2043
|
+
|
|
2044
|
+
property :artifact_registry_package, as: 'artifactRegistryPackage'
|
|
2045
|
+
hash :file_hashes, as: 'fileHashes', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1FileHashes::Representation
|
|
2046
|
+
|
|
2047
|
+
property :push_timing, as: 'pushTiming', class: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan, decorator: Google::Apis::ContaineranalysisV1::ContaineranalysisGoogleDevtoolsCloudbuildV1TimeSpan::Representation
|
|
2048
|
+
|
|
2049
|
+
property :uri, as: 'uri'
|
|
2050
|
+
end
|
|
2051
|
+
end
|
|
2052
|
+
|
|
1934
2053
|
class ContaineranalysisGoogleDevtoolsCloudbuildV1UploadedGoModule
|
|
1935
2054
|
# @private
|
|
1936
2055
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2178,6 +2297,19 @@ module Google
|
|
|
2178
2297
|
end
|
|
2179
2298
|
end
|
|
2180
2299
|
|
|
2300
|
+
class Finding
|
|
2301
|
+
# @private
|
|
2302
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2303
|
+
property :category, as: 'category'
|
|
2304
|
+
property :description, as: 'description'
|
|
2305
|
+
property :file_path, as: 'filePath'
|
|
2306
|
+
property :rule_id, as: 'ruleId'
|
|
2307
|
+
property :severity, as: 'severity'
|
|
2308
|
+
property :snippet, as: 'snippet'
|
|
2309
|
+
property :title, as: 'title'
|
|
2310
|
+
end
|
|
2311
|
+
end
|
|
2312
|
+
|
|
2181
2313
|
class Fingerprint
|
|
2182
2314
|
# @private
|
|
2183
2315
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2511,6 +2643,8 @@ module Google
|
|
|
2511
2643
|
class Note
|
|
2512
2644
|
# @private
|
|
2513
2645
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2646
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1::AiSkillAnalysisNote, decorator: Google::Apis::ContaineranalysisV1::AiSkillAnalysisNote::Representation
|
|
2647
|
+
|
|
2514
2648
|
property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1::AttestationNote, decorator: Google::Apis::ContaineranalysisV1::AttestationNote::Representation
|
|
2515
2649
|
|
|
2516
2650
|
property :build, as: 'build', class: Google::Apis::ContaineranalysisV1::BuildNote, decorator: Google::Apis::ContaineranalysisV1::BuildNote::Representation
|
|
@@ -2554,6 +2688,8 @@ module Google
|
|
|
2554
2688
|
# @private
|
|
2555
2689
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2556
2690
|
property :advisory_publish_time, as: 'advisoryPublishTime'
|
|
2691
|
+
property :ai_skill_analysis, as: 'aiSkillAnalysis', class: Google::Apis::ContaineranalysisV1::AiSkillAnalysisOccurrence, decorator: Google::Apis::ContaineranalysisV1::AiSkillAnalysisOccurrence::Representation
|
|
2692
|
+
|
|
2557
2693
|
property :attestation, as: 'attestation', class: Google::Apis::ContaineranalysisV1::AttestationOccurrence, decorator: Google::Apis::ContaineranalysisV1::AttestationOccurrence::Representation
|
|
2558
2694
|
|
|
2559
2695
|
property :build, as: 'build', class: Google::Apis::ContaineranalysisV1::BuildOccurrence, decorator: Google::Apis::ContaineranalysisV1::BuildOccurrence::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-containeranalysis_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.73.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-containeranalysis_v1/v0.73.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-containeranalysis_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|