google-apis-appengine_v1beta 0.46.0 → 0.48.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9296f7193abf118e48421c21e6f98cd5cb29ffb2899663d6834c570601971da2
4
- data.tar.gz: 52445f487da15fde23329a7c65686edf634c02feef8437ace8f3449b233221c9
3
+ metadata.gz: 2d30c91faecff28ba49dc24485762680692a25528f997773fa123e04462d2da0
4
+ data.tar.gz: f416df735c6581e57242cfd5aefd3577f0812120bf78cd50ba65b0132c0b68cd
5
5
  SHA512:
6
- metadata.gz: 3e87693283b635ef8ce168b0411dfc7a066f979bdbe1446093fd577e89e0278ce0df3582ddac9ed492ffab18bded3cf56dbb4dd52c4e16b2d65c9bd60067c61b
7
- data.tar.gz: d58b8fa06237da562871b7da45141dab6d3807124b57ce1495c5340c806daec2205a4c56e85434d79c598fa1884b08d48ba93ef6eb2551efecffddae5be28cc1
6
+ metadata.gz: 1364b864e9fd69f944ac0fc22c6f72467d509ffa63684eed2a965c1676264c8ec29870351644c44f41d1a63069f5d43e46e8b1a02081a8853424336d59a59c8f
7
+ data.tar.gz: '091fef4e5870d72375fb831e00136a2ca5ff9eb7cad74adc2e63ec2959e32f6018e8c5cfbbb96335a5df36e77d304dacdd283700742e9485b8fdb2ab66cca3c3'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.48.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20241118
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.47.0 (2024-05-19)
9
+
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.46.0 (2024-04-21)
4
13
 
5
14
  * Regenerated from discovery document revision 20240415
@@ -1236,6 +1236,34 @@ module Google
1236
1236
  end
1237
1237
  end
1238
1238
 
1239
+ # For use only by GCE. GceTag is a wrapper around the GCE administrative tag
1240
+ # with parent info.
1241
+ class GceTag
1242
+ include Google::Apis::Core::Hashable
1243
+
1244
+ # The parents(s) of the tag. Eg. projects/123, folders/456 It usually contains
1245
+ # only one parent. But, in some corner cases, it can contain multiple parents.
1246
+ # Currently, organizations are not supported.
1247
+ # Corresponds to the JSON property `parent`
1248
+ # @return [Array<String>]
1249
+ attr_accessor :parent
1250
+
1251
+ # The administrative_tag name.
1252
+ # Corresponds to the JSON property `tag`
1253
+ # @return [String]
1254
+ attr_accessor :tag
1255
+
1256
+ def initialize(**args)
1257
+ update!(**args)
1258
+ end
1259
+
1260
+ # Update properties of this object
1261
+ def update!(**args)
1262
+ @parent = args[:parent] if args.key?(:parent)
1263
+ @tag = args[:tag] if args.key?(:tag)
1264
+ end
1265
+ end
1266
+
1239
1267
  # Metadata for the given google.cloud.location.Location.
1240
1268
  class GoogleAppengineV1betaLocationMetadata
1241
1269
  include Google::Apis::Core::Hashable
@@ -2415,6 +2443,12 @@ module Google
2415
2443
  # @return [String]
2416
2444
  attr_accessor :consumer_project_state
2417
2445
 
2446
+ # The GCE tags associated with the consumer project and those inherited due to
2447
+ # their ancestry, if any. Not supported by CCFE.
2448
+ # Corresponds to the JSON property `gceTag`
2449
+ # @return [Array<Google::Apis::AppengineV1beta::GceTag>]
2450
+ attr_accessor :gce_tag
2451
+
2418
2452
  # The service account authorized to operate on the consumer project. Note: CCFE
2419
2453
  # only propagates P4SA with default tag to CLH.
2420
2454
  # Corresponds to the JSON property `p4ServiceAccount`
@@ -2450,6 +2484,7 @@ module Google
2450
2484
  @consumer_project_id = args[:consumer_project_id] if args.key?(:consumer_project_id)
2451
2485
  @consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
2452
2486
  @consumer_project_state = args[:consumer_project_state] if args.key?(:consumer_project_state)
2487
+ @gce_tag = args[:gce_tag] if args.key?(:gce_tag)
2453
2488
  @p4_service_account = args[:p4_service_account] if args.key?(:p4_service_account)
2454
2489
  @producer_project_id = args[:producer_project_id] if args.key?(:producer_project_id)
2455
2490
  @producer_project_number = args[:producer_project_number] if args.key?(:producer_project_number)
@@ -2605,6 +2640,44 @@ module Google
2605
2640
  end
2606
2641
  end
2607
2642
 
2643
+ # The request that is passed to CLH during per-resource events. The request will
2644
+ # be sent with update semantics in all cases except for data governance purge
2645
+ # events. These events will be sent with delete semantics and the CLH is
2646
+ # expected to delete the resource receiving this event.
2647
+ class ResourceEvent
2648
+ include Google::Apis::Core::Hashable
2649
+
2650
+ # The unique ID for this per-resource event. CLHs can use this value to dedup
2651
+ # repeated calls. required
2652
+ # Corresponds to the JSON property `eventId`
2653
+ # @return [String]
2654
+ attr_accessor :event_id
2655
+
2656
+ # The name of the resource for which this event is. required
2657
+ # Corresponds to the JSON property `name`
2658
+ # @return [String]
2659
+ attr_accessor :name
2660
+
2661
+ # ContainerState contains the externally-visible container state that is used to
2662
+ # communicate the state and reasoning for that state to the CLH. This data is
2663
+ # not persisted by CCFE, but is instead derived from CCFE's internal
2664
+ # representation of the container state.
2665
+ # Corresponds to the JSON property `state`
2666
+ # @return [Google::Apis::AppengineV1beta::ContainerState]
2667
+ attr_accessor :state
2668
+
2669
+ def initialize(**args)
2670
+ update!(**args)
2671
+ end
2672
+
2673
+ # Update properties of this object
2674
+ def update!(**args)
2675
+ @event_id = args[:event_id] if args.key?(:event_id)
2676
+ @name = args[:name] if args.key?(:name)
2677
+ @state = args[:state] if args.key?(:state)
2678
+ end
2679
+ end
2680
+
2608
2681
  # A DNS resource record.
2609
2682
  class ResourceRecord
2610
2683
  include Google::Apis::Core::Hashable
@@ -2805,8 +2878,8 @@ module Google
2805
2878
  # @return [Hash<String,Object>]
2806
2879
  attr_accessor :generated_customer_metadata
2807
2880
 
2808
- # Relative name of the service within the application. Example: default.@
2809
- # OutputOnly
2881
+ # Output only. Relative name of the service within the application. Example:
2882
+ # default.@OutputOnly
2810
2883
  # Corresponds to the JSON property `id`
2811
2884
  # @return [String]
2812
2885
  attr_accessor :id
@@ -2825,8 +2898,8 @@ module Google
2825
2898
  # @return [Hash<String,String>]
2826
2899
  attr_accessor :labels
2827
2900
 
2828
- # Full path to the Service resource in the API. Example: apps/myapp/services/
2829
- # default.@OutputOnly
2901
+ # Output only. Full path to the Service resource in the API. Example: apps/myapp/
2902
+ # services/default.@OutputOnly
2830
2903
  # Corresponds to the JSON property `name`
2831
2904
  # @return [String]
2832
2905
  attr_accessor :name
@@ -3236,7 +3309,7 @@ module Google
3236
3309
  # @return [String]
3237
3310
  attr_accessor :create_time
3238
3311
 
3239
- # Email address of the user who created this version.@OutputOnly
3312
+ # Output only. Email address of the user who created this version.@OutputOnly
3240
3313
  # Corresponds to the JSON property `createdBy`
3241
3314
  # @return [String]
3242
3315
  attr_accessor :created_by
@@ -3255,8 +3328,8 @@ module Google
3255
3328
  # @return [Google::Apis::AppengineV1beta::Deployment]
3256
3329
  attr_accessor :deployment
3257
3330
 
3258
- # Total size in bytes of all the files that are included in this version and
3259
- # currently hosted on the App Engine disk.@OutputOnly
3331
+ # Output only. Total size in bytes of all the files that are included in this
3332
+ # version and currently hosted on the App Engine disk.@OutputOnly
3260
3333
  # Corresponds to the JSON property `diskUsageBytes`
3261
3334
  # @return [Fixnum]
3262
3335
  attr_accessor :disk_usage_bytes
@@ -3358,8 +3431,8 @@ module Google
3358
3431
  # @return [Google::Apis::AppengineV1beta::ManualScaling]
3359
3432
  attr_accessor :manual_scaling
3360
3433
 
3361
- # Full path to the Version resource in the API. Example: apps/myapp/services/
3362
- # default/versions/v1.@OutputOnly
3434
+ # Output only. Full path to the Version resource in the API. Example: apps/myapp/
3435
+ # services/default/versions/v1.@OutputOnly
3363
3436
  # Corresponds to the JSON property `name`
3364
3437
  # @return [String]
3365
3438
  attr_accessor :name
@@ -3429,8 +3502,8 @@ module Google
3429
3502
  attr_accessor :threadsafe
3430
3503
  alias_method :threadsafe?, :threadsafe
3431
3504
 
3432
- # Serving URL for this version. Example: "https://myversion-dot-myservice-dot-
3433
- # myapp.appspot.com"@OutputOnly
3505
+ # Output only. Serving URL for this version. Example: "https://myversion-dot-
3506
+ # myservice-dot-myapp.appspot.com"@OutputOnly
3434
3507
  # Corresponds to the JSON property `versionUrl`
3435
3508
  # @return [String]
3436
3509
  attr_accessor :version_url
@@ -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.46.0"
19
+ GEM_VERSION = "0.48.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240415"
25
+ REVISION = "20241118"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,12 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class GceTag
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class GoogleAppengineV1betaLocationMetadata
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -412,6 +418,12 @@ module Google
412
418
  include Google::Apis::Core::JsonObjectSupport
413
419
  end
414
420
 
421
+ class ResourceEvent
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
415
427
  class ResourceRecord
416
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
417
429
 
@@ -828,6 +840,14 @@ module Google
828
840
  end
829
841
  end
830
842
 
843
+ class GceTag
844
+ # @private
845
+ class Representation < Google::Apis::Core::JsonRepresentation
846
+ collection :parent, as: 'parent'
847
+ property :tag, as: 'tag'
848
+ end
849
+ end
850
+
831
851
  class GoogleAppengineV1betaLocationMetadata
832
852
  # @private
833
853
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1133,6 +1153,8 @@ module Google
1133
1153
  property :consumer_project_id, as: 'consumerProjectId'
1134
1154
  property :consumer_project_number, :numeric_string => true, as: 'consumerProjectNumber'
1135
1155
  property :consumer_project_state, as: 'consumerProjectState'
1156
+ collection :gce_tag, as: 'gceTag', class: Google::Apis::AppengineV1beta::GceTag, decorator: Google::Apis::AppengineV1beta::GceTag::Representation
1157
+
1136
1158
  property :p4_service_account, as: 'p4ServiceAccount'
1137
1159
  property :producer_project_id, as: 'producerProjectId'
1138
1160
  property :producer_project_number, :numeric_string => true, as: 'producerProjectNumber'
@@ -1179,6 +1201,16 @@ module Google
1179
1201
  end
1180
1202
  end
1181
1203
 
1204
+ class ResourceEvent
1205
+ # @private
1206
+ class Representation < Google::Apis::Core::JsonRepresentation
1207
+ property :event_id, as: 'eventId'
1208
+ property :name, as: 'name'
1209
+ property :state, as: 'state', class: Google::Apis::AppengineV1beta::ContainerState, decorator: Google::Apis::AppengineV1beta::ContainerState::Representation
1210
+
1211
+ end
1212
+ end
1213
+
1182
1214
  class ResourceRecord
1183
1215
  # @private
1184
1216
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1718,6 +1718,49 @@ module Google
1718
1718
  execute_or_queue_command(command, &block)
1719
1719
  end
1720
1720
 
1721
+ # Deletes an existing Version resource.
1722
+ # @param [String] projects_id
1723
+ # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1724
+ # default/versions/v1.
1725
+ # @param [String] locations_id
1726
+ # Part of `name`. See documentation of `projectsId`.
1727
+ # @param [String] applications_id
1728
+ # Part of `name`. See documentation of `projectsId`.
1729
+ # @param [String] services_id
1730
+ # Part of `name`. See documentation of `projectsId`.
1731
+ # @param [String] versions_id
1732
+ # Part of `name`. See documentation of `projectsId`.
1733
+ # @param [String] fields
1734
+ # Selector specifying which fields to include in a partial response.
1735
+ # @param [String] quota_user
1736
+ # Available to use for quota purposes for server-side applications. Can be any
1737
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1738
+ # @param [Google::Apis::RequestOptions] options
1739
+ # Request-specific options
1740
+ #
1741
+ # @yield [result, err] Result & error if block supplied
1742
+ # @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
1743
+ # @yieldparam err [StandardError] error object if request failed
1744
+ #
1745
+ # @return [Google::Apis::AppengineV1beta::Operation]
1746
+ #
1747
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1748
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1749
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1750
+ def delete_project_location_application_service_version(projects_id, locations_id, applications_id, services_id, versions_id, fields: nil, quota_user: nil, options: nil, &block)
1751
+ command = make_simple_command(:delete, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}', options)
1752
+ command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
1753
+ command.response_class = Google::Apis::AppengineV1beta::Operation
1754
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1755
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1756
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1757
+ command.params['servicesId'] = services_id unless services_id.nil?
1758
+ command.params['versionsId'] = versions_id unless versions_id.nil?
1759
+ command.query['fields'] = fields unless fields.nil?
1760
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1761
+ execute_or_queue_command(command, &block)
1762
+ end
1763
+
1721
1764
  # Gets the latest state of a long-running operation. Clients can use this method
1722
1765
  # to poll the operation result at intervals as recommended by the API service.
1723
1766
  # @param [String] projects_id
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.46.0
4
+ version: 0.48.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: 2024-04-21 00:00:00.000000000 Z
11
+ date: 2024-12-04 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.14.0
19
+ version: 0.15.0
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.14.0
29
+ version: 0.15.0
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-appengine_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.48.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: []
@@ -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.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for App Engine Admin API V1beta