google-apis-apigee_v1 0.68.0 → 0.69.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: 8f0b4749c58b2b4f91471b41e2b6ceb255bd11212323924c878824790052ca2e
4
- data.tar.gz: a7d311c66f3afffc116b6f7103a560dc3e599989824e23985220d16213489dba
3
+ metadata.gz: 868055515bcda762b7dbf28398d06ae8484f91e0f428bd2faa848d5a161df215
4
+ data.tar.gz: 7f8b3e65cee62c7c67e29b6aaf4a882e8972ec43eafcf3e22cb0fb71191af218
5
5
  SHA512:
6
- metadata.gz: 6f24080ae7bd55abd1351dff5dabf9eab9074bd34e0359edb266e64424af9bcca2138cc8f4169299ab8be221da7b90d8d046d469355d89f6d62fe50c6e97e618
7
- data.tar.gz: 1ad8b151ddfbcdf4c30cf0d8048168620c1c842ab43d0a14581c5f91e2508f0f20b9bd40daec8c6061e93b2fe51cdf0714dba2c475847925a467baadfba2cad7
6
+ metadata.gz: 07b4d3aadb81e254609ab9685769ff08bb3f85cc2997b8b78a583c068225b51b9575fb7fed5a80efae7ed28f48881a02a9a419620e88d5fa41581d72b35f8445
7
+ data.tar.gz: 2d6255610fec9247da7730cc36eaa3498c3aa4b77bab2951fcef659e470b045247abf4c9c1fdd8eefe89ac3b2833ce4329edddf38e9d20dd6c07ff437b78fdf5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.69.0 (2023-05-07)
4
+
5
+ * Regenerated from discovery document revision 20230501
6
+
3
7
  ### v0.68.0 (2023-04-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20230421
@@ -442,6 +442,11 @@ module Google
442
442
  class GoogleCloudApigeeV1ApiCategoryData
443
443
  include Google::Apis::Core::Hashable
444
444
 
445
+ # GCP name of api category resource.
446
+ # Corresponds to the JSON property `gcpResource`
447
+ # @return [String]
448
+ attr_accessor :gcp_resource
449
+
445
450
  # ID of the category (a UUID).
446
451
  # Corresponds to the JSON property `id`
447
452
  # @return [String]
@@ -468,6 +473,7 @@ module Google
468
473
 
469
474
  # Update properties of this object
470
475
  def update!(**args)
476
+ @gcp_resource = args[:gcp_resource] if args.key?(:gcp_resource)
471
477
  @id = args[:id] if args.key?(:id)
472
478
  @name = args[:name] if args.key?(:name)
473
479
  @site_id = args[:site_id] if args.key?(:site_id)
@@ -906,43 +912,6 @@ module Google
906
912
  end
907
913
  end
908
914
 
909
- #
910
- class GoogleCloudApigeeV1ApiResponseWrapper
911
- include Google::Apis::Core::Hashable
912
-
913
- # ID that can be used to find errors in the log files.
914
- # Corresponds to the JSON property `errorCode`
915
- # @return [String]
916
- attr_accessor :error_code
917
-
918
- # Description of the operation.
919
- # Corresponds to the JSON property `message`
920
- # @return [String]
921
- attr_accessor :message
922
-
923
- # ID that can be used to find request details in the log files.
924
- # Corresponds to the JSON property `requestId`
925
- # @return [String]
926
- attr_accessor :request_id
927
-
928
- # Status of the operation.
929
- # Corresponds to the JSON property `status`
930
- # @return [String]
931
- attr_accessor :status
932
-
933
- def initialize(**args)
934
- update!(**args)
935
- end
936
-
937
- # Update properties of this object
938
- def update!(**args)
939
- @error_code = args[:error_code] if args.key?(:error_code)
940
- @message = args[:message] if args.key?(:message)
941
- @request_id = args[:request_id] if args.key?(:request_id)
942
- @status = args[:status] if args.key?(:status)
943
- end
944
- end
945
-
946
915
  # Configurations of the API Security add-on.
947
916
  class GoogleCloudApigeeV1ApiSecurityConfig
948
917
  include Google::Apis::Core::Hashable
@@ -2406,6 +2375,49 @@ module Google
2406
2375
  end
2407
2376
  end
2408
2377
 
2378
+ # Response for certain delete operations.
2379
+ class GoogleCloudApigeeV1DeleteResponse
2380
+ include Google::Apis::Core::Hashable
2381
+
2382
+ # ID that can be used to find errors in the log files.
2383
+ # Corresponds to the JSON property `errorCode`
2384
+ # @return [String]
2385
+ attr_accessor :error_code
2386
+
2387
+ # GCP name of deleted resource.
2388
+ # Corresponds to the JSON property `gcpResource`
2389
+ # @return [String]
2390
+ attr_accessor :gcp_resource
2391
+
2392
+ # Description of the operation.
2393
+ # Corresponds to the JSON property `message`
2394
+ # @return [String]
2395
+ attr_accessor :message
2396
+
2397
+ # ID that can be used to find request details in the log files.
2398
+ # Corresponds to the JSON property `requestId`
2399
+ # @return [String]
2400
+ attr_accessor :request_id
2401
+
2402
+ # Status of the operation.
2403
+ # Corresponds to the JSON property `status`
2404
+ # @return [String]
2405
+ attr_accessor :status
2406
+
2407
+ def initialize(**args)
2408
+ update!(**args)
2409
+ end
2410
+
2411
+ # Update properties of this object
2412
+ def update!(**args)
2413
+ @error_code = args[:error_code] if args.key?(:error_code)
2414
+ @gcp_resource = args[:gcp_resource] if args.key?(:gcp_resource)
2415
+ @message = args[:message] if args.key?(:message)
2416
+ @request_id = args[:request_id] if args.key?(:request_id)
2417
+ @status = args[:status] if args.key?(:status)
2418
+ end
2419
+ end
2420
+
2409
2421
  #
2410
2422
  class GoogleCloudApigeeV1Deployment
2411
2423
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.68.0"
19
+ GEM_VERSION = "0.69.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 = "20230421"
25
+ REVISION = "20230501"
26
26
  end
27
27
  end
28
28
  end
@@ -136,12 +136,6 @@ module Google
136
136
  include Google::Apis::Core::JsonObjectSupport
137
137
  end
138
138
 
139
- class GoogleCloudApigeeV1ApiResponseWrapper
140
- class Representation < Google::Apis::Core::JsonRepresentation; end
141
-
142
- include Google::Apis::Core::JsonObjectSupport
143
- end
144
-
145
139
  class GoogleCloudApigeeV1ApiSecurityConfig
146
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
141
 
@@ -334,6 +328,12 @@ module Google
334
328
  include Google::Apis::Core::JsonObjectSupport
335
329
  end
336
330
 
331
+ class GoogleCloudApigeeV1DeleteResponse
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
337
337
  class GoogleCloudApigeeV1Deployment
338
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
339
339
 
@@ -1583,6 +1583,7 @@ module Google
1583
1583
  class GoogleCloudApigeeV1ApiCategoryData
1584
1584
  # @private
1585
1585
  class Representation < Google::Apis::Core::JsonRepresentation
1586
+ property :gcp_resource, as: 'gcpResource'
1586
1587
  property :id, as: 'id'
1587
1588
  property :name, as: 'name'
1588
1589
  property :site_id, as: 'siteId'
@@ -1670,16 +1671,6 @@ module Google
1670
1671
  end
1671
1672
  end
1672
1673
 
1673
- class GoogleCloudApigeeV1ApiResponseWrapper
1674
- # @private
1675
- class Representation < Google::Apis::Core::JsonRepresentation
1676
- property :error_code, as: 'errorCode'
1677
- property :message, as: 'message'
1678
- property :request_id, as: 'requestId'
1679
- property :status, as: 'status'
1680
- end
1681
- end
1682
-
1683
1674
  class GoogleCloudApigeeV1ApiSecurityConfig
1684
1675
  # @private
1685
1676
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2051,6 +2042,17 @@ module Google
2051
2042
  end
2052
2043
  end
2053
2044
 
2045
+ class GoogleCloudApigeeV1DeleteResponse
2046
+ # @private
2047
+ class Representation < Google::Apis::Core::JsonRepresentation
2048
+ property :error_code, as: 'errorCode'
2049
+ property :gcp_resource, as: 'gcpResource'
2050
+ property :message, as: 'message'
2051
+ property :request_id, as: 'requestId'
2052
+ property :status, as: 'status'
2053
+ end
2054
+ end
2055
+
2054
2056
  class GoogleCloudApigeeV1Deployment
2055
2057
  # @private
2056
2058
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10097,18 +10097,18 @@ module Google
10097
10097
  # Request-specific options
10098
10098
  #
10099
10099
  # @yield [result, err] Result & error if block supplied
10100
- # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper] parsed result object
10100
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse] parsed result object
10101
10101
  # @yieldparam err [StandardError] error object if request failed
10102
10102
  #
10103
- # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper]
10103
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse]
10104
10104
  #
10105
10105
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10106
10106
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10107
10107
  # @raise [Google::Apis::AuthorizationError] Authorization is required
10108
10108
  def delete_organization_site_apicategory(name, fields: nil, quota_user: nil, options: nil, &block)
10109
10109
  command = make_simple_command(:delete, 'v1/{+name}', options)
10110
- command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper::Representation
10111
- command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiResponseWrapper
10110
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse::Representation
10111
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeleteResponse
10112
10112
  command.params['name'] = name unless name.nil?
10113
10113
  command.query['fields'] = fields unless fields.nil?
10114
10114
  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-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.68.0
4
+ version: 0.69.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-05-14 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-apigee_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.69.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
63
63
  post_install_message:
64
64
  rdoc_options: []