google-apis-networkmanagement_v1beta1 0.60.0 → 0.62.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/networkmanagement_v1beta1/classes.rb +22 -7
- data/lib/google/apis/networkmanagement_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/networkmanagement_v1beta1/representations.rb +2 -0
- data/lib/google/apis/networkmanagement_v1beta1/service.rb +67 -48
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0423e9907f452c42d5dee7db160d43b9b96ba060d58bc87415b6dc1f84f7e361
|
4
|
+
data.tar.gz: a099b040ea702ccb9cc978ecc7a36197c37cfe9073ee0d7431a9a59051e43a3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed76490ecfa5e60ea63b2ad8b6d82a5bca6187b3bd84551bd8a43c1f76c04a30650398eaf765fe3ff7d9682fe8341648747f4479678af4c265eea03e9e0c2796
|
7
|
+
data.tar.gz: 05f77d364d36842bf865faee424b4e12eaad56789625cc436a775ef4376b6a7b4272d6203143c6807c4de203f3de48bd86a9b696eca78113e06167a86adfc553
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-networkmanagement_v1beta1
|
2
2
|
|
3
|
+
### v0.62.0 (2025-07-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250625
|
6
|
+
|
7
|
+
### v0.61.0 (2025-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250604
|
10
|
+
|
3
11
|
### v0.60.0 (2025-06-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250527
|
@@ -363,6 +363,12 @@ module Google
|
|
363
363
|
class CloudRunRevisionEndpoint
|
364
364
|
include Google::Apis::Core::Hashable
|
365
365
|
|
366
|
+
# Output only. The URI of the Cloud Run service that the revision belongs to.
|
367
|
+
# The format is: projects/`project`/locations/`location`/services/`service`
|
368
|
+
# Corresponds to the JSON property `serviceUri`
|
369
|
+
# @return [String]
|
370
|
+
attr_accessor :service_uri
|
371
|
+
|
366
372
|
# A [Cloud Run](https://cloud.google.com/run) [revision](https://cloud.google.
|
367
373
|
# com/run/docs/reference/rest/v1/namespaces.revisions/get) URI. The format is:
|
368
374
|
# projects/`project`/locations/`location`/revisions/`revision`
|
@@ -376,6 +382,7 @@ module Google
|
|
376
382
|
|
377
383
|
# Update properties of this object
|
378
384
|
def update!(**args)
|
385
|
+
@service_uri = args[:service_uri] if args.key?(:service_uri)
|
379
386
|
@uri = args[:uri] if args.key?(:uri)
|
380
387
|
end
|
381
388
|
end
|
@@ -1328,7 +1335,8 @@ module Google
|
|
1328
1335
|
# @return [String]
|
1329
1336
|
attr_accessor :psc_network_attachment_uri
|
1330
1337
|
|
1331
|
-
# Indicates whether the Compute Engine instance is running.
|
1338
|
+
# Indicates whether the Compute Engine instance is running. Deprecated: use the `
|
1339
|
+
# status` field instead.
|
1332
1340
|
# Corresponds to the JSON property `running`
|
1333
1341
|
# @return [Boolean]
|
1334
1342
|
attr_accessor :running
|
@@ -1339,6 +1347,11 @@ module Google
|
|
1339
1347
|
# @return [String]
|
1340
1348
|
attr_accessor :service_account
|
1341
1349
|
|
1350
|
+
# The status of the instance.
|
1351
|
+
# Corresponds to the JSON property `status`
|
1352
|
+
# @return [String]
|
1353
|
+
attr_accessor :status
|
1354
|
+
|
1342
1355
|
# URI of a Compute Engine instance.
|
1343
1356
|
# Corresponds to the JSON property `uri`
|
1344
1357
|
# @return [String]
|
@@ -1359,6 +1372,7 @@ module Google
|
|
1359
1372
|
@psc_network_attachment_uri = args[:psc_network_attachment_uri] if args.key?(:psc_network_attachment_uri)
|
1360
1373
|
@running = args[:running] if args.key?(:running)
|
1361
1374
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1375
|
+
@status = args[:status] if args.key?(:status)
|
1362
1376
|
@uri = args[:uri] if args.key?(:uri)
|
1363
1377
|
end
|
1364
1378
|
end
|
@@ -3217,10 +3231,11 @@ module Google
|
|
3217
3231
|
# @return [Array<String>]
|
3218
3232
|
attr_accessor :metadata_fields
|
3219
3233
|
|
3220
|
-
# Identifier. Unique name of the configuration
|
3221
|
-
# `project_id`/
|
3222
|
-
#
|
3223
|
-
#
|
3234
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
3235
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
3236
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
3237
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
3238
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
3224
3239
|
# Corresponds to the JSON property `name`
|
3225
3240
|
# @return [String]
|
3226
3241
|
attr_accessor :name
|
@@ -3244,8 +3259,8 @@ module Google
|
|
3244
3259
|
# @return [String]
|
3245
3260
|
attr_accessor :subnet
|
3246
3261
|
|
3247
|
-
# Output only.
|
3248
|
-
#
|
3262
|
+
# Output only. Describes the state of the configured target resource for
|
3263
|
+
# diagnostic purposes.
|
3249
3264
|
# Corresponds to the JSON property `targetResourceState`
|
3250
3265
|
# @return [String]
|
3251
3266
|
attr_accessor :target_resource_state
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NetworkmanagementV1beta1
|
18
18
|
# Version of the google-apis-networkmanagement_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.62.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 = "20250625"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -486,6 +486,7 @@ module Google
|
|
486
486
|
class CloudRunRevisionEndpoint
|
487
487
|
# @private
|
488
488
|
class Representation < Google::Apis::Core::JsonRepresentation
|
489
|
+
property :service_uri, as: 'serviceUri'
|
489
490
|
property :uri, as: 'uri'
|
490
491
|
end
|
491
492
|
end
|
@@ -712,6 +713,7 @@ module Google
|
|
712
713
|
property :psc_network_attachment_uri, as: 'pscNetworkAttachmentUri'
|
713
714
|
property :running, as: 'running'
|
714
715
|
property :service_account, as: 'serviceAccount'
|
716
|
+
property :status, as: 'status'
|
715
717
|
property :uri, as: 'uri'
|
716
718
|
end
|
717
719
|
end
|
@@ -275,15 +275,16 @@ module Google
|
|
275
275
|
|
276
276
|
# Creates a new `VpcFlowLogsConfig`. If a configuration with the exact same
|
277
277
|
# settings already exists (even if the ID is different), the creation fails.
|
278
|
-
# Notes: 1. Creating a configuration with state=DISABLED will fail 2. The
|
279
|
-
# following fields are not considered as
|
278
|
+
# Notes: 1. Creating a configuration with `state=DISABLED` will fail 2. The
|
279
|
+
# following fields are not considered as settings for the purpose of the check
|
280
280
|
# mentioned above, therefore - creating another configuration with the same
|
281
281
|
# fields but different values for the following fields will fail as well: * name
|
282
282
|
# * create_time * update_time * labels * description
|
283
283
|
# @param [String] parent
|
284
|
-
# Required. The parent resource of the
|
285
|
-
# projects/`project_id`/
|
286
|
-
# locations/global`
|
284
|
+
# Required. The parent resource of the VpcFlowLogsConfig to create, in one of
|
285
|
+
# the following formats: - For project-level resources: `projects/`project_id`/
|
286
|
+
# locations/global` - For organization-level resources: `organizations/`
|
287
|
+
# organization_id`/locations/global`
|
287
288
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
288
289
|
# @param [String] vpc_flow_logs_config_id
|
289
290
|
# Required. ID of the `VpcFlowLogsConfig`.
|
@@ -319,10 +320,11 @@ module Google
|
|
319
320
|
|
320
321
|
# Deletes a specific `VpcFlowLogsConfig`.
|
321
322
|
# @param [String] name
|
322
|
-
# Required.
|
323
|
-
# project_id`/locations/
|
324
|
-
#
|
325
|
-
#
|
323
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
324
|
+
# formats: - For a project-level resource: `projects/`project_id`/locations/
|
325
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For an organization-
|
326
|
+
# level resource: `organizations/`organization_id`/locations/global/
|
327
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
326
328
|
# @param [String] fields
|
327
329
|
# Selector specifying which fields to include in a partial response.
|
328
330
|
# @param [String] quota_user
|
@@ -352,10 +354,11 @@ module Google
|
|
352
354
|
|
353
355
|
# Gets the details of a specific `VpcFlowLogsConfig`.
|
354
356
|
# @param [String] name
|
355
|
-
# Required.
|
356
|
-
# project_id`/locations/
|
357
|
-
#
|
358
|
-
#
|
357
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
358
|
+
# formats: - For project-level resources: `projects/`project_id`/locations/
|
359
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For organization-level
|
360
|
+
# resources: `organizations/`organization_id`/locations/global/
|
361
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
359
362
|
# @param [String] fields
|
360
363
|
# Selector specifying which fields to include in a partial response.
|
361
364
|
# @param [String] quota_user
|
@@ -385,8 +388,10 @@ module Google
|
|
385
388
|
|
386
389
|
# Lists all `VpcFlowLogsConfigs` in a given organization.
|
387
390
|
# @param [String] parent
|
388
|
-
# Required. The parent resource of the VpcFlowLogsConfig
|
389
|
-
#
|
391
|
+
# Required. The parent resource of the VpcFlowLogsConfig, in one of the
|
392
|
+
# following formats: - For project-level resourcs: `projects/`project_id`/
|
393
|
+
# locations/global` - For organization-level resources: `organizations/`
|
394
|
+
# organization_id`/locations/global`
|
390
395
|
# @param [String] filter
|
391
396
|
# Optional. Lists the `VpcFlowLogsConfigs` that match the filter expression. A
|
392
397
|
# filter expression must use the supported [CEL logic operators] (https://cloud.
|
@@ -430,20 +435,24 @@ module Google
|
|
430
435
|
|
431
436
|
# Updates an existing `VpcFlowLogsConfig`. If a configuration with the exact
|
432
437
|
# same settings already exists (even if the ID is different), the creation fails.
|
433
|
-
# Notes: 1. Updating a configuration with state=DISABLED will fail 2. The
|
434
|
-
# following fields are not considered as
|
438
|
+
# Notes: 1. Updating a configuration with `state=DISABLED` will fail 2. The
|
439
|
+
# following fields are not considered as settings for the purpose of the check
|
435
440
|
# mentioned above, therefore - updating another configuration with the same
|
436
441
|
# fields but different values for the following fields will fail as well: * name
|
437
442
|
# * create_time * update_time * labels * description
|
438
443
|
# @param [String] name
|
439
|
-
# Identifier. Unique name of the configuration
|
440
|
-
# `project_id`/
|
441
|
-
#
|
442
|
-
#
|
444
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
445
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
446
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
447
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
448
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
443
449
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
444
450
|
# @param [String] update_mask
|
445
451
|
# Required. Mask of fields to update. At least one path must be supplied in this
|
446
|
-
# field.
|
452
|
+
# field. For example, to change the state of the configuration to ENABLED,
|
453
|
+
# specify `update_mask` = `"state"`, and the `vpc_flow_logs_config` would be: `
|
454
|
+
# vpc_flow_logs_config = ` name = "projects/my-project/locations/global/
|
455
|
+
# vpcFlowLogsConfigs/my-config" state = "ENABLED" ``
|
447
456
|
# @param [String] fields
|
448
457
|
# Selector specifying which fields to include in a partial response.
|
449
458
|
# @param [String] quota_user
|
@@ -1067,15 +1076,16 @@ module Google
|
|
1067
1076
|
|
1068
1077
|
# Creates a new `VpcFlowLogsConfig`. If a configuration with the exact same
|
1069
1078
|
# settings already exists (even if the ID is different), the creation fails.
|
1070
|
-
# Notes: 1. Creating a configuration with state=DISABLED will fail 2. The
|
1071
|
-
# following fields are not considered as
|
1079
|
+
# Notes: 1. Creating a configuration with `state=DISABLED` will fail 2. The
|
1080
|
+
# following fields are not considered as settings for the purpose of the check
|
1072
1081
|
# mentioned above, therefore - creating another configuration with the same
|
1073
1082
|
# fields but different values for the following fields will fail as well: * name
|
1074
1083
|
# * create_time * update_time * labels * description
|
1075
1084
|
# @param [String] parent
|
1076
|
-
# Required. The parent resource of the
|
1077
|
-
# projects/`project_id`/
|
1078
|
-
# locations/global`
|
1085
|
+
# Required. The parent resource of the VpcFlowLogsConfig to create, in one of
|
1086
|
+
# the following formats: - For project-level resources: `projects/`project_id`/
|
1087
|
+
# locations/global` - For organization-level resources: `organizations/`
|
1088
|
+
# organization_id`/locations/global`
|
1079
1089
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
1080
1090
|
# @param [String] vpc_flow_logs_config_id
|
1081
1091
|
# Required. ID of the `VpcFlowLogsConfig`.
|
@@ -1111,10 +1121,11 @@ module Google
|
|
1111
1121
|
|
1112
1122
|
# Deletes a specific `VpcFlowLogsConfig`.
|
1113
1123
|
# @param [String] name
|
1114
|
-
# Required.
|
1115
|
-
# project_id`/locations/
|
1116
|
-
#
|
1117
|
-
#
|
1124
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
1125
|
+
# formats: - For a project-level resource: `projects/`project_id`/locations/
|
1126
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For an organization-
|
1127
|
+
# level resource: `organizations/`organization_id`/locations/global/
|
1128
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
1118
1129
|
# @param [String] fields
|
1119
1130
|
# Selector specifying which fields to include in a partial response.
|
1120
1131
|
# @param [String] quota_user
|
@@ -1144,10 +1155,11 @@ module Google
|
|
1144
1155
|
|
1145
1156
|
# Gets the details of a specific `VpcFlowLogsConfig`.
|
1146
1157
|
# @param [String] name
|
1147
|
-
# Required.
|
1148
|
-
# project_id`/locations/
|
1149
|
-
#
|
1150
|
-
#
|
1158
|
+
# Required. The resource name of the VpcFlowLogsConfig, in one of the following
|
1159
|
+
# formats: - For project-level resources: `projects/`project_id`/locations/
|
1160
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For organization-level
|
1161
|
+
# resources: `organizations/`organization_id`/locations/global/
|
1162
|
+
# vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
1151
1163
|
# @param [String] fields
|
1152
1164
|
# Selector specifying which fields to include in a partial response.
|
1153
1165
|
# @param [String] quota_user
|
@@ -1177,8 +1189,10 @@ module Google
|
|
1177
1189
|
|
1178
1190
|
# Lists all `VpcFlowLogsConfigs` in a given project.
|
1179
1191
|
# @param [String] parent
|
1180
|
-
# Required. The parent resource of the VpcFlowLogsConfig
|
1181
|
-
#
|
1192
|
+
# Required. The parent resource of the VpcFlowLogsConfig, in one of the
|
1193
|
+
# following formats: - For project-level resourcs: `projects/`project_id`/
|
1194
|
+
# locations/global` - For organization-level resources: `organizations/`
|
1195
|
+
# organization_id`/locations/global`
|
1182
1196
|
# @param [String] filter
|
1183
1197
|
# Optional. Lists the `VpcFlowLogsConfigs` that match the filter expression. A
|
1184
1198
|
# filter expression must use the supported [CEL logic operators] (https://cloud.
|
@@ -1222,20 +1236,24 @@ module Google
|
|
1222
1236
|
|
1223
1237
|
# Updates an existing `VpcFlowLogsConfig`. If a configuration with the exact
|
1224
1238
|
# same settings already exists (even if the ID is different), the creation fails.
|
1225
|
-
# Notes: 1. Updating a configuration with state=DISABLED will fail 2. The
|
1226
|
-
# following fields are not considered as
|
1239
|
+
# Notes: 1. Updating a configuration with `state=DISABLED` will fail 2. The
|
1240
|
+
# following fields are not considered as settings for the purpose of the check
|
1227
1241
|
# mentioned above, therefore - updating another configuration with the same
|
1228
1242
|
# fields but different values for the following fields will fail as well: * name
|
1229
1243
|
# * create_time * update_time * labels * description
|
1230
1244
|
# @param [String] name
|
1231
|
-
# Identifier. Unique name of the configuration
|
1232
|
-
# `project_id`/
|
1233
|
-
#
|
1234
|
-
#
|
1245
|
+
# Identifier. Unique name of the configuration. The name can have one of the
|
1246
|
+
# following forms: - For project-level configurations: `projects/`project_id`/
|
1247
|
+
# locations/global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id`` - For
|
1248
|
+
# organization-level configurations: `organizations/`organization_id`/locations/
|
1249
|
+
# global/vpcFlowLogsConfigs/`vpc_flow_logs_config_id``
|
1235
1250
|
# @param [Google::Apis::NetworkmanagementV1beta1::VpcFlowLogsConfig] vpc_flow_logs_config_object
|
1236
1251
|
# @param [String] update_mask
|
1237
1252
|
# Required. Mask of fields to update. At least one path must be supplied in this
|
1238
|
-
# field.
|
1253
|
+
# field. For example, to change the state of the configuration to ENABLED,
|
1254
|
+
# specify `update_mask` = `"state"`, and the `vpc_flow_logs_config` would be: `
|
1255
|
+
# vpc_flow_logs_config = ` name = "projects/my-project/locations/global/
|
1256
|
+
# vpcFlowLogsConfigs/my-config" state = "ENABLED" ``
|
1239
1257
|
# @param [String] fields
|
1240
1258
|
# Selector specifying which fields to include in a partial response.
|
1241
1259
|
# @param [String] quota_user
|
@@ -1266,10 +1284,11 @@ module Google
|
|
1266
1284
|
execute_or_queue_command(command, &block)
|
1267
1285
|
end
|
1268
1286
|
|
1269
|
-
# QueryOrgVpcFlowLogsConfigs
|
1287
|
+
# QueryOrgVpcFlowLogsConfigs returns a list of all organization-level VPC Flow
|
1288
|
+
# Logs configurations applicable to the specified project.
|
1270
1289
|
# @param [String] parent
|
1271
|
-
# Required. The parent resource of the VpcFlowLogsConfig
|
1272
|
-
# locations/global`
|
1290
|
+
# Required. The parent resource of the VpcFlowLogsConfig, specified in the
|
1291
|
+
# following format: `projects/`project_id`/locations/global`
|
1273
1292
|
# @param [String] filter
|
1274
1293
|
# Optional. Lists the `VpcFlowLogsConfigs` that match the filter expression. A
|
1275
1294
|
# filter expression must use the supported [CEL logic operators] (https://cloud.
|
@@ -1296,7 +1315,7 @@ module Google
|
|
1296
1315
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1297
1316
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1298
1317
|
def query_project_location_vpc_flow_logs_config_org_vpc_flow_logs_configs(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1299
|
-
command = make_simple_command(:get, 'v1beta1/{+parent}:queryOrgVpcFlowLogsConfigs', options)
|
1318
|
+
command = make_simple_command(:get, 'v1beta1/{+parent}/vpcFlowLogsConfigs:queryOrgVpcFlowLogsConfigs', options)
|
1300
1319
|
command.response_representation = Google::Apis::NetworkmanagementV1beta1::QueryOrgVpcFlowLogsConfigsResponse::Representation
|
1301
1320
|
command.response_class = Google::Apis::NetworkmanagementV1beta1::QueryOrgVpcFlowLogsConfigsResponse
|
1302
1321
|
command.params['parent'] = parent unless parent.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-networkmanagement_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.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-networkmanagement_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networkmanagement_v1beta1/v0.62.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networkmanagement_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|