google-apis-run_v1 0.27.0 → 0.30.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/google/apis/run_v1/classes.rb +43 -36
- data/lib/google/apis/run_v1/gem_version.rb +3 -3
- data/lib/google/apis/run_v1/representations.rb +17 -16
- data/lib/google/apis/run_v1/service.rb +34 -36
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b5932cf4bbcc4564ac41c02de8bd9d546d8a226a0e69e7544b334dd9a87951a
|
4
|
+
data.tar.gz: df6e130101122714e218c56126b895c01931c55be893b538ce3291cd14273653
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3242d76147fec723a258f99ba01702df3e7db301ef2519d328fe6d25261d79c3740e500b3b98f9f9632e4e0726ca7c31ad175d225faf7617d03df1d1af8bf952
|
7
|
+
data.tar.gz: 8ca244ce580a98264e5d02e3abceeb89cda18bce15b52940490293bed01984f6be9ebb423589e3dfc26d3a00de6f39e937ef7a14fce001c908a7144188ecfa0b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-run_v1
|
2
2
|
|
3
|
+
### v0.30.0 (2022-06-08)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220603
|
6
|
+
* Regenerated using generator version 0.5.0
|
7
|
+
|
8
|
+
### v0.29.0 (2022-05-12)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20220506
|
11
|
+
|
12
|
+
### v0.28.0 (2022-05-04)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220429
|
15
|
+
|
3
16
|
### v0.27.0 (2022-04-27)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20220422
|
@@ -54,8 +54,8 @@ module Google
|
|
54
54
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
55
55
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
56
56
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
57
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
58
|
-
# DATA_WRITE logging.
|
57
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
58
|
+
# from DATA_WRITE logging.
|
59
59
|
class AuditConfig
|
60
60
|
include Google::Apis::Core::Hashable
|
61
61
|
|
@@ -653,32 +653,6 @@ module Google
|
|
653
653
|
end
|
654
654
|
end
|
655
655
|
|
656
|
-
# ContainerStatus holds the information of container name and image digest value.
|
657
|
-
class ContainerStatus
|
658
|
-
include Google::Apis::Core::Hashable
|
659
|
-
|
660
|
-
# ImageDigest holds the resolved digest for the image specified, regardless of
|
661
|
-
# whether a tag or digest was originally specified in the Container object.
|
662
|
-
# Corresponds to the JSON property `imageDigest`
|
663
|
-
# @return [String]
|
664
|
-
attr_accessor :image_digest
|
665
|
-
|
666
|
-
# The name of the container, if specified.
|
667
|
-
# Corresponds to the JSON property `name`
|
668
|
-
# @return [String]
|
669
|
-
attr_accessor :name
|
670
|
-
|
671
|
-
def initialize(**args)
|
672
|
-
update!(**args)
|
673
|
-
end
|
674
|
-
|
675
|
-
# Update properties of this object
|
676
|
-
def update!(**args)
|
677
|
-
@image_digest = args[:image_digest] if args.key?(:image_digest)
|
678
|
-
@name = args[:name] if args.key?(:name)
|
679
|
-
end
|
680
|
-
end
|
681
|
-
|
682
656
|
# Resource to hold the state and status of a user's domain mapping. NOTE: This
|
683
657
|
# resource is currently in Beta.
|
684
658
|
class DomainMapping
|
@@ -990,6 +964,11 @@ module Google
|
|
990
964
|
class ExecutionReference
|
991
965
|
include Google::Apis::Core::Hashable
|
992
966
|
|
967
|
+
# Optional. Completion timestamp of the execution.
|
968
|
+
# Corresponds to the JSON property `completionTimestamp`
|
969
|
+
# @return [String]
|
970
|
+
attr_accessor :completion_timestamp
|
971
|
+
|
993
972
|
# Optional. Creation timestamp of the execution.
|
994
973
|
# Corresponds to the JSON property `creationTimestamp`
|
995
974
|
# @return [String]
|
@@ -1006,6 +985,7 @@ module Google
|
|
1006
985
|
|
1007
986
|
# Update properties of this object
|
1008
987
|
def update!(**args)
|
988
|
+
@completion_timestamp = args[:completion_timestamp] if args.key?(:completion_timestamp)
|
1009
989
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
1010
990
|
@name = args[:name] if args.key?(:name)
|
1011
991
|
end
|
@@ -1213,6 +1193,34 @@ module Google
|
|
1213
1193
|
end
|
1214
1194
|
end
|
1215
1195
|
|
1196
|
+
# Not supported by Cloud Run GRPCAction describes an action involving a GRPC
|
1197
|
+
# port.
|
1198
|
+
class GrpcAction
|
1199
|
+
include Google::Apis::Core::Hashable
|
1200
|
+
|
1201
|
+
# Port number of the gRPC service. Number must be in the range 1 to 65535.
|
1202
|
+
# Corresponds to the JSON property `port`
|
1203
|
+
# @return [Fixnum]
|
1204
|
+
attr_accessor :port
|
1205
|
+
|
1206
|
+
# Service is the name of the service to place in the gRPC HealthCheckRequest (
|
1207
|
+
# see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). If this
|
1208
|
+
# is not specified, the default behavior is defined by gRPC.
|
1209
|
+
# Corresponds to the JSON property `service`
|
1210
|
+
# @return [String]
|
1211
|
+
attr_accessor :service
|
1212
|
+
|
1213
|
+
def initialize(**args)
|
1214
|
+
update!(**args)
|
1215
|
+
end
|
1216
|
+
|
1217
|
+
# Update properties of this object
|
1218
|
+
def update!(**args)
|
1219
|
+
@port = args[:port] if args.key?(:port)
|
1220
|
+
@service = args[:service] if args.key?(:service)
|
1221
|
+
end
|
1222
|
+
end
|
1223
|
+
|
1216
1224
|
# Condition defines a generic condition for a Resource.
|
1217
1225
|
class GoogleCloudRunV1Condition
|
1218
1226
|
include Google::Apis::Core::Hashable
|
@@ -1453,13 +1461,6 @@ module Google
|
|
1453
1461
|
# @return [Array<Google::Apis::RunV1::GoogleCloudRunV1Condition>]
|
1454
1462
|
attr_accessor :conditions
|
1455
1463
|
|
1456
|
-
# Status information for each of the specified containers. The status includes
|
1457
|
-
# the resolved digest for specified images, which occurs during creation of the
|
1458
|
-
# job.
|
1459
|
-
# Corresponds to the JSON property `containerStatuses`
|
1460
|
-
# @return [Array<Google::Apis::RunV1::ContainerStatus>]
|
1461
|
-
attr_accessor :container_statuses
|
1462
|
-
|
1463
1464
|
# Number of executions created for this job.
|
1464
1465
|
# Corresponds to the JSON property `executionCount`
|
1465
1466
|
# @return [Fixnum]
|
@@ -1483,7 +1484,6 @@ module Google
|
|
1483
1484
|
# Update properties of this object
|
1484
1485
|
def update!(**args)
|
1485
1486
|
@conditions = args[:conditions] if args.key?(:conditions)
|
1486
|
-
@container_statuses = args[:container_statuses] if args.key?(:container_statuses)
|
1487
1487
|
@execution_count = args[:execution_count] if args.key?(:execution_count)
|
1488
1488
|
@latest_created_execution = args[:latest_created_execution] if args.key?(:latest_created_execution)
|
1489
1489
|
@observed_generation = args[:observed_generation] if args.key?(:observed_generation)
|
@@ -2403,6 +2403,12 @@ module Google
|
|
2403
2403
|
# @return [Fixnum]
|
2404
2404
|
attr_accessor :failure_threshold
|
2405
2405
|
|
2406
|
+
# Not supported by Cloud Run GRPCAction describes an action involving a GRPC
|
2407
|
+
# port.
|
2408
|
+
# Corresponds to the JSON property `grpc`
|
2409
|
+
# @return [Google::Apis::RunV1::GrpcAction]
|
2410
|
+
attr_accessor :grpc
|
2411
|
+
|
2406
2412
|
# Not supported by Cloud Run HTTPGetAction describes an action based on HTTP Get
|
2407
2413
|
# requests.
|
2408
2414
|
# Corresponds to the JSON property `httpGet`
|
@@ -2453,6 +2459,7 @@ module Google
|
|
2453
2459
|
def update!(**args)
|
2454
2460
|
@exec = args[:exec] if args.key?(:exec)
|
2455
2461
|
@failure_threshold = args[:failure_threshold] if args.key?(:failure_threshold)
|
2462
|
+
@grpc = args[:grpc] if args.key?(:grpc)
|
2456
2463
|
@http_get = args[:http_get] if args.key?(:http_get)
|
2457
2464
|
@initial_delay_seconds = args[:initial_delay_seconds] if args.key?(:initial_delay_seconds)
|
2458
2465
|
@period_seconds = args[:period_seconds] if args.key?(:period_seconds)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module RunV1
|
18
18
|
# Version of the google-apis-run_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220603"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -100,12 +100,6 @@ module Google
|
|
100
100
|
include Google::Apis::Core::JsonObjectSupport
|
101
101
|
end
|
102
102
|
|
103
|
-
class ContainerStatus
|
104
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
-
|
106
|
-
include Google::Apis::Core::JsonObjectSupport
|
107
|
-
end
|
108
|
-
|
109
103
|
class DomainMapping
|
110
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
111
105
|
|
@@ -184,6 +178,12 @@ module Google
|
|
184
178
|
include Google::Apis::Core::JsonObjectSupport
|
185
179
|
end
|
186
180
|
|
181
|
+
class GrpcAction
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
187
187
|
class GoogleCloudRunV1Condition
|
188
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
189
|
|
@@ -674,14 +674,6 @@ module Google
|
|
674
674
|
end
|
675
675
|
end
|
676
676
|
|
677
|
-
class ContainerStatus
|
678
|
-
# @private
|
679
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
680
|
-
property :image_digest, as: 'imageDigest'
|
681
|
-
property :name, as: 'name'
|
682
|
-
end
|
683
|
-
end
|
684
|
-
|
685
677
|
class DomainMapping
|
686
678
|
# @private
|
687
679
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -773,6 +765,7 @@ module Google
|
|
773
765
|
class ExecutionReference
|
774
766
|
# @private
|
775
767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
768
|
+
property :completion_timestamp, as: 'completionTimestamp'
|
776
769
|
property :creation_timestamp, as: 'creationTimestamp'
|
777
770
|
property :name, as: 'name'
|
778
771
|
end
|
@@ -825,6 +818,14 @@ module Google
|
|
825
818
|
end
|
826
819
|
end
|
827
820
|
|
821
|
+
class GrpcAction
|
822
|
+
# @private
|
823
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
824
|
+
property :port, as: 'port'
|
825
|
+
property :service, as: 'service'
|
826
|
+
end
|
827
|
+
end
|
828
|
+
|
828
829
|
class GoogleCloudRunV1Condition
|
829
830
|
# @private
|
830
831
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -892,8 +893,6 @@ module Google
|
|
892
893
|
class Representation < Google::Apis::Core::JsonRepresentation
|
893
894
|
collection :conditions, as: 'conditions', class: Google::Apis::RunV1::GoogleCloudRunV1Condition, decorator: Google::Apis::RunV1::GoogleCloudRunV1Condition::Representation
|
894
895
|
|
895
|
-
collection :container_statuses, as: 'containerStatuses', class: Google::Apis::RunV1::ContainerStatus, decorator: Google::Apis::RunV1::ContainerStatus::Representation
|
896
|
-
|
897
896
|
property :execution_count, as: 'executionCount'
|
898
897
|
property :latest_created_execution, as: 'latestCreatedExecution', class: Google::Apis::RunV1::ExecutionReference, decorator: Google::Apis::RunV1::ExecutionReference::Representation
|
899
898
|
|
@@ -1111,6 +1110,8 @@ module Google
|
|
1111
1110
|
property :exec, as: 'exec', class: Google::Apis::RunV1::ExecAction, decorator: Google::Apis::RunV1::ExecAction::Representation
|
1112
1111
|
|
1113
1112
|
property :failure_threshold, as: 'failureThreshold'
|
1113
|
+
property :grpc, as: 'grpc', class: Google::Apis::RunV1::GrpcAction, decorator: Google::Apis::RunV1::GrpcAction::Representation
|
1114
|
+
|
1114
1115
|
property :http_get, as: 'httpGet', class: Google::Apis::RunV1::HttpGetAction, decorator: Google::Apis::RunV1::HttpGetAction::Representation
|
1115
1116
|
|
1116
1117
|
property :initial_delay_seconds, as: 'initialDelaySeconds'
|
@@ -955,15 +955,13 @@ module Google
|
|
955
955
|
|
956
956
|
# Create a service.
|
957
957
|
# @param [String] parent
|
958
|
-
#
|
959
|
-
#
|
960
|
-
#
|
958
|
+
# The namespace in which the service should be created. For Cloud Run (fully
|
959
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
960
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
961
961
|
# @param [Google::Apis::RunV1::Service] service_object
|
962
962
|
# @param [String] dry_run
|
963
963
|
# Indicates that the server should validate the request and populate default
|
964
|
-
# values without persisting the request. Supported values: `all`
|
965
|
-
# //depot/google3/google/cloud/serverless/internal/internal_service.proto:
|
966
|
-
# create_internal_service_request)
|
964
|
+
# values without persisting the request. Supported values: `all`
|
967
965
|
# @param [String] fields
|
968
966
|
# Selector specifying which fields to include in a partial response.
|
969
967
|
# @param [String] quota_user
|
@@ -1137,15 +1135,13 @@ module Google
|
|
1137
1135
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
1138
1136
|
# update from last read for optimistic concurrency control.
|
1139
1137
|
# @param [String] name
|
1140
|
-
#
|
1141
|
-
#
|
1142
|
-
#
|
1138
|
+
# The name of the service being replaced. For Cloud Run (fully managed), replace
|
1139
|
+
# `namespace` with the project ID or number. It takes the form namespaces/`
|
1140
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
1143
1141
|
# @param [Google::Apis::RunV1::Service] service_object
|
1144
1142
|
# @param [String] dry_run
|
1145
1143
|
# Indicates that the server should validate the request and populate default
|
1146
|
-
# values without persisting the request. Supported values: `all`
|
1147
|
-
# //depot/google3/google/cloud/serverless/internal/internal_service.proto:
|
1148
|
-
# replace_internal_service_request)
|
1144
|
+
# values without persisting the request. Supported values: `all`
|
1149
1145
|
# @param [String] fields
|
1150
1146
|
# Selector specifying which fields to include in a partial response.
|
1151
1147
|
# @param [String] quota_user
|
@@ -1648,8 +1644,9 @@ module Google
|
|
1648
1644
|
# Get the IAM Access Control policy currently in effect for the given job. This
|
1649
1645
|
# result does not include any inherited policies.
|
1650
1646
|
# @param [String] resource
|
1651
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
1652
|
-
#
|
1647
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
1648
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1649
|
+
# appropriate value for this field.
|
1653
1650
|
# @param [Fixnum] options_requested_policy_version
|
1654
1651
|
# Optional. The maximum policy version that will be used to format the policy.
|
1655
1652
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -1692,8 +1689,9 @@ module Google
|
|
1692
1689
|
# Sets the IAM Access control policy for the specified job. Overwrites any
|
1693
1690
|
# existing policy.
|
1694
1691
|
# @param [String] resource
|
1695
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
1696
|
-
#
|
1692
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
1693
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
1694
|
+
# appropriate value for this field.
|
1697
1695
|
# @param [Google::Apis::RunV1::SetIamPolicyRequest] set_iam_policy_request_object
|
1698
1696
|
# @param [String] fields
|
1699
1697
|
# Selector specifying which fields to include in a partial response.
|
@@ -1727,8 +1725,9 @@ module Google
|
|
1727
1725
|
# Returns permissions that a caller has on the specified job. There are no
|
1728
1726
|
# permissions required for making this API call.
|
1729
1727
|
# @param [String] resource
|
1730
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
1731
|
-
#
|
1728
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
1729
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
1730
|
+
# appropriate value for this field.
|
1732
1731
|
# @param [Google::Apis::RunV1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
1733
1732
|
# @param [String] fields
|
1734
1733
|
# Selector specifying which fields to include in a partial response.
|
@@ -1988,15 +1987,13 @@ module Google
|
|
1988
1987
|
|
1989
1988
|
# Create a service.
|
1990
1989
|
# @param [String] parent
|
1991
|
-
#
|
1992
|
-
#
|
1993
|
-
#
|
1990
|
+
# The namespace in which the service should be created. For Cloud Run (fully
|
1991
|
+
# managed), replace `namespace` with the project ID or number. It takes the form
|
1992
|
+
# namespaces/`namespace`. For example: namespaces/PROJECT_ID
|
1994
1993
|
# @param [Google::Apis::RunV1::Service] service_object
|
1995
1994
|
# @param [String] dry_run
|
1996
1995
|
# Indicates that the server should validate the request and populate default
|
1997
|
-
# values without persisting the request. Supported values: `all`
|
1998
|
-
# //depot/google3/google/cloud/serverless/internal/internal_service.proto:
|
1999
|
-
# create_internal_service_request)
|
1996
|
+
# values without persisting the request. Supported values: `all`
|
2000
1997
|
# @param [String] fields
|
2001
1998
|
# Selector specifying which fields to include in a partial response.
|
2002
1999
|
# @param [String] quota_user
|
@@ -2110,8 +2107,9 @@ module Google
|
|
2110
2107
|
# Get the IAM Access Control policy currently in effect for the given Cloud Run
|
2111
2108
|
# service. This result does not include any inherited policies.
|
2112
2109
|
# @param [String] resource
|
2113
|
-
# REQUIRED: The resource for which the policy is being requested. See
|
2114
|
-
#
|
2110
|
+
# REQUIRED: The resource for which the policy is being requested. See [Resource
|
2111
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
2112
|
+
# appropriate value for this field.
|
2115
2113
|
# @param [Fixnum] options_requested_policy_version
|
2116
2114
|
# Optional. The maximum policy version that will be used to format the policy.
|
2117
2115
|
# Valid values are 0, 1, and 3. Requests specifying an invalid value will be
|
@@ -2214,15 +2212,13 @@ module Google
|
|
2214
2212
|
# match the requested 'spec'. May provide metadata.resourceVersion to enforce
|
2215
2213
|
# update from last read for optimistic concurrency control.
|
2216
2214
|
# @param [String] name
|
2217
|
-
#
|
2218
|
-
#
|
2219
|
-
#
|
2215
|
+
# The name of the service being replaced. For Cloud Run (fully managed), replace
|
2216
|
+
# `namespace` with the project ID or number. It takes the form namespaces/`
|
2217
|
+
# namespace`. For example: namespaces/PROJECT_ID
|
2220
2218
|
# @param [Google::Apis::RunV1::Service] service_object
|
2221
2219
|
# @param [String] dry_run
|
2222
2220
|
# Indicates that the server should validate the request and populate default
|
2223
|
-
# values without persisting the request. Supported values: `all`
|
2224
|
-
# //depot/google3/google/cloud/serverless/internal/internal_service.proto:
|
2225
|
-
# replace_internal_service_request)
|
2221
|
+
# values without persisting the request. Supported values: `all`
|
2226
2222
|
# @param [String] fields
|
2227
2223
|
# Selector specifying which fields to include in a partial response.
|
2228
2224
|
# @param [String] quota_user
|
@@ -2256,8 +2252,9 @@ module Google
|
|
2256
2252
|
# Sets the IAM Access control policy for the specified Service. Overwrites any
|
2257
2253
|
# existing policy.
|
2258
2254
|
# @param [String] resource
|
2259
|
-
# REQUIRED: The resource for which the policy is being specified. See
|
2260
|
-
#
|
2255
|
+
# REQUIRED: The resource for which the policy is being specified. See [Resource
|
2256
|
+
# names](https://cloud.google.com/apis/design/resource_names) for the
|
2257
|
+
# appropriate value for this field.
|
2261
2258
|
# @param [Google::Apis::RunV1::SetIamPolicyRequest] set_iam_policy_request_object
|
2262
2259
|
# @param [String] fields
|
2263
2260
|
# Selector specifying which fields to include in a partial response.
|
@@ -2291,8 +2288,9 @@ module Google
|
|
2291
2288
|
# Returns permissions that a caller has on the specified Project. There are no
|
2292
2289
|
# permissions required for making this API call.
|
2293
2290
|
# @param [String] resource
|
2294
|
-
# REQUIRED: The resource for which the policy detail is being requested. See
|
2295
|
-
#
|
2291
|
+
# REQUIRED: The resource for which the policy detail is being requested. See [
|
2292
|
+
# Resource names](https://cloud.google.com/apis/design/resource_names) for the
|
2293
|
+
# appropriate value for this field.
|
2296
2294
|
# @param [Google::Apis::RunV1::TestIamPermissionsRequest] test_iam_permissions_request_object
|
2297
2295
|
# @param [String] fields
|
2298
2296
|
# Selector specifying which fields to include in a partial response.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-run_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.30.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Run Admin API V1
|