google-apis-apigee_v1 0.37.0 → 0.38.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5430c4726c07ebde79e13a8f2fec3f766fcd5d2f6f193322f56d7c40f9b1673f
|
4
|
+
data.tar.gz: 18b0efa86021665c189c425626834d81a6d8c39b6810cfb7c349a175aead7a5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dce7135d4728bb4c294b1973f8c624766085e728a37b893ffaaf63670d3b902696884f6cfc53214b76a8dde8051117c54465b9e8341a5a9635a7aa6c85bd7bbe
|
7
|
+
data.tar.gz: 96c7f6c09b12dc86bdca3583fe6eaeaf4ed26e2444b5be6f17f56e2bef7307b444c661d1a5937e85ef38ae13c795c59a9da76707bb94eae18eac6276937d6810
|
data/CHANGELOG.md
CHANGED
@@ -3630,6 +3630,67 @@ module Google
|
|
3630
3630
|
end
|
3631
3631
|
end
|
3632
3632
|
|
3633
|
+
# The response for GetAsyncQueryResultUrl
|
3634
|
+
class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
|
3635
|
+
include Google::Apis::Core::Hashable
|
3636
|
+
|
3637
|
+
# The list of Signed URLs generated by the CreateAsyncQuery request
|
3638
|
+
# Corresponds to the JSON property `urls`
|
3639
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo>]
|
3640
|
+
attr_accessor :urls
|
3641
|
+
|
3642
|
+
def initialize(**args)
|
3643
|
+
update!(**args)
|
3644
|
+
end
|
3645
|
+
|
3646
|
+
# Update properties of this object
|
3647
|
+
def update!(**args)
|
3648
|
+
@urls = args[:urls] if args.key?(:urls)
|
3649
|
+
end
|
3650
|
+
end
|
3651
|
+
|
3652
|
+
# A Signed URL and the relevant metadata associated with it.
|
3653
|
+
class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo
|
3654
|
+
include Google::Apis::Core::Hashable
|
3655
|
+
|
3656
|
+
# The MD5 Hash of the JSON data
|
3657
|
+
# Corresponds to the JSON property `md5`
|
3658
|
+
# @return [String]
|
3659
|
+
attr_accessor :md5
|
3660
|
+
|
3661
|
+
# The size of the returned file in bytes
|
3662
|
+
# Corresponds to the JSON property `sizeBytes`
|
3663
|
+
# @return [Fixnum]
|
3664
|
+
attr_accessor :size_bytes
|
3665
|
+
|
3666
|
+
# The signed URL of the JSON data. Will be of the form `https://storage.
|
3667
|
+
# googleapis.com/example-bucket/cat.jpeg?X-Goog-Algorithm= GOOG4-RSA-SHA256&X-
|
3668
|
+
# Goog-Credential=example%40example-project.iam.gserviceaccount .com%2F20181026%
|
3669
|
+
# 2Fus-central1%2Fstorage%2Fgoog4_request&X-Goog-Date=20181026T18 1309Z&X-Goog-
|
3670
|
+
# Expires=900&X-Goog-SignedHeaders=host&X-Goog-Signature=247a2aa45f16
|
3671
|
+
# df4d187d54e7cc46e4731b1e6273242c4f4c39a1d2507a0e58706e25e3a85a7dbb891d62afa849
|
3672
|
+
# ef8e260c1db863d9ace85ff0a184b894b117fe46d1225c82f2aa19efd52cf21d3e2022b3b868dc
|
3673
|
+
# aca2741951ed5bf3bb25a34f5e9316a2841e8ff4c530b22ceaa1c5ce09c7cbb5732631510c2058
|
3674
|
+
# 61723f5594de3aea497f195456a2ff2bdd0d13bad47289d8611b6f9cfeef0c46c91a455b94e90a
|
3675
|
+
# 924f722292d21e24d31dcfb38ce0c0f353ffa5a9756fc2a9f2b40bc2113206a81e324fc4fd6823
|
3676
|
+
# 9163fa845c8ae7eca1fcf6e5bb48b3200983c56c5ca81fffb151cca7402beddfc4a76b13344703
|
3677
|
+
# 2ea7abedc098d2eb14a7`
|
3678
|
+
# Corresponds to the JSON property `uri`
|
3679
|
+
# @return [String]
|
3680
|
+
attr_accessor :uri
|
3681
|
+
|
3682
|
+
def initialize(**args)
|
3683
|
+
update!(**args)
|
3684
|
+
end
|
3685
|
+
|
3686
|
+
# Update properties of this object
|
3687
|
+
def update!(**args)
|
3688
|
+
@md5 = args[:md5] if args.key?(:md5)
|
3689
|
+
@size_bytes = args[:size_bytes] if args.key?(:size_bytes)
|
3690
|
+
@uri = args[:uri] if args.key?(:uri)
|
3691
|
+
end
|
3692
|
+
end
|
3693
|
+
|
3633
3694
|
# Request for GetSyncAuthorization.
|
3634
3695
|
class GoogleCloudApigeeV1GetSyncAuthorizationRequest
|
3635
3696
|
include Google::Apis::Core::Hashable
|
@@ -3800,6 +3861,15 @@ module Google
|
|
3800
3861
|
class GoogleCloudApigeeV1Instance
|
3801
3862
|
include Google::Apis::Core::Hashable
|
3802
3863
|
|
3864
|
+
# Optional. Customer accept list represents the list of projects (id/number) on
|
3865
|
+
# customer side that can privately connect to the service attachment. It is an
|
3866
|
+
# optional field which the customers can provide during the instance creation.
|
3867
|
+
# By default, the customer project associated with the Apigee organization will
|
3868
|
+
# be included to the list.
|
3869
|
+
# Corresponds to the JSON property `consumerAcceptList`
|
3870
|
+
# @return [Array<String>]
|
3871
|
+
attr_accessor :consumer_accept_list
|
3872
|
+
|
3803
3873
|
# Output only. Time the instance was created in milliseconds since epoch.
|
3804
3874
|
# Corresponds to the JSON property `createdAt`
|
3805
3875
|
# @return [Fixnum]
|
@@ -3875,6 +3945,14 @@ module Google
|
|
3875
3945
|
# @return [String]
|
3876
3946
|
attr_accessor :runtime_version
|
3877
3947
|
|
3948
|
+
# Output only. Resource name of the service attachment created for the instance
|
3949
|
+
# in the format: `projects/*/regions/*/serviceAttachments/*` Apigee customers
|
3950
|
+
# can privately forward traffic to this service attachment using the PSC
|
3951
|
+
# endpoints.
|
3952
|
+
# Corresponds to the JSON property `serviceAttachment`
|
3953
|
+
# @return [String]
|
3954
|
+
attr_accessor :service_attachment
|
3955
|
+
|
3878
3956
|
# Output only. State of the instance. Values other than `ACTIVE` means the
|
3879
3957
|
# resource is not ready to use.
|
3880
3958
|
# Corresponds to the JSON property `state`
|
@@ -3887,6 +3965,7 @@ module Google
|
|
3887
3965
|
|
3888
3966
|
# Update properties of this object
|
3889
3967
|
def update!(**args)
|
3968
|
+
@consumer_accept_list = args[:consumer_accept_list] if args.key?(:consumer_accept_list)
|
3890
3969
|
@created_at = args[:created_at] if args.key?(:created_at)
|
3891
3970
|
@description = args[:description] if args.key?(:description)
|
3892
3971
|
@disk_encryption_key_name = args[:disk_encryption_key_name] if args.key?(:disk_encryption_key_name)
|
@@ -3899,6 +3978,7 @@ module Google
|
|
3899
3978
|
@peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
|
3900
3979
|
@port = args[:port] if args.key?(:port)
|
3901
3980
|
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
3981
|
+
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
3902
3982
|
@state = args[:state] if args.key?(:state)
|
3903
3983
|
end
|
3904
3984
|
end
|
@@ -5158,9 +5238,10 @@ module Google
|
|
5158
5238
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig]
|
5159
5239
|
attr_accessor :addons_config
|
5160
5240
|
|
5161
|
-
# Required.
|
5162
|
-
#
|
5163
|
-
# platform/get-
|
5241
|
+
# Required. DEPRECATED: This field will be deprecated once Apigee supports DRZ.
|
5242
|
+
# Primary GCP region for analytics data storage. For valid values, see [Create
|
5243
|
+
# an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-
|
5244
|
+
# started/create-org).
|
5164
5245
|
# Corresponds to the JSON property `analyticsRegion`
|
5165
5246
|
# @return [String]
|
5166
5247
|
attr_accessor :analytics_region
|
@@ -7230,9 +7311,13 @@ module Google
|
|
7230
7311
|
class GoogleCloudApigeeV1TlsInfo
|
7231
7312
|
include Google::Apis::Core::Hashable
|
7232
7313
|
|
7233
|
-
# The SSL/TLS cipher suites to be used.
|
7234
|
-
# listed in: http://docs.oracle.com/javase/8/docs/
|
7235
|
-
# StandardNames.html#ciphersuites
|
7314
|
+
# The SSL/TLS cipher suites to be used. For programmable proxies, it must be one
|
7315
|
+
# of the cipher suite names listed in: http://docs.oracle.com/javase/8/docs/
|
7316
|
+
# technotes/guides/security/StandardNames.html#ciphersuites. For configurable
|
7317
|
+
# proxies, it must follow the configuration specified in: https://
|
7318
|
+
# commondatastorage.googleapis.com/chromium-boringssl-docs/ssl.h.html#Cipher-
|
7319
|
+
# suite-configuration. This setting has no effect for configurable proxies when
|
7320
|
+
# negotiating TLS 1.3.
|
7236
7321
|
# Corresponds to the JSON property `ciphers`
|
7237
7322
|
# @return [Array<String>]
|
7238
7323
|
attr_accessor :ciphers
|
@@ -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.38.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220303"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -484,6 +484,18 @@ module Google
|
|
484
484
|
include Google::Apis::Core::JsonObjectSupport
|
485
485
|
end
|
486
486
|
|
487
|
+
class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
|
488
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
|
+
|
490
|
+
include Google::Apis::Core::JsonObjectSupport
|
491
|
+
end
|
492
|
+
|
493
|
+
class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo
|
494
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
495
|
+
|
496
|
+
include Google::Apis::Core::JsonObjectSupport
|
497
|
+
end
|
498
|
+
|
487
499
|
class GoogleCloudApigeeV1GetSyncAuthorizationRequest
|
488
500
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
489
501
|
|
@@ -2128,6 +2140,23 @@ module Google
|
|
2128
2140
|
end
|
2129
2141
|
end
|
2130
2142
|
|
2143
|
+
class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
|
2144
|
+
# @private
|
2145
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2146
|
+
collection :urls, as: 'urls', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo::Representation
|
2147
|
+
|
2148
|
+
end
|
2149
|
+
end
|
2150
|
+
|
2151
|
+
class GoogleCloudApigeeV1GetAsyncQueryResultUrlResponseUrlInfo
|
2152
|
+
# @private
|
2153
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2154
|
+
property :md5, as: 'md5'
|
2155
|
+
property :size_bytes, :numeric_string => true, as: 'sizeBytes'
|
2156
|
+
property :uri, as: 'uri'
|
2157
|
+
end
|
2158
|
+
end
|
2159
|
+
|
2131
2160
|
class GoogleCloudApigeeV1GetSyncAuthorizationRequest
|
2132
2161
|
# @private
|
2133
2162
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2179,6 +2208,7 @@ module Google
|
|
2179
2208
|
class GoogleCloudApigeeV1Instance
|
2180
2209
|
# @private
|
2181
2210
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2211
|
+
collection :consumer_accept_list, as: 'consumerAcceptList'
|
2182
2212
|
property :created_at, :numeric_string => true, as: 'createdAt'
|
2183
2213
|
property :description, as: 'description'
|
2184
2214
|
property :disk_encryption_key_name, as: 'diskEncryptionKeyName'
|
@@ -2191,6 +2221,7 @@ module Google
|
|
2191
2221
|
property :peering_cidr_range, as: 'peeringCidrRange'
|
2192
2222
|
property :port, as: 'port'
|
2193
2223
|
property :runtime_version, as: 'runtimeVersion'
|
2224
|
+
property :service_attachment, as: 'serviceAttachment'
|
2194
2225
|
property :state, as: 'state'
|
2195
2226
|
end
|
2196
2227
|
end
|
@@ -6062,6 +6062,39 @@ module Google
|
|
6062
6062
|
execute_or_queue_command(command, &block)
|
6063
6063
|
end
|
6064
6064
|
|
6065
|
+
# After the query is completed, use this API to retrieve the results. If the
|
6066
|
+
# request succeeds, and there is a non-zero result set, the result is sent to
|
6067
|
+
# the client as a list of urls to JSON files.
|
6068
|
+
# @param [String] name
|
6069
|
+
# Required. Name of the asynchronous query result to get. Must be of the form `
|
6070
|
+
# organizations/`org`/environments/`env`/queries/`queryId`/resulturl`.
|
6071
|
+
# @param [String] fields
|
6072
|
+
# Selector specifying which fields to include in a partial response.
|
6073
|
+
# @param [String] quota_user
|
6074
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
6075
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
6076
|
+
# @param [Google::Apis::RequestOptions] options
|
6077
|
+
# Request-specific options
|
6078
|
+
#
|
6079
|
+
# @yield [result, err] Result & error if block supplied
|
6080
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse] parsed result object
|
6081
|
+
# @yieldparam err [StandardError] error object if request failed
|
6082
|
+
#
|
6083
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse]
|
6084
|
+
#
|
6085
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
6086
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
6087
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
6088
|
+
def get_organization_environment_query_resulturl(name, fields: nil, quota_user: nil, options: nil, &block)
|
6089
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
6090
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse::Representation
|
6091
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1GetAsyncQueryResultUrlResponse
|
6092
|
+
command.params['name'] = name unless name.nil?
|
6093
|
+
command.query['fields'] = fields unless fields.nil?
|
6094
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
6095
|
+
execute_or_queue_command(command, &block)
|
6096
|
+
end
|
6097
|
+
|
6065
6098
|
# Return a list of Asynchronous Queries
|
6066
6099
|
# @param [String] parent
|
6067
6100
|
# Required. The parent resource name. Must be of the form `organizations/`org`/
|
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.38.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: 2022-03-
|
11
|
+
date: 2022-03-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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.38.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: []
|