google-apis-appengine_v1beta 0.47.0 → 0.49.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: 36de82795f0c17195e36559ef08cd26f66d0e083e9fe13330247f9d16eaa77b1
4
- data.tar.gz: 27eb678a7ae7e05304ae7fab93abcdd26c3895a5174a3b5237f01581732e45e1
3
+ metadata.gz: 74f89e0895af8bf168a610e94f4febbf745e8b00113e73ba4bef5a54e7f3ac57
4
+ data.tar.gz: 16f71341d6154b7275a610fc1b0df72a796f0fdd8d413fcb04756ca11eadf0c5
5
5
  SHA512:
6
- metadata.gz: d4c5d8ba63d045b28e2f0bf6ac8d03b00ce393c8588a01b737a697cd44eab85b7ef9a13ae9e938f95d7bc74b4a3492f557f65e7727e97d3d728751c2bc7f8bf7
7
- data.tar.gz: 8c7ce42f48539f7e24f958be6da071e3526f8f69d97375492fab71b8cbc5278ba6093ce23d00100aadc35c2e7fcb9af0c2eecda8a4b3b998d768ab85983478b7
6
+ metadata.gz: b3e587a74d3e997008fc946b91aa0c72e8bc5d6e50273f7fd16b0c6b10bf654161c671617c278796bfaeed60448c4f7c0433edc2301f23ac97263f86cab4ec85
7
+ data.tar.gz: 9679e9397a649e670e99e27cb69df736cac501173df0dc0ed8932f00f55a22e6f34fe5c6d9bf82c9748b43f1241d57eb8275a119d9b72dbd0fa306dbdbaa6cff
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-appengine_v1beta
2
2
 
3
+ ### v0.49.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241205
6
+
7
+ ### v0.48.0 (2024-12-02)
8
+
9
+ * Regenerated from discovery document revision 20241118
10
+ * Regenerated using generator version 0.15.1
11
+
3
12
  ### v0.47.0 (2024-05-19)
4
13
 
5
14
  * Regenerated using generator version 0.15.0
@@ -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.47.0"
19
+ GEM_VERSION = "0.49.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.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 = "20241205"
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,89 @@ module Google
1718
1718
  execute_or_queue_command(command, &block)
1719
1719
  end
1720
1720
 
1721
+ # Deletes the specified service and all enclosed versions.
1722
+ # @param [String] projects_id
1723
+ # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1724
+ # default.
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] fields
1732
+ # Selector specifying which fields to include in a partial response.
1733
+ # @param [String] quota_user
1734
+ # Available to use for quota purposes for server-side applications. Can be any
1735
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1736
+ # @param [Google::Apis::RequestOptions] options
1737
+ # Request-specific options
1738
+ #
1739
+ # @yield [result, err] Result & error if block supplied
1740
+ # @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
1741
+ # @yieldparam err [StandardError] error object if request failed
1742
+ #
1743
+ # @return [Google::Apis::AppengineV1beta::Operation]
1744
+ #
1745
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1746
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1747
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1748
+ def delete_project_location_application_service(projects_id, locations_id, applications_id, services_id, fields: nil, quota_user: nil, options: nil, &block)
1749
+ command = make_simple_command(:delete, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}', options)
1750
+ command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
1751
+ command.response_class = Google::Apis::AppengineV1beta::Operation
1752
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1753
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1754
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1755
+ command.params['servicesId'] = services_id unless services_id.nil?
1756
+ command.query['fields'] = fields unless fields.nil?
1757
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1758
+ execute_or_queue_command(command, &block)
1759
+ end
1760
+
1761
+ # Deletes an existing Version resource.
1762
+ # @param [String] projects_id
1763
+ # Part of `name`. Name of the resource requested. Example: apps/myapp/services/
1764
+ # default/versions/v1.
1765
+ # @param [String] locations_id
1766
+ # Part of `name`. See documentation of `projectsId`.
1767
+ # @param [String] applications_id
1768
+ # Part of `name`. See documentation of `projectsId`.
1769
+ # @param [String] services_id
1770
+ # Part of `name`. See documentation of `projectsId`.
1771
+ # @param [String] versions_id
1772
+ # Part of `name`. See documentation of `projectsId`.
1773
+ # @param [String] fields
1774
+ # Selector specifying which fields to include in a partial response.
1775
+ # @param [String] quota_user
1776
+ # Available to use for quota purposes for server-side applications. Can be any
1777
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1778
+ # @param [Google::Apis::RequestOptions] options
1779
+ # Request-specific options
1780
+ #
1781
+ # @yield [result, err] Result & error if block supplied
1782
+ # @yieldparam result [Google::Apis::AppengineV1beta::Operation] parsed result object
1783
+ # @yieldparam err [StandardError] error object if request failed
1784
+ #
1785
+ # @return [Google::Apis::AppengineV1beta::Operation]
1786
+ #
1787
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1788
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1789
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1790
+ 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)
1791
+ command = make_simple_command(:delete, 'v1beta/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/services/{servicesId}/versions/{versionsId}', options)
1792
+ command.response_representation = Google::Apis::AppengineV1beta::Operation::Representation
1793
+ command.response_class = Google::Apis::AppengineV1beta::Operation
1794
+ command.params['projectsId'] = projects_id unless projects_id.nil?
1795
+ command.params['locationsId'] = locations_id unless locations_id.nil?
1796
+ command.params['applicationsId'] = applications_id unless applications_id.nil?
1797
+ command.params['servicesId'] = services_id unless services_id.nil?
1798
+ command.params['versionsId'] = versions_id unless versions_id.nil?
1799
+ command.query['fields'] = fields unless fields.nil?
1800
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1801
+ execute_or_queue_command(command, &block)
1802
+ end
1803
+
1721
1804
  # Gets the latest state of a long-running operation. Clients can use this method
1722
1805
  # to poll the operation result at intervals as recommended by the API service.
1723
1806
  # @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.47.0
4
+ version: 0.49.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-05-26 00:00:00.000000000 Z
11
+ date: 2024-12-15 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.47.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1beta/v0.49.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.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for App Engine Admin API V1beta