google-apis-apigee_v1 0.76.0 → 0.78.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/apigee_v1/classes.rb +56 -56
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +13 -14
- data/lib/google/apis/apigee_v1/service.rb +28 -34
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e5d33d25363685c646543bc27482f02eeb8a0e77338320d19f9c125fd54dbcc
|
4
|
+
data.tar.gz: 476aa230f36b2677a11c85ee79426f50b11a2d0e349095b86551e36fb41a6363
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a7762de94b04a717f70a03b98a9fe23bed33900b9604bcde6cb2b07b36e90d2216482823b1dbac8104a4e9ca69aff574eb5ca00a2dcac88e50cfa21eb82bf41
|
7
|
+
data.tar.gz: 894946ffd8abee7a8d50087721f9913a4beeb8668e7d6c6317dcb2583a486a8139241fd98c816036ce7c1c1cb0a5157a2000b8e96d9e544f24eeab63567fd1de
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.78.0 (2023-11-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20231030
|
6
|
+
|
7
|
+
### v0.77.0 (2023-10-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20231016
|
10
|
+
|
3
11
|
### v0.76.0 (2023-10-01)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230924
|
@@ -467,34 +467,32 @@ module Google
|
|
467
467
|
end
|
468
468
|
end
|
469
469
|
|
470
|
-
#
|
470
|
+
# `ApiCategory` represents an API category. [Catalog items](/apigee/docs/
|
471
|
+
# reference/apis/apigee/rest/v1/organizations.sites.apidocs) can be tagged with
|
472
|
+
# API categories; users viewing the API catalog in the portal will have the
|
473
|
+
# option to browse the catalog by category.
|
471
474
|
class GoogleCloudApigeeV1ApiCategory
|
472
475
|
include Google::Apis::Core::Hashable
|
473
476
|
|
474
|
-
# the
|
475
|
-
# Corresponds to the JSON property `
|
476
|
-
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryData]
|
477
|
-
attr_accessor :data
|
478
|
-
|
479
|
-
# ID that can be used to find errors in the log files.
|
480
|
-
# Corresponds to the JSON property `errorCode`
|
477
|
+
# ID of the category (a UUID).
|
478
|
+
# Corresponds to the JSON property `id`
|
481
479
|
# @return [String]
|
482
|
-
attr_accessor :
|
480
|
+
attr_accessor :id
|
483
481
|
|
484
|
-
#
|
485
|
-
# Corresponds to the JSON property `
|
482
|
+
# Name of the category.
|
483
|
+
# Corresponds to the JSON property `name`
|
486
484
|
# @return [String]
|
487
|
-
attr_accessor :
|
485
|
+
attr_accessor :name
|
488
486
|
|
489
|
-
#
|
490
|
-
# Corresponds to the JSON property `
|
487
|
+
# Name of the portal.
|
488
|
+
# Corresponds to the JSON property `siteId`
|
491
489
|
# @return [String]
|
492
|
-
attr_accessor :
|
490
|
+
attr_accessor :site_id
|
493
491
|
|
494
|
-
#
|
495
|
-
# Corresponds to the JSON property `
|
496
|
-
# @return [
|
497
|
-
attr_accessor :
|
492
|
+
# Time the category was last modified in milliseconds since epoch.
|
493
|
+
# Corresponds to the JSON property `updateTime`
|
494
|
+
# @return [Fixnum]
|
495
|
+
attr_accessor :update_time
|
498
496
|
|
499
497
|
def initialize(**args)
|
500
498
|
update!(**args)
|
@@ -502,42 +500,44 @@ module Google
|
|
502
500
|
|
503
501
|
# Update properties of this object
|
504
502
|
def update!(**args)
|
505
|
-
@
|
506
|
-
@
|
507
|
-
@
|
508
|
-
@
|
509
|
-
@status = args[:status] if args.key?(:status)
|
503
|
+
@id = args[:id] if args.key?(:id)
|
504
|
+
@name = args[:name] if args.key?(:name)
|
505
|
+
@site_id = args[:site_id] if args.key?(:site_id)
|
506
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
510
507
|
end
|
511
508
|
end
|
512
509
|
|
513
|
-
#
|
514
|
-
class
|
510
|
+
# The API category resource wrapped with response status, error_code, etc.
|
511
|
+
class GoogleCloudApigeeV1ApiCategoryResponse
|
515
512
|
include Google::Apis::Core::Hashable
|
516
513
|
|
517
|
-
#
|
518
|
-
#
|
519
|
-
#
|
520
|
-
|
514
|
+
# `ApiCategory` represents an API category. [Catalog items](/apigee/docs/
|
515
|
+
# reference/apis/apigee/rest/v1/organizations.sites.apidocs) can be tagged with
|
516
|
+
# API categories; users viewing the API catalog in the portal will have the
|
517
|
+
# option to browse the catalog by category.
|
518
|
+
# Corresponds to the JSON property `data`
|
519
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory]
|
520
|
+
attr_accessor :data
|
521
521
|
|
522
|
-
#
|
523
|
-
# Corresponds to the JSON property `
|
522
|
+
# Unique error code for the request, if any.
|
523
|
+
# Corresponds to the JSON property `errorCode`
|
524
524
|
# @return [String]
|
525
|
-
attr_accessor :
|
525
|
+
attr_accessor :error_code
|
526
526
|
|
527
|
-
#
|
528
|
-
# Corresponds to the JSON property `
|
527
|
+
# Description of the operation.
|
528
|
+
# Corresponds to the JSON property `message`
|
529
529
|
# @return [String]
|
530
|
-
attr_accessor :
|
530
|
+
attr_accessor :message
|
531
531
|
|
532
|
-
#
|
533
|
-
# Corresponds to the JSON property `
|
532
|
+
# Unique ID of the request.
|
533
|
+
# Corresponds to the JSON property `requestId`
|
534
534
|
# @return [String]
|
535
|
-
attr_accessor :
|
535
|
+
attr_accessor :request_id
|
536
536
|
|
537
|
-
#
|
538
|
-
# Corresponds to the JSON property `
|
539
|
-
# @return [
|
540
|
-
attr_accessor :
|
537
|
+
# Status of the operation.
|
538
|
+
# Corresponds to the JSON property `status`
|
539
|
+
# @return [String]
|
540
|
+
attr_accessor :status
|
541
541
|
|
542
542
|
def initialize(**args)
|
543
543
|
update!(**args)
|
@@ -545,11 +545,11 @@ module Google
|
|
545
545
|
|
546
546
|
# Update properties of this object
|
547
547
|
def update!(**args)
|
548
|
-
@
|
549
|
-
@
|
550
|
-
@
|
551
|
-
@
|
552
|
-
@
|
548
|
+
@data = args[:data] if args.key?(:data)
|
549
|
+
@error_code = args[:error_code] if args.key?(:error_code)
|
550
|
+
@message = args[:message] if args.key?(:message)
|
551
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
552
|
+
@status = args[:status] if args.key?(:status)
|
553
553
|
end
|
554
554
|
end
|
555
555
|
|
@@ -2723,12 +2723,12 @@ module Google
|
|
2723
2723
|
class GoogleCloudApigeeV1DeleteResponse
|
2724
2724
|
include Google::Apis::Core::Hashable
|
2725
2725
|
|
2726
|
-
#
|
2726
|
+
# Unique error code for the request, if any.
|
2727
2727
|
# Corresponds to the JSON property `errorCode`
|
2728
2728
|
# @return [String]
|
2729
2729
|
attr_accessor :error_code
|
2730
2730
|
|
2731
|
-
#
|
2731
|
+
# Google Cloud name of deleted resource.
|
2732
2732
|
# Corresponds to the JSON property `gcpResource`
|
2733
2733
|
# @return [String]
|
2734
2734
|
attr_accessor :gcp_resource
|
@@ -2738,7 +2738,7 @@ module Google
|
|
2738
2738
|
# @return [String]
|
2739
2739
|
attr_accessor :message
|
2740
2740
|
|
2741
|
-
# ID
|
2741
|
+
# Unique ID of the request.
|
2742
2742
|
# Corresponds to the JSON property `requestId`
|
2743
2743
|
# @return [String]
|
2744
2744
|
attr_accessor :request_id
|
@@ -5101,16 +5101,16 @@ module Google
|
|
5101
5101
|
end
|
5102
5102
|
end
|
5103
5103
|
|
5104
|
-
#
|
5104
|
+
# The response for `ListApiCategoriesRequest`.
|
5105
5105
|
class GoogleCloudApigeeV1ListApiCategoriesResponse
|
5106
5106
|
include Google::Apis::Core::Hashable
|
5107
5107
|
|
5108
|
-
#
|
5108
|
+
# The API category resources.
|
5109
5109
|
# Corresponds to the JSON property `data`
|
5110
|
-
# @return [Array<Google::Apis::ApigeeV1::
|
5110
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory>]
|
5111
5111
|
attr_accessor :data
|
5112
5112
|
|
5113
|
-
#
|
5113
|
+
# Unique error code for the request, if any.
|
5114
5114
|
# Corresponds to the JSON property `errorCode`
|
5115
5115
|
# @return [String]
|
5116
5116
|
attr_accessor :error_code
|
@@ -5120,7 +5120,7 @@ module Google
|
|
5120
5120
|
# @return [String]
|
5121
5121
|
attr_accessor :message
|
5122
5122
|
|
5123
|
-
# ID
|
5123
|
+
# Unique ID of the request.
|
5124
5124
|
# Corresponds to the JSON property `requestId`
|
5125
5125
|
# @return [String]
|
5126
5126
|
attr_accessor :request_id
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.78.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 = "20231030"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -118,7 +118,7 @@ module Google
|
|
118
118
|
include Google::Apis::Core::JsonObjectSupport
|
119
119
|
end
|
120
120
|
|
121
|
-
class
|
121
|
+
class GoogleCloudApigeeV1ApiCategoryResponse
|
122
122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
123
|
|
124
124
|
include Google::Apis::Core::JsonObjectSupport
|
@@ -1783,23 +1783,22 @@ module Google
|
|
1783
1783
|
class GoogleCloudApigeeV1ApiCategory
|
1784
1784
|
# @private
|
1785
1785
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1786
|
-
property :
|
1787
|
-
|
1788
|
-
property :
|
1789
|
-
property :
|
1790
|
-
property :request_id, as: 'requestId'
|
1791
|
-
property :status, as: 'status'
|
1786
|
+
property :id, as: 'id'
|
1787
|
+
property :name, as: 'name'
|
1788
|
+
property :site_id, as: 'siteId'
|
1789
|
+
property :update_time, :numeric_string => true, as: 'updateTime'
|
1792
1790
|
end
|
1793
1791
|
end
|
1794
1792
|
|
1795
|
-
class
|
1793
|
+
class GoogleCloudApigeeV1ApiCategoryResponse
|
1796
1794
|
# @private
|
1797
1795
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1798
|
-
property :
|
1799
|
-
|
1800
|
-
property :
|
1801
|
-
property :
|
1802
|
-
property :
|
1796
|
+
property :data, as: 'data', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory::Representation
|
1797
|
+
|
1798
|
+
property :error_code, as: 'errorCode'
|
1799
|
+
property :message, as: 'message'
|
1800
|
+
property :request_id, as: 'requestId'
|
1801
|
+
property :status, as: 'status'
|
1803
1802
|
end
|
1804
1803
|
end
|
1805
1804
|
|
@@ -2932,7 +2931,7 @@ module Google
|
|
2932
2931
|
class GoogleCloudApigeeV1ListApiCategoriesResponse
|
2933
2932
|
# @private
|
2934
2933
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2935
|
-
collection :data, as: 'data', class: Google::Apis::ApigeeV1::
|
2934
|
+
collection :data, as: 'data', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory::Representation
|
2936
2935
|
|
2937
2936
|
property :error_code, as: 'errorCode'
|
2938
2937
|
property :message, as: 'message'
|
@@ -2017,22 +2017,16 @@ module Google
|
|
2017
2017
|
execute_or_queue_command(command, &block)
|
2018
2018
|
end
|
2019
2019
|
|
2020
|
-
# Updates an
|
2020
|
+
# Updates an AppGroup. This API replaces the existing AppGroup details with
|
2021
2021
|
# those specified in the request. Include or exclude any existing details that
|
2022
2022
|
# you want to retain or delete, respectively. Note that the state of the
|
2023
|
-
# AppGroup should be updated using `action`, and not via AppGroup.
|
2024
|
-
# OAuth access tokens and Key Management Service (KMS) entities (apps,
|
2025
|
-
# developers, and API products) are cached for 180 seconds (current default).
|
2026
|
-
# Any custom attributes associated with these entities are cached for at least
|
2027
|
-
# 180 seconds after the entity is accessed at runtime. Therefore, an `ExpiresIn`
|
2028
|
-
# element on the OAuthV2 policy won't be able to expire an access token in less
|
2029
|
-
# than 180 seconds.
|
2023
|
+
# AppGroup should be updated using `action`, and not via AppGroup.
|
2030
2024
|
# @param [String] name
|
2031
2025
|
# Required. Name of the AppGroup. Use the following structure in your request: `
|
2032
2026
|
# organizations/`org`/appgroups/`app_group_name``
|
2033
2027
|
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AppGroup] google_cloud_apigee_v1_app_group_object
|
2034
2028
|
# @param [String] action
|
2035
|
-
# Activate or de-activate the
|
2029
|
+
# Activate or de-activate the AppGroup by setting the action as `active` or `
|
2036
2030
|
# inactive`. The `Content-Type` header must be set to `application/octet-stream`,
|
2037
2031
|
# with empty body.
|
2038
2032
|
# @param [String] fields
|
@@ -11112,11 +11106,11 @@ module Google
|
|
11112
11106
|
execute_or_queue_command(command, &block)
|
11113
11107
|
end
|
11114
11108
|
|
11115
|
-
# Creates a new category
|
11109
|
+
# Creates a new API category.
|
11116
11110
|
# @param [String] parent
|
11117
11111
|
# Required. Name of the portal. Use the following structure in your request: `
|
11118
11112
|
# organizations/`org`/sites/`site``
|
11119
|
-
# @param [Google::Apis::ApigeeV1::
|
11113
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory] google_cloud_apigee_v1_api_category_object
|
11120
11114
|
# @param [String] fields
|
11121
11115
|
# Selector specifying which fields to include in a partial response.
|
11122
11116
|
# @param [String] quota_user
|
@@ -11126,27 +11120,27 @@ module Google
|
|
11126
11120
|
# Request-specific options
|
11127
11121
|
#
|
11128
11122
|
# @yield [result, err] Result & error if block supplied
|
11129
|
-
# @yieldparam result [Google::Apis::ApigeeV1::
|
11123
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse] parsed result object
|
11130
11124
|
# @yieldparam err [StandardError] error object if request failed
|
11131
11125
|
#
|
11132
|
-
# @return [Google::Apis::ApigeeV1::
|
11126
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse]
|
11133
11127
|
#
|
11134
11128
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11135
11129
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11136
11130
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11137
|
-
def create_organization_site_apicategory(parent,
|
11131
|
+
def create_organization_site_apicategory(parent, google_cloud_apigee_v1_api_category_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
11138
11132
|
command = make_simple_command(:post, 'v1/{+parent}/apicategories', options)
|
11139
|
-
command.request_representation = Google::Apis::ApigeeV1::
|
11140
|
-
command.request_object =
|
11141
|
-
command.response_representation = Google::Apis::ApigeeV1::
|
11142
|
-
command.response_class = Google::Apis::ApigeeV1::
|
11133
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory::Representation
|
11134
|
+
command.request_object = google_cloud_apigee_v1_api_category_object
|
11135
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse::Representation
|
11136
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse
|
11143
11137
|
command.params['parent'] = parent unless parent.nil?
|
11144
11138
|
command.query['fields'] = fields unless fields.nil?
|
11145
11139
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11146
11140
|
execute_or_queue_command(command, &block)
|
11147
11141
|
end
|
11148
11142
|
|
11149
|
-
# Deletes
|
11143
|
+
# Deletes an API category.
|
11150
11144
|
# @param [String] name
|
11151
11145
|
# Required. Name of the category. Use the following structure in your request: `
|
11152
11146
|
# organizations/`org`/sites/`site`/apicategories/`apicategory``
|
@@ -11177,7 +11171,7 @@ module Google
|
|
11177
11171
|
execute_or_queue_command(command, &block)
|
11178
11172
|
end
|
11179
11173
|
|
11180
|
-
# Gets
|
11174
|
+
# Gets an API category.
|
11181
11175
|
# @param [String] name
|
11182
11176
|
# Required. Name of the category. Use the following structure in your request: `
|
11183
11177
|
# organizations/`org`/sites/`site`/apicategories/`apicategory``
|
@@ -11190,25 +11184,25 @@ module Google
|
|
11190
11184
|
# Request-specific options
|
11191
11185
|
#
|
11192
11186
|
# @yield [result, err] Result & error if block supplied
|
11193
|
-
# @yieldparam result [Google::Apis::ApigeeV1::
|
11187
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse] parsed result object
|
11194
11188
|
# @yieldparam err [StandardError] error object if request failed
|
11195
11189
|
#
|
11196
|
-
# @return [Google::Apis::ApigeeV1::
|
11190
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse]
|
11197
11191
|
#
|
11198
11192
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11199
11193
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11200
11194
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11201
11195
|
def get_organization_site_apicategory(name, fields: nil, quota_user: nil, options: nil, &block)
|
11202
11196
|
command = make_simple_command(:get, 'v1/{+name}', options)
|
11203
|
-
command.response_representation = Google::Apis::ApigeeV1::
|
11204
|
-
command.response_class = Google::Apis::ApigeeV1::
|
11197
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse::Representation
|
11198
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse
|
11205
11199
|
command.params['name'] = name unless name.nil?
|
11206
11200
|
command.query['fields'] = fields unless fields.nil?
|
11207
11201
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11208
11202
|
execute_or_queue_command(command, &block)
|
11209
11203
|
end
|
11210
11204
|
|
11211
|
-
#
|
11205
|
+
# Returns the API categories associated with a portal.
|
11212
11206
|
# @param [String] parent
|
11213
11207
|
# Required. Name of the portal. Use the following structure in your request: `
|
11214
11208
|
# organizations/`org`/sites/`site``
|
@@ -11239,11 +11233,11 @@ module Google
|
|
11239
11233
|
execute_or_queue_command(command, &block)
|
11240
11234
|
end
|
11241
11235
|
|
11242
|
-
# Updates
|
11236
|
+
# Updates an API category.
|
11243
11237
|
# @param [String] name
|
11244
11238
|
# Required. Name of the category. Use the following structure in your request: `
|
11245
11239
|
# organizations/`org`/sites/`site`/apicategories/`apicategory``
|
11246
|
-
# @param [Google::Apis::ApigeeV1::
|
11240
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory] google_cloud_apigee_v1_api_category_object
|
11247
11241
|
# @param [String] fields
|
11248
11242
|
# Selector specifying which fields to include in a partial response.
|
11249
11243
|
# @param [String] quota_user
|
@@ -11253,20 +11247,20 @@ module Google
|
|
11253
11247
|
# Request-specific options
|
11254
11248
|
#
|
11255
11249
|
# @yield [result, err] Result & error if block supplied
|
11256
|
-
# @yieldparam result [Google::Apis::ApigeeV1::
|
11250
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse] parsed result object
|
11257
11251
|
# @yieldparam err [StandardError] error object if request failed
|
11258
11252
|
#
|
11259
|
-
# @return [Google::Apis::ApigeeV1::
|
11253
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse]
|
11260
11254
|
#
|
11261
11255
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11262
11256
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11263
11257
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11264
|
-
def patch_organization_site_apicategory(name,
|
11258
|
+
def patch_organization_site_apicategory(name, google_cloud_apigee_v1_api_category_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
11265
11259
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
11266
|
-
command.request_representation = Google::Apis::ApigeeV1::
|
11267
|
-
command.request_object =
|
11268
|
-
command.response_representation = Google::Apis::ApigeeV1::
|
11269
|
-
command.response_class = Google::Apis::ApigeeV1::
|
11260
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategory::Representation
|
11261
|
+
command.request_object = google_cloud_apigee_v1_api_category_object
|
11262
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse::Representation
|
11263
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ApiCategoryResponse
|
11270
11264
|
command.params['name'] = name unless name.nil?
|
11271
11265
|
command.query['fields'] = fields unless fields.nil?
|
11272
11266
|
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.
|
4
|
+
version: 0.78.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-11-05 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.78.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: []
|