google-apis-appengine_v1 0.40.0 → 0.42.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: 4b5fae34c2b02bab53b097a3a007be520a0a74bb862955771322ec7a7e16bd07
4
- data.tar.gz: da18aba50361c7c7bdabefb25f8862e84e76e33b910ec74a095cd22c8f1ccdd3
3
+ metadata.gz: d933d67069eab1514e5aa2a45279c0af2266ccbb79b0435f07ac614d4ae8218e
4
+ data.tar.gz: e7fc136b122dc85411e4dbed244e729e8d253cda45ab32277fb0140166d29d8b
5
5
  SHA512:
6
- metadata.gz: 2d05cbe012116ceec96cb56965c9f9b00b66adf9e34d7be1376631aa1fb6c1da471de9a6b792f1927868c081db061e4a07843f3b80a56d376c8658c32bf4dde6
7
- data.tar.gz: 8974b84435d89ae592cf51882119892c912cba331a05015ce15b2c656952c06195f2c747ed4f48c8ff4ae90d8a164ce4dbf3279bb5ad4f1f074690ec15777393
6
+ metadata.gz: b72bf52354a77a7d7f1c00c339177c9f83b1cf2fc15645ae1169667285f4bb03e3c795fc62d4d547cdd76ed17318076431ab776cc948a2f4186081c28257b8a8
7
+ data.tar.gz: fce851c454c705834bd3c994321b5d90e660ffbb1a892403f9751560b389ed7fdeec64b3f454e575205d83077da1755fd6b7f168021f1da4501409c48ee393df
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-appengine_v1
2
2
 
3
+ ### v0.42.0 (2023-09-17)
4
+
5
+ * Regenerated from discovery document revision 20230909
6
+
7
+ ### v0.41.0 (2023-09-10)
8
+
9
+ * Regenerated from discovery document revision 20230831
10
+
3
11
  ### v0.40.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::AppengineV1::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)
@@ -2547,6 +2555,13 @@ module Google
2547
2555
  class Service
2548
2556
  include Google::Apis::Core::Hashable
2549
2557
 
2558
+ # Additional Google Generated Customer Metadata, this field won't be provided by
2559
+ # default and can be requested by setting the IncludeExtraData field in
2560
+ # GetServiceRequest
2561
+ # Corresponds to the JSON property `generatedCustomerMetadata`
2562
+ # @return [Hash<String,Object>]
2563
+ attr_accessor :generated_customer_metadata
2564
+
2550
2565
  # Relative name of the service within the application. Example: default.@
2551
2566
  # OutputOnly
2552
2567
  # Corresponds to the JSON property `id`
@@ -2591,6 +2606,7 @@ module Google
2591
2606
 
2592
2607
  # Update properties of this object
2593
2608
  def update!(**args)
2609
+ @generated_customer_metadata = args[:generated_customer_metadata] if args.key?(:generated_customer_metadata)
2594
2610
  @id = args[:id] if args.key?(:id)
2595
2611
  @labels = args[:labels] if args.key?(:labels)
2596
2612
  @name = args[:name] if args.key?(:name)
@@ -3278,7 +3294,7 @@ module Google
3278
3294
  # @return [String]
3279
3295
  attr_accessor :egress_setting
3280
3296
 
3281
- # Full Serverless VPC Access Connector name e.g. /projects/my-project/locations/
3297
+ # Full Serverless VPC Access Connector name e.g. projects/my-project/locations/
3282
3298
  # us-central1/connectors/c1.
3283
3299
  # Corresponds to the JSON property `name`
3284
3300
  # @return [String]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AppengineV1
18
18
  # Version of the google-apis-appengine_v1 gem
19
- GEM_VERSION = "0.40.0"
19
+ GEM_VERSION = "0.42.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 = "20230821"
25
+ REVISION = "20230909"
26
26
  end
27
27
  end
28
28
  end
@@ -510,6 +510,7 @@ module Google
510
510
  property :feature_settings, as: 'featureSettings', class: Google::Apis::AppengineV1::FeatureSettings, decorator: Google::Apis::AppengineV1::FeatureSettings::Representation
511
511
 
512
512
  property :gcr_domain, as: 'gcrDomain'
513
+ hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
513
514
  property :iap, as: 'iap', class: Google::Apis::AppengineV1::IdentityAwareProxy, decorator: Google::Apis::AppengineV1::IdentityAwareProxy::Representation
514
515
 
515
516
  property :id, as: 'id'
@@ -1138,6 +1139,7 @@ module Google
1138
1139
  class Service
1139
1140
  # @private
1140
1141
  class Representation < Google::Apis::Core::JsonRepresentation
1142
+ hash :generated_customer_metadata, as: 'generatedCustomerMetadata'
1141
1143
  property :id, as: 'id'
1142
1144
  hash :labels, as: 'labels'
1143
1145
  property :name, as: 'name'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-appengine_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.0
4
+ version: 0.42.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-08-27 00:00:00.000000000 Z
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
63
63
  post_install_message:
64
64
  rdoc_options: []