google-apis-apigee_v1 0.14.0 → 0.18.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 +16 -0
- data/lib/google/apis/apigee_v1/classes.rb +104 -3
- data/lib/google/apis/apigee_v1/gem_version.rb +3 -3
- data/lib/google/apis/apigee_v1/representations.rb +46 -0
- data/lib/google/apis/apigee_v1/service.rb +59 -15
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bfc0457e915590c55cbcf0713bfcde193df59f4ab69820b6b471990f5a12aa8f
|
4
|
+
data.tar.gz: dbea9876b6a1665e6ffdb668ed11f07f03fad8ef50637dd0852ba5632ef96e6d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3c76b62e1ea6ec02562367ea13a1648957a444031cb6b8a661914c78ce5c0526024495ea4d19b321d2ab2c5923fc85d258eadab80a005ca9250b20dc3eaab01
|
7
|
+
data.tar.gz: 28aae1a1956b737a66a96282630a1aeeb755eb8a46ab6b1cc5263ff3aeef9c2dbc539bdd069033c29a6141cd6d913ee1d33e14ad7f15bdee490d621fe8891f22
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.18.0 (2021-07-28)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210722
|
6
|
+
|
7
|
+
### v0.17.0 (2021-07-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210708
|
10
|
+
|
11
|
+
### v0.16.0 (2021-06-29)
|
12
|
+
|
13
|
+
* Regenerated using generator version 0.4.0
|
14
|
+
|
15
|
+
### v0.15.0 (2021-06-24)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210618
|
18
|
+
|
3
19
|
### v0.14.0 (2021-06-08)
|
4
20
|
|
5
21
|
* Regenerated from discovery document revision 20210604
|
@@ -22,6 +22,51 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module ApigeeV1
|
24
24
|
|
25
|
+
# Describes why a bundle is invalid. Intended for use in error details.
|
26
|
+
class EdgeConfigstoreBundleBadBundle
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Describes all precondition violations.
|
30
|
+
# Corresponds to the JSON property `violations`
|
31
|
+
# @return [Array<Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation>]
|
32
|
+
attr_accessor :violations
|
33
|
+
|
34
|
+
def initialize(**args)
|
35
|
+
update!(**args)
|
36
|
+
end
|
37
|
+
|
38
|
+
# Update properties of this object
|
39
|
+
def update!(**args)
|
40
|
+
@violations = args[:violations] if args.key?(:violations)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
# A message type used to describe a single bundle validation error.
|
45
|
+
class EdgeConfigstoreBundleBadBundleViolation
|
46
|
+
include Google::Apis::Core::Hashable
|
47
|
+
|
48
|
+
# A description of why the bundle is invalid and how to fix it.
|
49
|
+
# Corresponds to the JSON property `description`
|
50
|
+
# @return [String]
|
51
|
+
attr_accessor :description
|
52
|
+
|
53
|
+
# The filename (including relative path from the bundle root) in which the error
|
54
|
+
# occurred.
|
55
|
+
# Corresponds to the JSON property `filename`
|
56
|
+
# @return [String]
|
57
|
+
attr_accessor :filename
|
58
|
+
|
59
|
+
def initialize(**args)
|
60
|
+
update!(**args)
|
61
|
+
end
|
62
|
+
|
63
|
+
# Update properties of this object
|
64
|
+
def update!(**args)
|
65
|
+
@description = args[:description] if args.key?(:description)
|
66
|
+
@filename = args[:filename] if args.key?(:filename)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
25
70
|
# Message that represents an arbitrary HTTP body. It should only be used for
|
26
71
|
# payload formats that can't be represented as JSON, such as raw binary or an
|
27
72
|
# HTML page. This message can be used both in streaming and non-streaming API
|
@@ -589,7 +634,12 @@ module Google
|
|
589
634
|
class GoogleCloudApigeeV1ApiProxy
|
590
635
|
include Google::Apis::Core::Hashable
|
591
636
|
|
592
|
-
#
|
637
|
+
# User labels applied to this API Proxy.
|
638
|
+
# Corresponds to the JSON property `labels`
|
639
|
+
# @return [Hash<String,String>]
|
640
|
+
attr_accessor :labels
|
641
|
+
|
642
|
+
# Output only. The id of the most recently created revision for this api proxy.
|
593
643
|
# Corresponds to the JSON property `latestRevisionId`
|
594
644
|
# @return [String]
|
595
645
|
attr_accessor :latest_revision_id
|
@@ -599,12 +649,12 @@ module Google
|
|
599
649
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata]
|
600
650
|
attr_accessor :meta_data
|
601
651
|
|
602
|
-
# Name of the API proxy.
|
652
|
+
# Output only. Name of the API proxy.
|
603
653
|
# Corresponds to the JSON property `name`
|
604
654
|
# @return [String]
|
605
655
|
attr_accessor :name
|
606
656
|
|
607
|
-
# List of revisons defined for the API proxy.
|
657
|
+
# Output only. List of revisons defined for the API proxy.
|
608
658
|
# Corresponds to the JSON property `revision`
|
609
659
|
# @return [Array<String>]
|
610
660
|
attr_accessor :revision
|
@@ -615,6 +665,7 @@ module Google
|
|
615
665
|
|
616
666
|
# Update properties of this object
|
617
667
|
def update!(**args)
|
668
|
+
@labels = args[:labels] if args.key?(:labels)
|
618
669
|
@latest_revision_id = args[:latest_revision_id] if args.key?(:latest_revision_id)
|
619
670
|
@meta_data = args[:meta_data] if args.key?(:meta_data)
|
620
671
|
@name = args[:name] if args.key?(:name)
|
@@ -2044,6 +2095,12 @@ module Google
|
|
2044
2095
|
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict>]
|
2045
2096
|
attr_accessor :route_conflicts
|
2046
2097
|
|
2098
|
+
# The full resource name of Cloud IAM Service Account that this deployment is
|
2099
|
+
# using, eg, `projects/-/serviceAccounts/`email``.
|
2100
|
+
# Corresponds to the JSON property `serviceAccount`
|
2101
|
+
# @return [String]
|
2102
|
+
attr_accessor :service_account
|
2103
|
+
|
2047
2104
|
# Current state of the deployment. This field is not populated in List APIs.
|
2048
2105
|
# Corresponds to the JSON property `state`
|
2049
2106
|
# @return [String]
|
@@ -2063,6 +2120,7 @@ module Google
|
|
2063
2120
|
@pods = args[:pods] if args.key?(:pods)
|
2064
2121
|
@revision = args[:revision] if args.key?(:revision)
|
2065
2122
|
@route_conflicts = args[:route_conflicts] if args.key?(:route_conflicts)
|
2123
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
2066
2124
|
@state = args[:state] if args.key?(:state)
|
2067
2125
|
end
|
2068
2126
|
end
|
@@ -5892,6 +5950,49 @@ module Google
|
|
5892
5950
|
end
|
5893
5951
|
end
|
5894
5952
|
|
5953
|
+
# Runtime configuration for the organization. Response for GetRuntimeConfig.
|
5954
|
+
class GoogleCloudApigeeV1RuntimeConfig
|
5955
|
+
include Google::Apis::Core::Hashable
|
5956
|
+
|
5957
|
+
# Cloud Storage bucket used for uploading Analytics records.
|
5958
|
+
# Corresponds to the JSON property `analyticsBucket`
|
5959
|
+
# @return [String]
|
5960
|
+
attr_accessor :analytics_bucket
|
5961
|
+
|
5962
|
+
# Name of the resource in the following format: `organizations/`org`/
|
5963
|
+
# runtimeConfig`.
|
5964
|
+
# Corresponds to the JSON property `name`
|
5965
|
+
# @return [String]
|
5966
|
+
attr_accessor :name
|
5967
|
+
|
5968
|
+
# Output only. Tenant project ID associated with the Apigee organization. The
|
5969
|
+
# tenant project is used to host Google-managed resources that are dedicated to
|
5970
|
+
# this Apigee organization. Clients have limited access to resources within the
|
5971
|
+
# tenant project used to support Apigee runtime instances. Access to the tenant
|
5972
|
+
# project is managed using SetSyncAuthorization. It can be empty if the tenant
|
5973
|
+
# project hasn't been created yet.
|
5974
|
+
# Corresponds to the JSON property `tenantProjectId`
|
5975
|
+
# @return [String]
|
5976
|
+
attr_accessor :tenant_project_id
|
5977
|
+
|
5978
|
+
# Cloud Storage bucket used for uploading Trace records.
|
5979
|
+
# Corresponds to the JSON property `traceBucket`
|
5980
|
+
# @return [String]
|
5981
|
+
attr_accessor :trace_bucket
|
5982
|
+
|
5983
|
+
def initialize(**args)
|
5984
|
+
update!(**args)
|
5985
|
+
end
|
5986
|
+
|
5987
|
+
# Update properties of this object
|
5988
|
+
def update!(**args)
|
5989
|
+
@analytics_bucket = args[:analytics_bucket] if args.key?(:analytics_bucket)
|
5990
|
+
@name = args[:name] if args.key?(:name)
|
5991
|
+
@tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id)
|
5992
|
+
@trace_bucket = args[:trace_bucket] if args.key?(:trace_bucket)
|
5993
|
+
end
|
5994
|
+
end
|
5995
|
+
|
5895
5996
|
# NEXT ID: 8 RuntimeTraceConfig defines the configurations for distributed trace
|
5896
5997
|
# in an environment.
|
5897
5998
|
class GoogleCloudApigeeV1RuntimeTraceConfig
|
@@ -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.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210722"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,18 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module ApigeeV1
|
24
24
|
|
25
|
+
class EdgeConfigstoreBundleBadBundle
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
31
|
+
class EdgeConfigstoreBundleBadBundleViolation
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
25
37
|
class GoogleApiHttpBody
|
26
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
39
|
|
@@ -868,6 +880,12 @@ module Google
|
|
868
880
|
include Google::Apis::Core::JsonObjectSupport
|
869
881
|
end
|
870
882
|
|
883
|
+
class GoogleCloudApigeeV1RuntimeConfig
|
884
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
885
|
+
|
886
|
+
include Google::Apis::Core::JsonObjectSupport
|
887
|
+
end
|
888
|
+
|
871
889
|
class GoogleCloudApigeeV1RuntimeTraceConfig
|
872
890
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
891
|
|
@@ -1114,6 +1132,22 @@ module Google
|
|
1114
1132
|
include Google::Apis::Core::JsonObjectSupport
|
1115
1133
|
end
|
1116
1134
|
|
1135
|
+
class EdgeConfigstoreBundleBadBundle
|
1136
|
+
# @private
|
1137
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1138
|
+
collection :violations, as: 'violations', class: Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation, decorator: Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation::Representation
|
1139
|
+
|
1140
|
+
end
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
class EdgeConfigstoreBundleBadBundleViolation
|
1144
|
+
# @private
|
1145
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1146
|
+
property :description, as: 'description'
|
1147
|
+
property :filename, as: 'filename'
|
1148
|
+
end
|
1149
|
+
end
|
1150
|
+
|
1117
1151
|
class GoogleApiHttpBody
|
1118
1152
|
# @private
|
1119
1153
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1262,6 +1296,7 @@ module Google
|
|
1262
1296
|
class GoogleCloudApigeeV1ApiProxy
|
1263
1297
|
# @private
|
1264
1298
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1299
|
+
hash :labels, as: 'labels'
|
1265
1300
|
property :latest_revision_id, as: 'latestRevisionId'
|
1266
1301
|
property :meta_data, as: 'metaData', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata::Representation
|
1267
1302
|
|
@@ -1619,6 +1654,7 @@ module Google
|
|
1619
1654
|
property :revision, as: 'revision'
|
1620
1655
|
collection :route_conflicts, as: 'routeConflicts', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeploymentChangeReportRoutingConflict::Representation
|
1621
1656
|
|
1657
|
+
property :service_account, as: 'serviceAccount'
|
1622
1658
|
property :state, as: 'state'
|
1623
1659
|
end
|
1624
1660
|
end
|
@@ -2670,6 +2706,16 @@ module Google
|
|
2670
2706
|
end
|
2671
2707
|
end
|
2672
2708
|
|
2709
|
+
class GoogleCloudApigeeV1RuntimeConfig
|
2710
|
+
# @private
|
2711
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2712
|
+
property :analytics_bucket, as: 'analyticsBucket'
|
2713
|
+
property :name, as: 'name'
|
2714
|
+
property :tenant_project_id, as: 'tenantProjectId'
|
2715
|
+
property :trace_bucket, as: 'traceBucket'
|
2716
|
+
end
|
2717
|
+
end
|
2718
|
+
|
2673
2719
|
class GoogleCloudApigeeV1RuntimeTraceConfig
|
2674
2720
|
# @private
|
2675
2721
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -219,6 +219,37 @@ module Google
|
|
219
219
|
execute_or_queue_command(command, &block)
|
220
220
|
end
|
221
221
|
|
222
|
+
# Get runtime config for an organization.
|
223
|
+
# @param [String] name
|
224
|
+
# Required. Name of the runtime config for the organization in the following
|
225
|
+
# format: 'organizations/`org`/runtimeConfig'.
|
226
|
+
# @param [String] fields
|
227
|
+
# Selector specifying which fields to include in a partial response.
|
228
|
+
# @param [String] quota_user
|
229
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
230
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
231
|
+
# @param [Google::Apis::RequestOptions] options
|
232
|
+
# Request-specific options
|
233
|
+
#
|
234
|
+
# @yield [result, err] Result & error if block supplied
|
235
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig] parsed result object
|
236
|
+
# @yieldparam err [StandardError] error object if request failed
|
237
|
+
#
|
238
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig]
|
239
|
+
#
|
240
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
241
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
242
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
243
|
+
def get_organization_runtime_config(name, fields: nil, quota_user: nil, options: nil, &block)
|
244
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
245
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig::Representation
|
246
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeConfig
|
247
|
+
command.params['name'] = name unless name.nil?
|
248
|
+
command.query['fields'] = fields unless fields.nil?
|
249
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
250
|
+
execute_or_queue_command(command, &block)
|
251
|
+
end
|
252
|
+
|
222
253
|
# Lists the service accounts with the permissions required to allow the
|
223
254
|
# Synchronizer to download environment data from the control plane. An ETag is
|
224
255
|
# returned in the response to `getSyncAuthorization`. Pass that ETag when
|
@@ -1914,8 +1945,8 @@ module Google
|
|
1914
1945
|
# expire an access token in less than 180 seconds.
|
1915
1946
|
# @param [String] parent
|
1916
1947
|
# Required. Email address of the developer for which attributes are being
|
1917
|
-
# updated
|
1918
|
-
# developer_email``
|
1948
|
+
# updated. Use the following structure in your request: `organizations/`org`/
|
1949
|
+
# developers/`developer_email``
|
1919
1950
|
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attributes] google_cloud_apigee_v1_attributes_object
|
1920
1951
|
# @param [String] fields
|
1921
1952
|
# Selector specifying which fields to include in a partial response.
|
@@ -2117,16 +2148,18 @@ module Google
|
|
2117
2148
|
execute_or_queue_command(command, &block)
|
2118
2149
|
end
|
2119
2150
|
|
2120
|
-
# Sets the status of a developer.
|
2121
|
-
# developer
|
2122
|
-
#
|
2123
|
-
#
|
2124
|
-
#
|
2125
|
-
#
|
2126
|
-
#
|
2151
|
+
# Sets the status of a developer. A developer is `active` by default. If you set
|
2152
|
+
# a developer's status to `inactive`, the API keys assigned to the developer
|
2153
|
+
# apps are no longer valid even though the API keys are set to `approved`.
|
2154
|
+
# Inactive developers can still sign in to the developer portal and create apps;
|
2155
|
+
# however, any new API keys generated during app creation won't work. To set the
|
2156
|
+
# status of a developer, set the `action` query parameter to `active` or `
|
2157
|
+
# inactive`, and the `Content-Type` header to `application/octet-stream`. If
|
2158
|
+
# successful, the API call returns the following HTTP status code: `204 No
|
2159
|
+
# Content`
|
2127
2160
|
# @param [String] name
|
2128
|
-
# Required.
|
2129
|
-
#
|
2161
|
+
# Required. Name of the developer. Use the following structure in your request: `
|
2162
|
+
# organizations/`org`/developers/`developer_id``
|
2130
2163
|
# @param [String] action
|
2131
2164
|
# Status of the developer. Valid values are `active` and `inactive`.
|
2132
2165
|
# @param [String] fields
|
@@ -3018,8 +3051,9 @@ module Google
|
|
3018
3051
|
|
3019
3052
|
# Returns a list of all developer attributes.
|
3020
3053
|
# @param [String] parent
|
3021
|
-
# Required. Email address of the developer for which attributes are being listed
|
3022
|
-
#
|
3054
|
+
# Required. Email address of the developer for which attributes are being listed.
|
3055
|
+
# Use the following structure in your request: `organizations/`org`/developers/`
|
3056
|
+
# developer_email``
|
3023
3057
|
# @param [String] fields
|
3024
3058
|
# Selector specifying which fields to include in a partial response.
|
3025
3059
|
# @param [String] quota_user
|
@@ -4281,6 +4315,10 @@ module Google
|
|
4281
4315
|
# GenerateDeployChangeReport) may be used to examine routing changes before
|
4282
4316
|
# issuing the deployment request, and its response will indicate if a sequenced
|
4283
4317
|
# rollout is recommended for the deployment.
|
4318
|
+
# @param [String] service_account
|
4319
|
+
# Google Cloud IAM service account. The service account represents the identity
|
4320
|
+
# of the deployed proxy, and determines what permissions it has. The format must
|
4321
|
+
# be ``ACCOUNT_ID`@`PROJECT`.iam.gserviceaccount.com`.
|
4284
4322
|
# @param [String] fields
|
4285
4323
|
# Selector specifying which fields to include in a partial response.
|
4286
4324
|
# @param [String] quota_user
|
@@ -4298,13 +4336,14 @@ module Google
|
|
4298
4336
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
4299
4337
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
4300
4338
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
4301
|
-
def deploy_organization_environment_api_revision(name, override: nil, sequenced_rollout: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4339
|
+
def deploy_organization_environment_api_revision(name, override: nil, sequenced_rollout: nil, service_account: nil, fields: nil, quota_user: nil, options: nil, &block)
|
4302
4340
|
command = make_simple_command(:post, 'v1/{+name}/deployments', options)
|
4303
4341
|
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
|
4304
4342
|
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
|
4305
4343
|
command.params['name'] = name unless name.nil?
|
4306
4344
|
command.query['override'] = override unless override.nil?
|
4307
4345
|
command.query['sequencedRollout'] = sequenced_rollout unless sequenced_rollout.nil?
|
4346
|
+
command.query['serviceAccount'] = service_account unless service_account.nil?
|
4308
4347
|
command.query['fields'] = fields unless fields.nil?
|
4309
4348
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
4310
4349
|
execute_or_queue_command(command, &block)
|
@@ -5896,6 +5935,10 @@ module Google
|
|
5896
5935
|
# replace other deployed revisions. By default, `override` is `false` and the
|
5897
5936
|
# deployment is rejected if other revisions of the shared flow are deployed in
|
5898
5937
|
# the environment.
|
5938
|
+
# @param [String] service_account
|
5939
|
+
# Google Cloud IAM service account. The service account represents the identity
|
5940
|
+
# of the deployed proxy, and determines what permissions it has. The format must
|
5941
|
+
# be ``ACCOUNT_ID`@`PROJECT`.iam.gserviceaccount.com`.
|
5899
5942
|
# @param [String] fields
|
5900
5943
|
# Selector specifying which fields to include in a partial response.
|
5901
5944
|
# @param [String] quota_user
|
@@ -5913,12 +5956,13 @@ module Google
|
|
5913
5956
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5914
5957
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5915
5958
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5916
|
-
def deploy_organization_environment_sharedflow_revision(name, override: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5959
|
+
def deploy_organization_environment_sharedflow_revision(name, override: nil, service_account: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5917
5960
|
command = make_simple_command(:post, 'v1/{+name}/deployments', options)
|
5918
5961
|
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment::Representation
|
5919
5962
|
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1Deployment
|
5920
5963
|
command.params['name'] = name unless name.nil?
|
5921
5964
|
command.query['override'] = override unless override.nil?
|
5965
|
+
command.query['serviceAccount'] = service_account unless service_account.nil?
|
5922
5966
|
command.query['fields'] = fields unless fields.nil?
|
5923
5967
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5924
5968
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.18.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: 2021-
|
11
|
+
date: 2021-08-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Apigee API V1. Simple REST clients
|
28
34
|
are Ruby client libraries that provide access to Google services via their HTTP
|
29
35
|
REST API endpoints. These libraries are generated and updated automatically based
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.18.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-apigee_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|