google-apis-developerconnect_v1 0.18.0 → 0.20.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/developerconnect_v1/classes.rb +276 -0
- data/lib/google/apis/developerconnect_v1/gem_version.rb +2 -2
- data/lib/google/apis/developerconnect_v1/representations.rb +106 -0
- data/lib/google/apis/developerconnect_v1/service.rb +159 -0
- 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: e0098ad990b6c37632437dff16e0ad448d899c0a27d6e17add274c7ea54f25a1
|
|
4
|
+
data.tar.gz: 431387e35995841117323a030c42a91ca3194b55dc14d81d73038f7236e5aeca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47bc8b8279acca32283678e7a58812e148df708788da8189ef48d659dd29654d2e8e786f303bcdf8e1f2b4cfe65c2964877a9f833818ea78d1d9a0c029c96843
|
|
7
|
+
data.tar.gz: 744bb46b151ac6e23de8c9f1a3e3a5edcdab3693fb682ab2cb75c2b61e33dcd3fb1695aff4f85924d2236430f46057953576e97d678b861f08d00ca72a061df1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-developerconnect_v1
|
|
2
2
|
|
|
3
|
+
### v0.20.0 (2025-12-21)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251211
|
|
6
|
+
|
|
7
|
+
### v0.19.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251209
|
|
10
|
+
|
|
3
11
|
### v0.18.0 (2025-12-07)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251201
|
|
@@ -188,6 +188,67 @@ module Google
|
|
|
188
188
|
end
|
|
189
189
|
end
|
|
190
190
|
|
|
191
|
+
# The ArtifactDeployment resource represents the deployment of the artifact
|
|
192
|
+
# within the InsightsConfig resource.
|
|
193
|
+
class ArtifactDeployment
|
|
194
|
+
include Google::Apis::Core::Hashable
|
|
195
|
+
|
|
196
|
+
# Output only. The artifact alias in the deployment spec, with Tag/SHA. e.g. us-
|
|
197
|
+
# docker.pkg.dev/my-project/my-repo/image:1.0.0
|
|
198
|
+
# Corresponds to the JSON property `artifactAlias`
|
|
199
|
+
# @return [String]
|
|
200
|
+
attr_accessor :artifact_alias
|
|
201
|
+
|
|
202
|
+
# Output only. The artifact that is deployed.
|
|
203
|
+
# Corresponds to the JSON property `artifactReference`
|
|
204
|
+
# @return [String]
|
|
205
|
+
attr_accessor :artifact_reference
|
|
206
|
+
|
|
207
|
+
# Output only. The summary of container status of the artifact deployment.
|
|
208
|
+
# Format as `ContainerStatusState-Reason : restartCount` e.g. "Waiting-
|
|
209
|
+
# ImagePullBackOff : 3"
|
|
210
|
+
# Corresponds to the JSON property `containerStatusSummary`
|
|
211
|
+
# @return [String]
|
|
212
|
+
attr_accessor :container_status_summary
|
|
213
|
+
|
|
214
|
+
# Output only. The time at which the deployment was deployed.
|
|
215
|
+
# Corresponds to the JSON property `deployTime`
|
|
216
|
+
# @return [String]
|
|
217
|
+
attr_accessor :deploy_time
|
|
218
|
+
|
|
219
|
+
# Output only. Unique identifier of `ArtifactDeployment`.
|
|
220
|
+
# Corresponds to the JSON property `id`
|
|
221
|
+
# @return [String]
|
|
222
|
+
attr_accessor :id
|
|
223
|
+
|
|
224
|
+
# Output only. The source commits at which this artifact was built. Extracted
|
|
225
|
+
# from provenance.
|
|
226
|
+
# Corresponds to the JSON property `sourceCommitUris`
|
|
227
|
+
# @return [Array<String>]
|
|
228
|
+
attr_accessor :source_commit_uris
|
|
229
|
+
|
|
230
|
+
# Output only. The time at which the deployment was undeployed, all artifacts
|
|
231
|
+
# are considered undeployed once this time is set.
|
|
232
|
+
# Corresponds to the JSON property `undeployTime`
|
|
233
|
+
# @return [String]
|
|
234
|
+
attr_accessor :undeploy_time
|
|
235
|
+
|
|
236
|
+
def initialize(**args)
|
|
237
|
+
update!(**args)
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
# Update properties of this object
|
|
241
|
+
def update!(**args)
|
|
242
|
+
@artifact_alias = args[:artifact_alias] if args.key?(:artifact_alias)
|
|
243
|
+
@artifact_reference = args[:artifact_reference] if args.key?(:artifact_reference)
|
|
244
|
+
@container_status_summary = args[:container_status_summary] if args.key?(:container_status_summary)
|
|
245
|
+
@deploy_time = args[:deploy_time] if args.key?(:deploy_time)
|
|
246
|
+
@id = args[:id] if args.key?(:id)
|
|
247
|
+
@source_commit_uris = args[:source_commit_uris] if args.key?(:source_commit_uris)
|
|
248
|
+
@undeploy_time = args[:undeploy_time] if args.key?(:undeploy_time)
|
|
249
|
+
end
|
|
250
|
+
end
|
|
251
|
+
|
|
191
252
|
# Configuration for connections to an instance of Bitbucket Cloud.
|
|
192
253
|
class BitbucketCloudConfig
|
|
193
254
|
include Google::Apis::Core::Hashable
|
|
@@ -466,6 +527,85 @@ module Google
|
|
|
466
527
|
end
|
|
467
528
|
end
|
|
468
529
|
|
|
530
|
+
# The DeploymentEvent resource represents the deployment of the artifact within
|
|
531
|
+
# the InsightsConfig resource.
|
|
532
|
+
class DeploymentEvent
|
|
533
|
+
include Google::Apis::Core::Hashable
|
|
534
|
+
|
|
535
|
+
# Output only. The artifact deployments of the DeploymentEvent. Each artifact
|
|
536
|
+
# deployment contains the artifact uri and the runtime configuration uri. For
|
|
537
|
+
# GKE, this would be all the containers images that are deployed in the pod.
|
|
538
|
+
# Corresponds to the JSON property `artifactDeployments`
|
|
539
|
+
# @return [Array<Google::Apis::DeveloperconnectV1::ArtifactDeployment>]
|
|
540
|
+
attr_accessor :artifact_deployments
|
|
541
|
+
|
|
542
|
+
# Output only. The create time of the DeploymentEvent.
|
|
543
|
+
# Corresponds to the JSON property `createTime`
|
|
544
|
+
# @return [String]
|
|
545
|
+
attr_accessor :create_time
|
|
546
|
+
|
|
547
|
+
# Output only. The time at which the DeploymentEvent was deployed. This would be
|
|
548
|
+
# the min of all ArtifactDeployment deploy_times.
|
|
549
|
+
# Corresponds to the JSON property `deployTime`
|
|
550
|
+
# @return [String]
|
|
551
|
+
attr_accessor :deploy_time
|
|
552
|
+
|
|
553
|
+
# Identifier. The name of the DeploymentEvent. This name is provided by DCI.
|
|
554
|
+
# Format: projects/`project`/locations/`location`/insightsConfigs/`
|
|
555
|
+
# insights_config`/deploymentEvents/`uuid`
|
|
556
|
+
# Corresponds to the JSON property `name`
|
|
557
|
+
# @return [String]
|
|
558
|
+
attr_accessor :name
|
|
559
|
+
|
|
560
|
+
# RuntimeConfig represents the runtimes where the application is deployed.
|
|
561
|
+
# Corresponds to the JSON property `runtimeConfig`
|
|
562
|
+
# @return [Google::Apis::DeveloperconnectV1::RuntimeConfig]
|
|
563
|
+
attr_accessor :runtime_config
|
|
564
|
+
|
|
565
|
+
# Output only. The runtime assigned URI of the DeploymentEvent. For GKE, this is
|
|
566
|
+
# the fully qualified replica set uri. e.g. container.googleapis.com/projects/`
|
|
567
|
+
# project`/locations/`location`/clusters/`cluster`/k8s/namespaces/`namespace`/
|
|
568
|
+
# apps/replicasets/`replica-set-id` For Cloud Run, this is the revision name.
|
|
569
|
+
# Corresponds to the JSON property `runtimeDeploymentUri`
|
|
570
|
+
# @return [String]
|
|
571
|
+
attr_accessor :runtime_deployment_uri
|
|
572
|
+
|
|
573
|
+
# Output only. The state of the DeploymentEvent.
|
|
574
|
+
# Corresponds to the JSON property `state`
|
|
575
|
+
# @return [String]
|
|
576
|
+
attr_accessor :state
|
|
577
|
+
|
|
578
|
+
# Output only. The time at which the DeploymentEvent was undeployed, all
|
|
579
|
+
# artifacts are considered undeployed once this time is set. This would be the
|
|
580
|
+
# max of all ArtifactDeployment undeploy_times. If any ArtifactDeployment is
|
|
581
|
+
# still active (i.e. does not have an undeploy_time), this field will be empty.
|
|
582
|
+
# Corresponds to the JSON property `undeployTime`
|
|
583
|
+
# @return [String]
|
|
584
|
+
attr_accessor :undeploy_time
|
|
585
|
+
|
|
586
|
+
# Output only. The update time of the DeploymentEvent.
|
|
587
|
+
# Corresponds to the JSON property `updateTime`
|
|
588
|
+
# @return [String]
|
|
589
|
+
attr_accessor :update_time
|
|
590
|
+
|
|
591
|
+
def initialize(**args)
|
|
592
|
+
update!(**args)
|
|
593
|
+
end
|
|
594
|
+
|
|
595
|
+
# Update properties of this object
|
|
596
|
+
def update!(**args)
|
|
597
|
+
@artifact_deployments = args[:artifact_deployments] if args.key?(:artifact_deployments)
|
|
598
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
599
|
+
@deploy_time = args[:deploy_time] if args.key?(:deploy_time)
|
|
600
|
+
@name = args[:name] if args.key?(:name)
|
|
601
|
+
@runtime_config = args[:runtime_config] if args.key?(:runtime_config)
|
|
602
|
+
@runtime_deployment_uri = args[:runtime_deployment_uri] if args.key?(:runtime_deployment_uri)
|
|
603
|
+
@state = args[:state] if args.key?(:state)
|
|
604
|
+
@undeploy_time = args[:undeploy_time] if args.key?(:undeploy_time)
|
|
605
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
606
|
+
end
|
|
607
|
+
end
|
|
608
|
+
|
|
469
609
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
470
610
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
471
611
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
@@ -717,6 +857,25 @@ module Google
|
|
|
717
857
|
end
|
|
718
858
|
end
|
|
719
859
|
|
|
860
|
+
# Message for responding to finishing an OAuth flow.
|
|
861
|
+
class FinishOAuthResponse
|
|
862
|
+
include Google::Apis::Core::Hashable
|
|
863
|
+
|
|
864
|
+
# Message for representing an error from exchanging OAuth tokens.
|
|
865
|
+
# Corresponds to the JSON property `exchangeError`
|
|
866
|
+
# @return [Google::Apis::DeveloperconnectV1::ExchangeError]
|
|
867
|
+
attr_accessor :exchange_error
|
|
868
|
+
|
|
869
|
+
def initialize(**args)
|
|
870
|
+
update!(**args)
|
|
871
|
+
end
|
|
872
|
+
|
|
873
|
+
# Update properties of this object
|
|
874
|
+
def update!(**args)
|
|
875
|
+
@exchange_error = args[:exchange_error] if args.key?(:exchange_error)
|
|
876
|
+
end
|
|
877
|
+
end
|
|
878
|
+
|
|
720
879
|
# GKEWorkload represents the Google Kubernetes Engine runtime.
|
|
721
880
|
class GkeWorkload
|
|
722
881
|
include Google::Apis::Core::Hashable
|
|
@@ -973,6 +1132,14 @@ module Google
|
|
|
973
1132
|
attr_accessor :enabled
|
|
974
1133
|
alias_method :enabled?, :enabled
|
|
975
1134
|
|
|
1135
|
+
# Output only. The base URI for the HTTP proxy endpoint. Has the format `https://
|
|
1136
|
+
# `generatedID`-c-h-`shortRegion`.developerconnect.dev` Populated only when
|
|
1137
|
+
# enabled is set to true. This endpoint is used by other Google services that
|
|
1138
|
+
# integrate with Developer Connect.
|
|
1139
|
+
# Corresponds to the JSON property `httpProxyBaseUri`
|
|
1140
|
+
# @return [String]
|
|
1141
|
+
attr_accessor :http_proxy_base_uri
|
|
1142
|
+
|
|
976
1143
|
def initialize(**args)
|
|
977
1144
|
update!(**args)
|
|
978
1145
|
end
|
|
@@ -980,6 +1147,7 @@ module Google
|
|
|
980
1147
|
# Update properties of this object
|
|
981
1148
|
def update!(**args)
|
|
982
1149
|
@enabled = args[:enabled] if args.key?(:enabled)
|
|
1150
|
+
@http_proxy_base_uri = args[:http_proxy_base_uri] if args.key?(:http_proxy_base_uri)
|
|
983
1151
|
end
|
|
984
1152
|
end
|
|
985
1153
|
|
|
@@ -1234,6 +1402,11 @@ module Google
|
|
|
1234
1402
|
# @return [String]
|
|
1235
1403
|
attr_accessor :name
|
|
1236
1404
|
|
|
1405
|
+
# Projects represents the projects to track with the InsightsConfig.
|
|
1406
|
+
# Corresponds to the JSON property `projects`
|
|
1407
|
+
# @return [Google::Apis::DeveloperconnectV1::Projects]
|
|
1408
|
+
attr_accessor :projects
|
|
1409
|
+
|
|
1237
1410
|
# Output only. Reconciling (https://google.aip.dev/128#reconciliation). Set to
|
|
1238
1411
|
# true if the current state of InsightsConfig does not match the user's intended
|
|
1239
1412
|
# state, and the service is actively updating the resource to reconcile them.
|
|
@@ -1272,6 +1445,7 @@ module Google
|
|
|
1272
1445
|
@errors = args[:errors] if args.key?(:errors)
|
|
1273
1446
|
@labels = args[:labels] if args.key?(:labels)
|
|
1274
1447
|
@name = args[:name] if args.key?(:name)
|
|
1448
|
+
@projects = args[:projects] if args.key?(:projects)
|
|
1275
1449
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
|
1276
1450
|
@runtime_configs = args[:runtime_configs] if args.key?(:runtime_configs)
|
|
1277
1451
|
@state = args[:state] if args.key?(:state)
|
|
@@ -1426,6 +1600,32 @@ module Google
|
|
|
1426
1600
|
end
|
|
1427
1601
|
end
|
|
1428
1602
|
|
|
1603
|
+
# Response to listing DeploymentEvents.
|
|
1604
|
+
class ListDeploymentEventsResponse
|
|
1605
|
+
include Google::Apis::Core::Hashable
|
|
1606
|
+
|
|
1607
|
+
# The list of DeploymentEvents.
|
|
1608
|
+
# Corresponds to the JSON property `deploymentEvents`
|
|
1609
|
+
# @return [Array<Google::Apis::DeveloperconnectV1::DeploymentEvent>]
|
|
1610
|
+
attr_accessor :deployment_events
|
|
1611
|
+
|
|
1612
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If this
|
|
1613
|
+
# field is omitted, there are no subsequent pages.
|
|
1614
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
1615
|
+
# @return [String]
|
|
1616
|
+
attr_accessor :next_page_token
|
|
1617
|
+
|
|
1618
|
+
def initialize(**args)
|
|
1619
|
+
update!(**args)
|
|
1620
|
+
end
|
|
1621
|
+
|
|
1622
|
+
# Update properties of this object
|
|
1623
|
+
def update!(**args)
|
|
1624
|
+
@deployment_events = args[:deployment_events] if args.key?(:deployment_events)
|
|
1625
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1626
|
+
end
|
|
1627
|
+
end
|
|
1628
|
+
|
|
1429
1629
|
# Message for response to listing GitRepositoryLinks
|
|
1430
1630
|
class ListGitRepositoryLinksResponse
|
|
1431
1631
|
include Google::Apis::Core::Hashable
|
|
@@ -1946,6 +2146,25 @@ module Google
|
|
|
1946
2146
|
end
|
|
1947
2147
|
end
|
|
1948
2148
|
|
|
2149
|
+
# Projects represents the projects to track with the InsightsConfig.
|
|
2150
|
+
class Projects
|
|
2151
|
+
include Google::Apis::Core::Hashable
|
|
2152
|
+
|
|
2153
|
+
# Optional. The GCP Project IDs. Format: projects/`project`
|
|
2154
|
+
# Corresponds to the JSON property `projectIds`
|
|
2155
|
+
# @return [Array<String>]
|
|
2156
|
+
attr_accessor :project_ids
|
|
2157
|
+
|
|
2158
|
+
def initialize(**args)
|
|
2159
|
+
update!(**args)
|
|
2160
|
+
end
|
|
2161
|
+
|
|
2162
|
+
# Update properties of this object
|
|
2163
|
+
def update!(**args)
|
|
2164
|
+
@project_ids = args[:project_ids] if args.key?(:project_ids)
|
|
2165
|
+
end
|
|
2166
|
+
end
|
|
2167
|
+
|
|
1949
2168
|
# ProviderOAuthConfig is the OAuth config for a provider.
|
|
1950
2169
|
class ProviderOAuthConfig
|
|
1951
2170
|
include Google::Apis::Core::Hashable
|
|
@@ -2044,6 +2263,63 @@ module Google
|
|
|
2044
2263
|
end
|
|
2045
2264
|
end
|
|
2046
2265
|
|
|
2266
|
+
# Message for responding to starting an OAuth flow.
|
|
2267
|
+
class StartOAuthResponse
|
|
2268
|
+
include Google::Apis::Core::Hashable
|
|
2269
|
+
|
|
2270
|
+
# The authorization server URL to the OAuth flow of the service provider.
|
|
2271
|
+
# Corresponds to the JSON property `authUri`
|
|
2272
|
+
# @return [String]
|
|
2273
|
+
attr_accessor :auth_uri
|
|
2274
|
+
|
|
2275
|
+
# The client ID to the OAuth App of the service provider.
|
|
2276
|
+
# Corresponds to the JSON property `clientId`
|
|
2277
|
+
# @return [String]
|
|
2278
|
+
attr_accessor :client_id
|
|
2279
|
+
|
|
2280
|
+
# https://datatracker.ietf.org/doc/html/rfc7636#section-4.1 Follow http://shortn/
|
|
2281
|
+
# _WFYl6U0NyC to include it in the AutoCodeURL.
|
|
2282
|
+
# Corresponds to the JSON property `codeChallenge`
|
|
2283
|
+
# @return [String]
|
|
2284
|
+
attr_accessor :code_challenge
|
|
2285
|
+
|
|
2286
|
+
# https://datatracker.ietf.org/doc/html/rfc7636#section-4.2
|
|
2287
|
+
# Corresponds to the JSON property `codeChallengeMethod`
|
|
2288
|
+
# @return [String]
|
|
2289
|
+
attr_accessor :code_challenge_method
|
|
2290
|
+
|
|
2291
|
+
# The list of scopes requested by the application.
|
|
2292
|
+
# Corresponds to the JSON property `scopes`
|
|
2293
|
+
# @return [Array<String>]
|
|
2294
|
+
attr_accessor :scopes
|
|
2295
|
+
|
|
2296
|
+
# The ID of the system provider.
|
|
2297
|
+
# Corresponds to the JSON property `systemProviderId`
|
|
2298
|
+
# @return [String]
|
|
2299
|
+
attr_accessor :system_provider_id
|
|
2300
|
+
|
|
2301
|
+
# The ticket to be used for post processing the callback from the service
|
|
2302
|
+
# provider.
|
|
2303
|
+
# Corresponds to the JSON property `ticket`
|
|
2304
|
+
# @return [String]
|
|
2305
|
+
attr_accessor :ticket
|
|
2306
|
+
|
|
2307
|
+
def initialize(**args)
|
|
2308
|
+
update!(**args)
|
|
2309
|
+
end
|
|
2310
|
+
|
|
2311
|
+
# Update properties of this object
|
|
2312
|
+
def update!(**args)
|
|
2313
|
+
@auth_uri = args[:auth_uri] if args.key?(:auth_uri)
|
|
2314
|
+
@client_id = args[:client_id] if args.key?(:client_id)
|
|
2315
|
+
@code_challenge = args[:code_challenge] if args.key?(:code_challenge)
|
|
2316
|
+
@code_challenge_method = args[:code_challenge_method] if args.key?(:code_challenge_method)
|
|
2317
|
+
@scopes = args[:scopes] if args.key?(:scopes)
|
|
2318
|
+
@system_provider_id = args[:system_provider_id] if args.key?(:system_provider_id)
|
|
2319
|
+
@ticket = args[:ticket] if args.key?(:ticket)
|
|
2320
|
+
end
|
|
2321
|
+
end
|
|
2322
|
+
|
|
2047
2323
|
# The `Status` type defines a logical error model that is suitable for different
|
|
2048
2324
|
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
2049
2325
|
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DeveloperconnectV1
|
|
18
18
|
# Version of the google-apis-developerconnect_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.20.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 = "20251211"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -46,6 +46,12 @@ module Google
|
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
|
47
47
|
end
|
|
48
48
|
|
|
49
|
+
class ArtifactDeployment
|
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
|
+
|
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
53
|
+
end
|
|
54
|
+
|
|
49
55
|
class BitbucketCloudConfig
|
|
50
56
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
51
57
|
|
|
@@ -76,6 +82,12 @@ module Google
|
|
|
76
82
|
include Google::Apis::Core::JsonObjectSupport
|
|
77
83
|
end
|
|
78
84
|
|
|
85
|
+
class DeploymentEvent
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
79
91
|
class Empty
|
|
80
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
81
93
|
|
|
@@ -142,6 +154,12 @@ module Google
|
|
|
142
154
|
include Google::Apis::Core::JsonObjectSupport
|
|
143
155
|
end
|
|
144
156
|
|
|
157
|
+
class FinishOAuthResponse
|
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
159
|
+
|
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
161
|
+
end
|
|
162
|
+
|
|
145
163
|
class GkeWorkload
|
|
146
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
147
165
|
|
|
@@ -244,6 +262,12 @@ module Google
|
|
|
244
262
|
include Google::Apis::Core::JsonObjectSupport
|
|
245
263
|
end
|
|
246
264
|
|
|
265
|
+
class ListDeploymentEventsResponse
|
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
267
|
+
|
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
269
|
+
end
|
|
270
|
+
|
|
247
271
|
class ListGitRepositoryLinksResponse
|
|
248
272
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
249
273
|
|
|
@@ -328,6 +352,12 @@ module Google
|
|
|
328
352
|
include Google::Apis::Core::JsonObjectSupport
|
|
329
353
|
end
|
|
330
354
|
|
|
355
|
+
class Projects
|
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
|
+
|
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
359
|
+
end
|
|
360
|
+
|
|
331
361
|
class ProviderOAuthConfig
|
|
332
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
333
363
|
|
|
@@ -346,6 +376,12 @@ module Google
|
|
|
346
376
|
include Google::Apis::Core::JsonObjectSupport
|
|
347
377
|
end
|
|
348
378
|
|
|
379
|
+
class StartOAuthResponse
|
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
381
|
+
|
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
383
|
+
end
|
|
384
|
+
|
|
349
385
|
class Status
|
|
350
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
387
|
|
|
@@ -408,6 +444,19 @@ module Google
|
|
|
408
444
|
end
|
|
409
445
|
end
|
|
410
446
|
|
|
447
|
+
class ArtifactDeployment
|
|
448
|
+
# @private
|
|
449
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
450
|
+
property :artifact_alias, as: 'artifactAlias'
|
|
451
|
+
property :artifact_reference, as: 'artifactReference'
|
|
452
|
+
property :container_status_summary, as: 'containerStatusSummary'
|
|
453
|
+
property :deploy_time, as: 'deployTime'
|
|
454
|
+
property :id, as: 'id'
|
|
455
|
+
collection :source_commit_uris, as: 'sourceCommitUris'
|
|
456
|
+
property :undeploy_time, as: 'undeployTime'
|
|
457
|
+
end
|
|
458
|
+
end
|
|
459
|
+
|
|
411
460
|
class BitbucketCloudConfig
|
|
412
461
|
# @private
|
|
413
462
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -483,6 +532,23 @@ module Google
|
|
|
483
532
|
end
|
|
484
533
|
end
|
|
485
534
|
|
|
535
|
+
class DeploymentEvent
|
|
536
|
+
# @private
|
|
537
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
538
|
+
collection :artifact_deployments, as: 'artifactDeployments', class: Google::Apis::DeveloperconnectV1::ArtifactDeployment, decorator: Google::Apis::DeveloperconnectV1::ArtifactDeployment::Representation
|
|
539
|
+
|
|
540
|
+
property :create_time, as: 'createTime'
|
|
541
|
+
property :deploy_time, as: 'deployTime'
|
|
542
|
+
property :name, as: 'name'
|
|
543
|
+
property :runtime_config, as: 'runtimeConfig', class: Google::Apis::DeveloperconnectV1::RuntimeConfig, decorator: Google::Apis::DeveloperconnectV1::RuntimeConfig::Representation
|
|
544
|
+
|
|
545
|
+
property :runtime_deployment_uri, as: 'runtimeDeploymentUri'
|
|
546
|
+
property :state, as: 'state'
|
|
547
|
+
property :undeploy_time, as: 'undeployTime'
|
|
548
|
+
property :update_time, as: 'updateTime'
|
|
549
|
+
end
|
|
550
|
+
end
|
|
551
|
+
|
|
486
552
|
class Empty
|
|
487
553
|
# @private
|
|
488
554
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -569,6 +635,14 @@ module Google
|
|
|
569
635
|
end
|
|
570
636
|
end
|
|
571
637
|
|
|
638
|
+
class FinishOAuthResponse
|
|
639
|
+
# @private
|
|
640
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
641
|
+
property :exchange_error, as: 'exchangeError', class: Google::Apis::DeveloperconnectV1::ExchangeError, decorator: Google::Apis::DeveloperconnectV1::ExchangeError::Representation
|
|
642
|
+
|
|
643
|
+
end
|
|
644
|
+
end
|
|
645
|
+
|
|
572
646
|
class GkeWorkload
|
|
573
647
|
# @private
|
|
574
648
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -636,6 +710,7 @@ module Google
|
|
|
636
710
|
# @private
|
|
637
711
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
638
712
|
property :enabled, as: 'enabled'
|
|
713
|
+
property :http_proxy_base_uri, as: 'httpProxyBaseUri'
|
|
639
714
|
end
|
|
640
715
|
end
|
|
641
716
|
|
|
@@ -700,6 +775,8 @@ module Google
|
|
|
700
775
|
|
|
701
776
|
hash :labels, as: 'labels'
|
|
702
777
|
property :name, as: 'name'
|
|
778
|
+
property :projects, as: 'projects', class: Google::Apis::DeveloperconnectV1::Projects, decorator: Google::Apis::DeveloperconnectV1::Projects::Representation
|
|
779
|
+
|
|
703
780
|
property :reconciling, as: 'reconciling'
|
|
704
781
|
collection :runtime_configs, as: 'runtimeConfigs', class: Google::Apis::DeveloperconnectV1::RuntimeConfig, decorator: Google::Apis::DeveloperconnectV1::RuntimeConfig::Representation
|
|
705
782
|
|
|
@@ -753,6 +830,15 @@ module Google
|
|
|
753
830
|
end
|
|
754
831
|
end
|
|
755
832
|
|
|
833
|
+
class ListDeploymentEventsResponse
|
|
834
|
+
# @private
|
|
835
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
836
|
+
collection :deployment_events, as: 'deploymentEvents', class: Google::Apis::DeveloperconnectV1::DeploymentEvent, decorator: Google::Apis::DeveloperconnectV1::DeploymentEvent::Representation
|
|
837
|
+
|
|
838
|
+
property :next_page_token, as: 'nextPageToken'
|
|
839
|
+
end
|
|
840
|
+
end
|
|
841
|
+
|
|
756
842
|
class ListGitRepositoryLinksResponse
|
|
757
843
|
# @private
|
|
758
844
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -886,6 +972,13 @@ module Google
|
|
|
886
972
|
end
|
|
887
973
|
end
|
|
888
974
|
|
|
975
|
+
class Projects
|
|
976
|
+
# @private
|
|
977
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
978
|
+
collection :project_ids, as: 'projectIds'
|
|
979
|
+
end
|
|
980
|
+
end
|
|
981
|
+
|
|
889
982
|
class ProviderOAuthConfig
|
|
890
983
|
# @private
|
|
891
984
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -917,6 +1010,19 @@ module Google
|
|
|
917
1010
|
end
|
|
918
1011
|
end
|
|
919
1012
|
|
|
1013
|
+
class StartOAuthResponse
|
|
1014
|
+
# @private
|
|
1015
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1016
|
+
property :auth_uri, as: 'authUri'
|
|
1017
|
+
property :client_id, as: 'clientId'
|
|
1018
|
+
property :code_challenge, as: 'codeChallenge'
|
|
1019
|
+
property :code_challenge_method, as: 'codeChallengeMethod'
|
|
1020
|
+
collection :scopes, as: 'scopes'
|
|
1021
|
+
property :system_provider_id, as: 'systemProviderId'
|
|
1022
|
+
property :ticket, as: 'ticket'
|
|
1023
|
+
end
|
|
1024
|
+
end
|
|
1025
|
+
|
|
920
1026
|
class Status
|
|
921
1027
|
# @private
|
|
922
1028
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -512,6 +512,54 @@ module Google
|
|
|
512
512
|
execute_or_queue_command(command, &block)
|
|
513
513
|
end
|
|
514
514
|
|
|
515
|
+
# Finishes OAuth flow for an account connector.
|
|
516
|
+
# @param [String] account_connector
|
|
517
|
+
# Required. The resource name of the AccountConnector in the format `projects/*/
|
|
518
|
+
# locations/*/accountConnectors/*`.
|
|
519
|
+
# @param [Array<String>, String] google_oauth_params_scopes
|
|
520
|
+
# Required. The scopes returned by Google OAuth flow.
|
|
521
|
+
# @param [String] google_oauth_params_ticket
|
|
522
|
+
# Required. The ticket to be used for post processing the callback from Google
|
|
523
|
+
# OAuth flow.
|
|
524
|
+
# @param [String] google_oauth_params_version_info
|
|
525
|
+
# Optional. The version info returned by Google OAuth flow.
|
|
526
|
+
# @param [String] oauth_params_code
|
|
527
|
+
# Required. The code to be used for getting the token from SCM provider.
|
|
528
|
+
# @param [String] oauth_params_ticket
|
|
529
|
+
# Required. The ticket to be used for post processing the callback from SCM
|
|
530
|
+
# provider.
|
|
531
|
+
# @param [String] fields
|
|
532
|
+
# Selector specifying which fields to include in a partial response.
|
|
533
|
+
# @param [String] quota_user
|
|
534
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
535
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
536
|
+
# @param [Google::Apis::RequestOptions] options
|
|
537
|
+
# Request-specific options
|
|
538
|
+
#
|
|
539
|
+
# @yield [result, err] Result & error if block supplied
|
|
540
|
+
# @yieldparam result [Google::Apis::DeveloperconnectV1::FinishOAuthResponse] parsed result object
|
|
541
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
542
|
+
#
|
|
543
|
+
# @return [Google::Apis::DeveloperconnectV1::FinishOAuthResponse]
|
|
544
|
+
#
|
|
545
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
546
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
547
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
548
|
+
def finish_project_location_account_connector_user_o_auth_flow(account_connector, google_oauth_params_scopes: nil, google_oauth_params_ticket: nil, google_oauth_params_version_info: nil, oauth_params_code: nil, oauth_params_ticket: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
549
|
+
command = make_simple_command(:get, 'v1/{+accountConnector}/users:finishOAuthFlow', options)
|
|
550
|
+
command.response_representation = Google::Apis::DeveloperconnectV1::FinishOAuthResponse::Representation
|
|
551
|
+
command.response_class = Google::Apis::DeveloperconnectV1::FinishOAuthResponse
|
|
552
|
+
command.params['accountConnector'] = account_connector unless account_connector.nil?
|
|
553
|
+
command.query['googleOauthParams.scopes'] = google_oauth_params_scopes unless google_oauth_params_scopes.nil?
|
|
554
|
+
command.query['googleOauthParams.ticket'] = google_oauth_params_ticket unless google_oauth_params_ticket.nil?
|
|
555
|
+
command.query['googleOauthParams.versionInfo'] = google_oauth_params_version_info unless google_oauth_params_version_info.nil?
|
|
556
|
+
command.query['oauthParams.code'] = oauth_params_code unless oauth_params_code.nil?
|
|
557
|
+
command.query['oauthParams.ticket'] = oauth_params_ticket unless oauth_params_ticket.nil?
|
|
558
|
+
command.query['fields'] = fields unless fields.nil?
|
|
559
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
560
|
+
execute_or_queue_command(command, &block)
|
|
561
|
+
end
|
|
562
|
+
|
|
515
563
|
# Lists Users in a given project, location, and account_connector.
|
|
516
564
|
# @param [String] parent
|
|
517
565
|
# Required. Parent value for ListUsersRequest
|
|
@@ -555,6 +603,37 @@ module Google
|
|
|
555
603
|
execute_or_queue_command(command, &block)
|
|
556
604
|
end
|
|
557
605
|
|
|
606
|
+
# Starts OAuth flow for an account connector.
|
|
607
|
+
# @param [String] account_connector
|
|
608
|
+
# Required. The resource name of the AccountConnector in the format `projects/*/
|
|
609
|
+
# locations/*/accountConnectors/*`.
|
|
610
|
+
# @param [String] fields
|
|
611
|
+
# Selector specifying which fields to include in a partial response.
|
|
612
|
+
# @param [String] quota_user
|
|
613
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
614
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
615
|
+
# @param [Google::Apis::RequestOptions] options
|
|
616
|
+
# Request-specific options
|
|
617
|
+
#
|
|
618
|
+
# @yield [result, err] Result & error if block supplied
|
|
619
|
+
# @yieldparam result [Google::Apis::DeveloperconnectV1::StartOAuthResponse] parsed result object
|
|
620
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
621
|
+
#
|
|
622
|
+
# @return [Google::Apis::DeveloperconnectV1::StartOAuthResponse]
|
|
623
|
+
#
|
|
624
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
625
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
626
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
627
|
+
def start_project_location_account_connector_user_o_auth_flow(account_connector, fields: nil, quota_user: nil, options: nil, &block)
|
|
628
|
+
command = make_simple_command(:get, 'v1/{+accountConnector}/users:startOAuthFlow', options)
|
|
629
|
+
command.response_representation = Google::Apis::DeveloperconnectV1::StartOAuthResponse::Representation
|
|
630
|
+
command.response_class = Google::Apis::DeveloperconnectV1::StartOAuthResponse
|
|
631
|
+
command.params['accountConnector'] = account_connector unless account_connector.nil?
|
|
632
|
+
command.query['fields'] = fields unless fields.nil?
|
|
633
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
634
|
+
execute_or_queue_command(command, &block)
|
|
635
|
+
end
|
|
636
|
+
|
|
558
637
|
# Creates a new Connection in a given project and location.
|
|
559
638
|
# @param [String] parent
|
|
560
639
|
# Required. Value for parent.
|
|
@@ -1548,6 +1627,86 @@ module Google
|
|
|
1548
1627
|
execute_or_queue_command(command, &block)
|
|
1549
1628
|
end
|
|
1550
1629
|
|
|
1630
|
+
# Gets a single Deployment Event.
|
|
1631
|
+
# @param [String] name
|
|
1632
|
+
# Required. The name of the deployment event to retrieve. Format: projects/`
|
|
1633
|
+
# project`/locations/`location`/insightsConfigs/`insights_config`/
|
|
1634
|
+
# deploymentEvents/`uuid`
|
|
1635
|
+
# @param [String] fields
|
|
1636
|
+
# Selector specifying which fields to include in a partial response.
|
|
1637
|
+
# @param [String] quota_user
|
|
1638
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1639
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1640
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1641
|
+
# Request-specific options
|
|
1642
|
+
#
|
|
1643
|
+
# @yield [result, err] Result & error if block supplied
|
|
1644
|
+
# @yieldparam result [Google::Apis::DeveloperconnectV1::DeploymentEvent] parsed result object
|
|
1645
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1646
|
+
#
|
|
1647
|
+
# @return [Google::Apis::DeveloperconnectV1::DeploymentEvent]
|
|
1648
|
+
#
|
|
1649
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1650
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1651
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1652
|
+
def get_project_location_insights_config_deployment_event(name, fields: nil, quota_user: nil, options: nil, &block)
|
|
1653
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
|
1654
|
+
command.response_representation = Google::Apis::DeveloperconnectV1::DeploymentEvent::Representation
|
|
1655
|
+
command.response_class = Google::Apis::DeveloperconnectV1::DeploymentEvent
|
|
1656
|
+
command.params['name'] = name unless name.nil?
|
|
1657
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1658
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1659
|
+
execute_or_queue_command(command, &block)
|
|
1660
|
+
end
|
|
1661
|
+
|
|
1662
|
+
# Lists Deployment Events in a given insights config.
|
|
1663
|
+
# @param [String] parent
|
|
1664
|
+
# Required. The parent insights config that owns this collection of deployment
|
|
1665
|
+
# events. Format: projects/`project`/locations/`location`/insightsConfigs/`
|
|
1666
|
+
# insights_config`
|
|
1667
|
+
# @param [String] filter
|
|
1668
|
+
# Optional. Filter expression that matches a subset of the DeploymentEvents.
|
|
1669
|
+
# https://google.aip.dev/160.
|
|
1670
|
+
# @param [Fixnum] page_size
|
|
1671
|
+
# Optional. The maximum number of deployment events to return. The service may
|
|
1672
|
+
# return fewer than this value. If unspecified, at most 50 deployment events
|
|
1673
|
+
# will be returned. The maximum value is 1000; values above 1000 will be coerced
|
|
1674
|
+
# to 1000.
|
|
1675
|
+
# @param [String] page_token
|
|
1676
|
+
# Optional. A page token, received from a previous `ListDeploymentEvents` call.
|
|
1677
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
|
1678
|
+
# parameters provided to `ListDeploymentEvents` must match the call that
|
|
1679
|
+
# provided the page token.
|
|
1680
|
+
# @param [String] fields
|
|
1681
|
+
# Selector specifying which fields to include in a partial response.
|
|
1682
|
+
# @param [String] quota_user
|
|
1683
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
1684
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
1685
|
+
# @param [Google::Apis::RequestOptions] options
|
|
1686
|
+
# Request-specific options
|
|
1687
|
+
#
|
|
1688
|
+
# @yield [result, err] Result & error if block supplied
|
|
1689
|
+
# @yieldparam result [Google::Apis::DeveloperconnectV1::ListDeploymentEventsResponse] parsed result object
|
|
1690
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
1691
|
+
#
|
|
1692
|
+
# @return [Google::Apis::DeveloperconnectV1::ListDeploymentEventsResponse]
|
|
1693
|
+
#
|
|
1694
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1695
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1696
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1697
|
+
def list_project_location_insights_config_deployment_events(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1698
|
+
command = make_simple_command(:get, 'v1/{+parent}/deploymentEvents', options)
|
|
1699
|
+
command.response_representation = Google::Apis::DeveloperconnectV1::ListDeploymentEventsResponse::Representation
|
|
1700
|
+
command.response_class = Google::Apis::DeveloperconnectV1::ListDeploymentEventsResponse
|
|
1701
|
+
command.params['parent'] = parent unless parent.nil?
|
|
1702
|
+
command.query['filter'] = filter unless filter.nil?
|
|
1703
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1704
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1705
|
+
command.query['fields'] = fields unless fields.nil?
|
|
1706
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1707
|
+
execute_or_queue_command(command, &block)
|
|
1708
|
+
end
|
|
1709
|
+
|
|
1551
1710
|
# Starts asynchronous cancellation on a long-running operation. The server makes
|
|
1552
1711
|
# a best effort to cancel the operation, but success is not guaranteed. If the
|
|
1553
1712
|
# server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-developerconnect_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.20.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-developerconnect_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-developerconnect_v1/v0.20.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-developerconnect_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|