google-apis-appengine_v1beta 0.38.0 → 0.40.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: 1c0916b9ebefdf167fe084410e69891e3927c2b2ef5a25849d2ad1a69a43ec67
|
4
|
+
data.tar.gz: 189b9fd1ad268ceaf5689c15fab14b7def0ab5b41f7fcc798cd5ecbc6f2c835b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74cffd1395138ebd15d493282422bb5829f5b6042d96c799f63ecc19f41290a28c375690e18cc787af2897b93ebc7744834a9eb3540f27faa388507d1e7f73f2
|
7
|
+
data.tar.gz: fa41b8c4b6d9e6cf7092032fde74f9fb5a9d513c7bc6a6fbabd407f456805434bbcd6eb30db9bcc82019d6b5abbb5bc67c52ab6dea3c276605b18b3643c62730
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-appengine_v1beta
|
2
2
|
|
3
|
+
### v0.40.0 (2023-09-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230909
|
6
|
+
|
7
|
+
### v0.39.0 (2023-09-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230831
|
10
|
+
|
3
11
|
### v0.38.0 (2023-08-27)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230821
|
@@ -146,6 +146,13 @@ module Google
|
|
146
146
|
# @return [String]
|
147
147
|
attr_accessor :gcr_domain
|
148
148
|
|
149
|
+
# Additional Google Generated Customer Metadata, this field won't be provided by
|
150
|
+
# default and can be requested by setting the IncludeExtraData field in
|
151
|
+
# GetApplicationRequest
|
152
|
+
# Corresponds to the JSON property `generatedCustomerMetadata`
|
153
|
+
# @return [Hash<String,Object>]
|
154
|
+
attr_accessor :generated_customer_metadata
|
155
|
+
|
149
156
|
# Identity-Aware Proxy
|
150
157
|
# Corresponds to the JSON property `iap`
|
151
158
|
# @return [Google::Apis::AppengineV1beta::IdentityAwareProxy]
|
@@ -199,6 +206,7 @@ module Google
|
|
199
206
|
@dispatch_rules = args[:dispatch_rules] if args.key?(:dispatch_rules)
|
200
207
|
@feature_settings = args[:feature_settings] if args.key?(:feature_settings)
|
201
208
|
@gcr_domain = args[:gcr_domain] if args.key?(:gcr_domain)
|
209
|
+
@generated_customer_metadata = args[:generated_customer_metadata] if args.key?(:generated_customer_metadata)
|
202
210
|
@iap = args[:iap] if args.key?(:iap)
|
203
211
|
@id = args[:id] if args.key?(:id)
|
204
212
|
@location_id = args[:location_id] if args.key?(:location_id)
|
@@ -736,6 +744,47 @@ module Google
|
|
736
744
|
end
|
737
745
|
end
|
738
746
|
|
747
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
748
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
749
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
750
|
+
# following: A full date, with non-zero year, month, and day values. A month and
|
751
|
+
# day, with a zero year (for example, an anniversary). A year on its own, with a
|
752
|
+
# zero month and a zero day. A year and month, with a zero day (for example, a
|
753
|
+
# credit card expiration date).Related types: google.type.TimeOfDay google.type.
|
754
|
+
# DateTime google.protobuf.Timestamp
|
755
|
+
class Date
|
756
|
+
include Google::Apis::Core::Hashable
|
757
|
+
|
758
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
759
|
+
# specify a year by itself or a year and month where the day isn't significant.
|
760
|
+
# Corresponds to the JSON property `day`
|
761
|
+
# @return [Fixnum]
|
762
|
+
attr_accessor :day
|
763
|
+
|
764
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
765
|
+
# and day.
|
766
|
+
# Corresponds to the JSON property `month`
|
767
|
+
# @return [Fixnum]
|
768
|
+
attr_accessor :month
|
769
|
+
|
770
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
771
|
+
# year.
|
772
|
+
# Corresponds to the JSON property `year`
|
773
|
+
# @return [Fixnum]
|
774
|
+
attr_accessor :year
|
775
|
+
|
776
|
+
def initialize(**args)
|
777
|
+
update!(**args)
|
778
|
+
end
|
779
|
+
|
780
|
+
# Update properties of this object
|
781
|
+
def update!(**args)
|
782
|
+
@day = args[:day] if args.key?(:day)
|
783
|
+
@month = args[:month] if args.key?(:month)
|
784
|
+
@year = args[:year] if args.key?(:year)
|
785
|
+
end
|
786
|
+
end
|
787
|
+
|
739
788
|
# Request message for Instances.DebugInstance.
|
740
789
|
class DebugInstanceRequest
|
741
790
|
include Google::Apis::Core::Hashable
|
@@ -2627,6 +2676,42 @@ module Google
|
|
2627
2676
|
class Runtime
|
2628
2677
|
include Google::Apis::Core::Hashable
|
2629
2678
|
|
2679
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
2680
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
2681
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
2682
|
+
# following: A full date, with non-zero year, month, and day values. A month and
|
2683
|
+
# day, with a zero year (for example, an anniversary). A year on its own, with a
|
2684
|
+
# zero month and a zero day. A year and month, with a zero day (for example, a
|
2685
|
+
# credit card expiration date).Related types: google.type.TimeOfDay google.type.
|
2686
|
+
# DateTime google.protobuf.Timestamp
|
2687
|
+
# Corresponds to the JSON property `decommissionedDate`
|
2688
|
+
# @return [Google::Apis::AppengineV1beta::Date]
|
2689
|
+
attr_accessor :decommissioned_date
|
2690
|
+
|
2691
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
2692
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
2693
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
2694
|
+
# following: A full date, with non-zero year, month, and day values. A month and
|
2695
|
+
# day, with a zero year (for example, an anniversary). A year on its own, with a
|
2696
|
+
# zero month and a zero day. A year and month, with a zero day (for example, a
|
2697
|
+
# credit card expiration date).Related types: google.type.TimeOfDay google.type.
|
2698
|
+
# DateTime google.protobuf.Timestamp
|
2699
|
+
# Corresponds to the JSON property `deprecationDate`
|
2700
|
+
# @return [Google::Apis::AppengineV1beta::Date]
|
2701
|
+
attr_accessor :deprecation_date
|
2702
|
+
|
2703
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
2704
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
2705
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
2706
|
+
# following: A full date, with non-zero year, month, and day values. A month and
|
2707
|
+
# day, with a zero year (for example, an anniversary). A year on its own, with a
|
2708
|
+
# zero month and a zero day. A year and month, with a zero day (for example, a
|
2709
|
+
# credit card expiration date).Related types: google.type.TimeOfDay google.type.
|
2710
|
+
# DateTime google.protobuf.Timestamp
|
2711
|
+
# Corresponds to the JSON property `endOfSupportDate`
|
2712
|
+
# @return [Google::Apis::AppengineV1beta::Date]
|
2713
|
+
attr_accessor :end_of_support_date
|
2714
|
+
|
2630
2715
|
# The environment of the runtime.
|
2631
2716
|
# Corresponds to the JSON property `environment`
|
2632
2717
|
# @return [String]
|
@@ -2653,6 +2738,9 @@ module Google
|
|
2653
2738
|
|
2654
2739
|
# Update properties of this object
|
2655
2740
|
def update!(**args)
|
2741
|
+
@decommissioned_date = args[:decommissioned_date] if args.key?(:decommissioned_date)
|
2742
|
+
@deprecation_date = args[:deprecation_date] if args.key?(:deprecation_date)
|
2743
|
+
@end_of_support_date = args[:end_of_support_date] if args.key?(:end_of_support_date)
|
2656
2744
|
@environment = args[:environment] if args.key?(:environment)
|
2657
2745
|
@name = args[:name] if args.key?(:name)
|
2658
2746
|
@stage = args[:stage] if args.key?(:stage)
|
@@ -2688,6 +2776,13 @@ module Google
|
|
2688
2776
|
class Service
|
2689
2777
|
include Google::Apis::Core::Hashable
|
2690
2778
|
|
2779
|
+
# Additional Google Generated Customer Metadata, this field won't be provided by
|
2780
|
+
# default and can be requested by setting the IncludeExtraData field in
|
2781
|
+
# GetServiceRequest
|
2782
|
+
# Corresponds to the JSON property `generatedCustomerMetadata`
|
2783
|
+
# @return [Hash<String,Object>]
|
2784
|
+
attr_accessor :generated_customer_metadata
|
2785
|
+
|
2691
2786
|
# Relative name of the service within the application. Example: default.@
|
2692
2787
|
# OutputOnly
|
2693
2788
|
# Corresponds to the JSON property `id`
|
@@ -2732,6 +2827,7 @@ module Google
|
|
2732
2827
|
|
2733
2828
|
# Update properties of this object
|
2734
2829
|
def update!(**args)
|
2830
|
+
@generated_customer_metadata = args[:generated_customer_metadata] if args.key?(:generated_customer_metadata)
|
2735
2831
|
@id = args[:id] if args.key?(:id)
|
2736
2832
|
@labels = args[:labels] if args.key?(:labels)
|
2737
2833
|
@name = args[:name] if args.key?(:name)
|
@@ -3180,6 +3276,13 @@ module Google
|
|
3180
3276
|
# @return [Google::Apis::AppengineV1beta::FlexibleRuntimeSettings]
|
3181
3277
|
attr_accessor :flexible_runtime_settings
|
3182
3278
|
|
3279
|
+
# Additional Google Generated Customer Metadata, this field won't be provided by
|
3280
|
+
# default and can be requested by setting the IncludeExtraData field in
|
3281
|
+
# GetVersionRequest
|
3282
|
+
# Corresponds to the JSON property `generatedCustomerMetadata`
|
3283
|
+
# @return [Hash<String,Object>]
|
3284
|
+
attr_accessor :generated_customer_metadata
|
3285
|
+
|
3183
3286
|
# An ordered list of URL-matching patterns that should be applied to incoming
|
3184
3287
|
# requests. The first matching URL handles the request and other request
|
3185
3288
|
# handlers are not attempted.Only returned in GET requests if view=FULL is set.
|
@@ -3350,6 +3453,7 @@ module Google
|
|
3350
3453
|
@env_variables = args[:env_variables] if args.key?(:env_variables)
|
3351
3454
|
@error_handlers = args[:error_handlers] if args.key?(:error_handlers)
|
3352
3455
|
@flexible_runtime_settings = args[:flexible_runtime_settings] if args.key?(:flexible_runtime_settings)
|
3456
|
+
@generated_customer_metadata = args[:generated_customer_metadata] if args.key?(:generated_customer_metadata)
|
3353
3457
|
@handlers = args[:handlers] if args.key?(:handlers)
|
3354
3458
|
@health_check = args[:health_check] if args.key?(:health_check)
|
3355
3459
|
@id = args[:id] if args.key?(:id)
|
@@ -3419,7 +3523,7 @@ module Google
|
|
3419
3523
|
# @return [String]
|
3420
3524
|
attr_accessor :egress_setting
|
3421
3525
|
|
3422
|
-
# Full Serverless VPC Access Connector name e.g.
|
3526
|
+
# Full Serverless VPC Access Connector name e.g. projects/my-project/locations/
|
3423
3527
|
# us-central1/connectors/c1.
|
3424
3528
|
# Corresponds to the JSON property `name`
|
3425
3529
|
# @return [String]
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AppengineV1beta
|
18
18
|
# Version of the google-apis-appengine_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230909"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -130,6 +130,12 @@ module Google
|
|
130
130
|
include Google::Apis::Core::JsonObjectSupport
|
131
131
|
end
|
132
132
|
|
133
|
+
class Date
|
134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
|
+
|
136
|
+
include Google::Apis::Core::JsonObjectSupport
|
137
|
+
end
|
138
|
+
|
133
139
|
class DebugInstanceRequest
|
134
140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
135
141
|
|
@@ -534,6 +540,7 @@ module Google
|
|
534
540
|
property :feature_settings, as: 'featureSettings', class: Google::Apis::AppengineV1beta::FeatureSettings, decorator: Google::Apis::AppengineV1beta::FeatureSettings::Representation
|
535
541
|
|
536
542
|
property :gcr_domain, as: 'gcrDomain'
|
543
|
+
hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
|
537
544
|
property :iap, as: 'iap', class: Google::Apis::AppengineV1beta::IdentityAwareProxy, decorator: Google::Apis::AppengineV1beta::IdentityAwareProxy::Representation
|
538
545
|
|
539
546
|
property :id, as: 'id'
|
@@ -689,6 +696,15 @@ module Google
|
|
689
696
|
end
|
690
697
|
end
|
691
698
|
|
699
|
+
class Date
|
700
|
+
# @private
|
701
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
702
|
+
property :day, as: 'day'
|
703
|
+
property :month, as: 'month'
|
704
|
+
property :year, as: 'year'
|
705
|
+
end
|
706
|
+
end
|
707
|
+
|
692
708
|
class DebugInstanceRequest
|
693
709
|
# @private
|
694
710
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1186,6 +1202,12 @@ module Google
|
|
1186
1202
|
class Runtime
|
1187
1203
|
# @private
|
1188
1204
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1205
|
+
property :decommissioned_date, as: 'decommissionedDate', class: Google::Apis::AppengineV1beta::Date, decorator: Google::Apis::AppengineV1beta::Date::Representation
|
1206
|
+
|
1207
|
+
property :deprecation_date, as: 'deprecationDate', class: Google::Apis::AppengineV1beta::Date, decorator: Google::Apis::AppengineV1beta::Date::Representation
|
1208
|
+
|
1209
|
+
property :end_of_support_date, as: 'endOfSupportDate', class: Google::Apis::AppengineV1beta::Date, decorator: Google::Apis::AppengineV1beta::Date::Representation
|
1210
|
+
|
1189
1211
|
property :environment, as: 'environment'
|
1190
1212
|
property :name, as: 'name'
|
1191
1213
|
property :stage, as: 'stage'
|
@@ -1203,6 +1225,7 @@ module Google
|
|
1203
1225
|
class Service
|
1204
1226
|
# @private
|
1205
1227
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1228
|
+
hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
|
1206
1229
|
property :id, as: 'id'
|
1207
1230
|
hash :labels, as: 'labels'
|
1208
1231
|
property :name, as: 'name'
|
@@ -1316,6 +1339,7 @@ module Google
|
|
1316
1339
|
|
1317
1340
|
property :flexible_runtime_settings, as: 'flexibleRuntimeSettings', class: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings, decorator: Google::Apis::AppengineV1beta::FlexibleRuntimeSettings::Representation
|
1318
1341
|
|
1342
|
+
hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
|
1319
1343
|
collection :handlers, as: 'handlers', class: Google::Apis::AppengineV1beta::UrlMap, decorator: Google::Apis::AppengineV1beta::UrlMap::Representation
|
1320
1344
|
|
1321
1345
|
property :health_check, as: 'healthCheck', class: Google::Apis::AppengineV1beta::HealthCheck, decorator: Google::Apis::AppengineV1beta::HealthCheck::Representation
|
@@ -985,10 +985,6 @@ module Google
|
|
985
985
|
# apps/myapp.
|
986
986
|
# @param [String] environment
|
987
987
|
# Optional. The environment of the Application.
|
988
|
-
# @param [Fixnum] page_size
|
989
|
-
# Optional. Maximum results to return per page.
|
990
|
-
# @param [String] page_token
|
991
|
-
# Optional. Continuation token for fetching the next page of results.
|
992
988
|
# @param [String] fields
|
993
989
|
# Selector specifying which fields to include in a partial response.
|
994
990
|
# @param [String] quota_user
|
@@ -1006,14 +1002,12 @@ module Google
|
|
1006
1002
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1007
1003
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1008
1004
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1009
|
-
def list_app_runtimes(apps_id, environment: nil,
|
1005
|
+
def list_app_runtimes(apps_id, environment: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1010
1006
|
command = make_simple_command(:get, 'v1beta/apps/{appsId}/runtimes', options)
|
1011
1007
|
command.response_representation = Google::Apis::AppengineV1beta::ListRuntimesResponse::Representation
|
1012
1008
|
command.response_class = Google::Apis::AppengineV1beta::ListRuntimesResponse
|
1013
1009
|
command.params['appsId'] = apps_id unless apps_id.nil?
|
1014
1010
|
command.query['environment'] = environment unless environment.nil?
|
1015
|
-
command.query['pageSize'] = page_size unless page_size.nil?
|
1016
|
-
command.query['pageToken'] = page_token unless page_token.nil?
|
1017
1011
|
command.query['fields'] = fields unless fields.nil?
|
1018
1012
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1019
1013
|
execute_or_queue_command(command, &block)
|
@@ -1059,6 +1053,8 @@ module Google
|
|
1059
1053
|
# default.
|
1060
1054
|
# @param [String] services_id
|
1061
1055
|
# Part of `name`. See documentation of `appsId`.
|
1056
|
+
# @param [String] include_extra_data
|
1057
|
+
# Optional. Options to include extra data
|
1062
1058
|
# @param [String] fields
|
1063
1059
|
# Selector specifying which fields to include in a partial response.
|
1064
1060
|
# @param [String] quota_user
|
@@ -1076,12 +1072,13 @@ module Google
|
|
1076
1072
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1077
1073
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1078
1074
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1079
|
-
def get_app_service(apps_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
|
1075
|
+
def get_app_service(apps_id, services_id, include_extra_data: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1080
1076
|
command = make_simple_command(:get, 'v1beta/apps/{appsId}/services/{servicesId}', options)
|
1081
1077
|
command.response_representation = Google::Apis::AppengineV1beta::Service::Representation
|
1082
1078
|
command.response_class = Google::Apis::AppengineV1beta::Service
|
1083
1079
|
command.params['appsId'] = apps_id unless apps_id.nil?
|
1084
1080
|
command.params['servicesId'] = services_id unless services_id.nil?
|
1081
|
+
command.query['includeExtraData'] = include_extra_data unless include_extra_data.nil?
|
1085
1082
|
command.query['fields'] = fields unless fields.nil?
|
1086
1083
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1087
1084
|
execute_or_queue_command(command, &block)
|
@@ -1260,6 +1257,8 @@ module Google
|
|
1260
1257
|
# Part of `name`. See documentation of `appsId`.
|
1261
1258
|
# @param [String] versions_id
|
1262
1259
|
# Part of `name`. See documentation of `appsId`.
|
1260
|
+
# @param [String] include_extra_data
|
1261
|
+
# Optional. Options to include extra data
|
1263
1262
|
# @param [String] view
|
1264
1263
|
# Controls the set of fields returned in the Get response.
|
1265
1264
|
# @param [String] fields
|
@@ -1279,13 +1278,14 @@ module Google
|
|
1279
1278
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1280
1279
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1281
1280
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1282
|
-
def get_app_service_version(apps_id, services_id, versions_id, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1281
|
+
def get_app_service_version(apps_id, services_id, versions_id, include_extra_data: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1283
1282
|
command = make_simple_command(:get, 'v1beta/apps/{appsId}/services/{servicesId}/versions/{versionsId}', options)
|
1284
1283
|
command.response_representation = Google::Apis::AppengineV1beta::Version::Representation
|
1285
1284
|
command.response_class = Google::Apis::AppengineV1beta::Version
|
1286
1285
|
command.params['appsId'] = apps_id unless apps_id.nil?
|
1287
1286
|
command.params['servicesId'] = services_id unless services_id.nil?
|
1288
1287
|
command.params['versionsId'] = versions_id unless versions_id.nil?
|
1288
|
+
command.query['includeExtraData'] = include_extra_data unless include_extra_data.nil?
|
1289
1289
|
command.query['view'] = view unless view.nil?
|
1290
1290
|
command.query['fields'] = fields unless fields.nil?
|
1291
1291
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-appengine_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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: 2023-
|
11
|
+
date: 2023-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-appengine_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|