google-apis-apigee_v1 0.65.0 → 0.67.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: 26f2ae45e358950dfa073d60482c4069b881ae40454eafdf44c9f7cf5953544e
|
4
|
+
data.tar.gz: 7c9a259f278335947184540ae802fba9ccb381a4c55d1ed7681a1f2a7a55456d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3122330dbae1df6b4bee182e18195c61cd9bb898c20bb0ccfa28d513157ed3df790b500b87e8e2c0533c558c5a655057273dde65ba42c603269903770ef996d6
|
7
|
+
data.tar.gz: 05b3ae6266580bc73d432d0f20c195255c09b1f754c8544d59982915389e5107c3113232c6af8f222a6cdc7bd077a616fe4e24f633372a177cc56bbeb5d388fd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.67.0 (2023-04-16)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230410
|
6
|
+
|
7
|
+
### v0.66.0 (2023-03-26)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230312
|
10
|
+
|
3
11
|
### v0.65.0 (2023-03-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230303
|
@@ -2728,6 +2728,11 @@ module Google
|
|
2728
2728
|
class GoogleCloudApigeeV1DeploymentGroupConfig
|
2729
2729
|
include Google::Apis::Core::Hashable
|
2730
2730
|
|
2731
|
+
# Type of the deployment group, which will be either Standard or Extensible.
|
2732
|
+
# Corresponds to the JSON property `deploymentGroupType`
|
2733
|
+
# @return [String]
|
2734
|
+
attr_accessor :deployment_group_type
|
2735
|
+
|
2731
2736
|
# Name of the deployment group in the following format: `organizations/`org`/
|
2732
2737
|
# environments/`env`/deploymentGroups/`group``.
|
2733
2738
|
# Corresponds to the JSON property `name`
|
@@ -2752,6 +2757,7 @@ module Google
|
|
2752
2757
|
|
2753
2758
|
# Update properties of this object
|
2754
2759
|
def update!(**args)
|
2760
|
+
@deployment_group_type = args[:deployment_group_type] if args.key?(:deployment_group_type)
|
2755
2761
|
@name = args[:name] if args.key?(:name)
|
2756
2762
|
@revision_id = args[:revision_id] if args.key?(:revision_id)
|
2757
2763
|
@uid = args[:uid] if args.key?(:uid)
|
@@ -4524,9 +4530,10 @@ module Google
|
|
4524
4530
|
class GoogleCloudApigeeV1KeyValueMap
|
4525
4531
|
include Google::Apis::Core::Hashable
|
4526
4532
|
|
4527
|
-
#
|
4528
|
-
#
|
4529
|
-
# value
|
4533
|
+
# Required. Flag that specifies whether entry values will be encrypted. This
|
4534
|
+
# field is retained for backward compatibility and the value of encrypted will
|
4535
|
+
# always be `true`. Apigee X and hybrid do not support unencrypted key value
|
4536
|
+
# maps.
|
4530
4537
|
# Corresponds to the JSON property `encrypted`
|
4531
4538
|
# @return [Boolean]
|
4532
4539
|
attr_accessor :encrypted
|
@@ -5826,6 +5833,23 @@ module Google
|
|
5826
5833
|
# @return [String]
|
5827
5834
|
attr_accessor :analytics_region
|
5828
5835
|
|
5836
|
+
# Cloud KMS key name used for encrypting API consumer data. Required for US/EU
|
5837
|
+
# regions when [BillingType](#BillingType) is `SUBSCRIPTION`. When [BillingType](
|
5838
|
+
# #BillingType) is `EVALUATION` or the region is not US/EU, a Google-Managed
|
5839
|
+
# encryption key will be used. Format: `projects/*/locations/*/keyRings/*/
|
5840
|
+
# cryptoKeys/*`
|
5841
|
+
# Corresponds to the JSON property `apiConsumerDataEncryptionKeyName`
|
5842
|
+
# @return [String]
|
5843
|
+
attr_accessor :api_consumer_data_encryption_key_name
|
5844
|
+
|
5845
|
+
# This field is needed only for customers with control plane in US or EU. Apigee
|
5846
|
+
# stores some control plane data only in single region. This field determines
|
5847
|
+
# which single region Apigee should use. For example: "us-west1" when control
|
5848
|
+
# plane is in US or "europe-west2" when control plane is in EU.
|
5849
|
+
# Corresponds to the JSON property `apiConsumerDataLocation`
|
5850
|
+
# @return [String]
|
5851
|
+
attr_accessor :api_consumer_data_location
|
5852
|
+
|
5829
5853
|
# Output only. Apigee Project ID associated with the organization. Use this
|
5830
5854
|
# project to allowlist Apigee in the Service Attachment when using private
|
5831
5855
|
# service connect with Apigee.
|
@@ -5867,6 +5891,14 @@ module Google
|
|
5867
5891
|
# @return [String]
|
5868
5892
|
attr_accessor :ca_certificate
|
5869
5893
|
|
5894
|
+
# Cloud KMS key name used for encrypting control plane data that is stored in a
|
5895
|
+
# multi region. Required when [BillingType](#BillingType) is `SUBSCRIPTION`.
|
5896
|
+
# When [BillingType](#BillingType) is `EVALUATION`, a Google-Managed encryption
|
5897
|
+
# key will be used. Format: `projects/*/locations/*/keyRings/*/cryptoKeys/*`
|
5898
|
+
# Corresponds to the JSON property `controlPlaneEncryptionKeyName`
|
5899
|
+
# @return [String]
|
5900
|
+
attr_accessor :control_plane_encryption_key_name
|
5901
|
+
|
5870
5902
|
# Output only. Time that the Apigee organization was created in milliseconds
|
5871
5903
|
# since epoch.
|
5872
5904
|
# Corresponds to the JSON property `createdAt`
|
@@ -5970,11 +6002,14 @@ module Google
|
|
5970
6002
|
def update!(**args)
|
5971
6003
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
5972
6004
|
@analytics_region = args[:analytics_region] if args.key?(:analytics_region)
|
6005
|
+
@api_consumer_data_encryption_key_name = args[:api_consumer_data_encryption_key_name] if args.key?(:api_consumer_data_encryption_key_name)
|
6006
|
+
@api_consumer_data_location = args[:api_consumer_data_location] if args.key?(:api_consumer_data_location)
|
5973
6007
|
@apigee_project_id = args[:apigee_project_id] if args.key?(:apigee_project_id)
|
5974
6008
|
@attributes = args[:attributes] if args.key?(:attributes)
|
5975
6009
|
@authorized_network = args[:authorized_network] if args.key?(:authorized_network)
|
5976
6010
|
@billing_type = args[:billing_type] if args.key?(:billing_type)
|
5977
6011
|
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
|
6012
|
+
@control_plane_encryption_key_name = args[:control_plane_encryption_key_name] if args.key?(:control_plane_encryption_key_name)
|
5978
6013
|
@created_at = args[:created_at] if args.key?(:created_at)
|
5979
6014
|
@customer_name = args[:customer_name] if args.key?(:customer_name)
|
5980
6015
|
@description = args[:description] if args.key?(:description)
|
@@ -6192,9 +6227,15 @@ module Google
|
|
6192
6227
|
# @return [String]
|
6193
6228
|
attr_accessor :analytics_region
|
6194
6229
|
|
6195
|
-
#
|
6196
|
-
#
|
6197
|
-
#
|
6230
|
+
# Compute Engine network used for Service Networking to be peered with Apigee
|
6231
|
+
# runtime instances. See [Getting started with the Service Networking API](https:
|
6232
|
+
# //cloud.google.com/service-infrastructure/docs/service-networking/getting-
|
6233
|
+
# started). Apigee also supports shared VPC (that is, the host network project
|
6234
|
+
# is not the same as the one that is peering with Apigee). See [Shared VPC
|
6235
|
+
# overview](https://cloud.google.com/vpc/docs/shared-vpc). To use a shared VPC
|
6236
|
+
# network, use the following format: `projects/`host-project-id`/`region`/
|
6237
|
+
# networks/`network-name``. For example: `projects/my-sharedvpc-host/global/
|
6238
|
+
# networks/mynetwork`
|
6198
6239
|
# Corresponds to the JSON property `authorizedNetwork`
|
6199
6240
|
# @return [String]
|
6200
6241
|
attr_accessor :authorized_network
|
@@ -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.67.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 = "20230410"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2134,6 +2134,7 @@ module Google
|
|
2134
2134
|
class GoogleCloudApigeeV1DeploymentGroupConfig
|
2135
2135
|
# @private
|
2136
2136
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2137
|
+
property :deployment_group_type, as: 'deploymentGroupType'
|
2137
2138
|
property :name, as: 'name'
|
2138
2139
|
property :revision_id, :numeric_string => true, as: 'revisionId'
|
2139
2140
|
property :uid, as: 'uid'
|
@@ -3028,11 +3029,14 @@ module Google
|
|
3028
3029
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AddonsConfig::Representation
|
3029
3030
|
|
3030
3031
|
property :analytics_region, as: 'analyticsRegion'
|
3032
|
+
property :api_consumer_data_encryption_key_name, as: 'apiConsumerDataEncryptionKeyName'
|
3033
|
+
property :api_consumer_data_location, as: 'apiConsumerDataLocation'
|
3031
3034
|
property :apigee_project_id, as: 'apigeeProjectId'
|
3032
3035
|
collection :attributes, as: 'attributes'
|
3033
3036
|
property :authorized_network, as: 'authorizedNetwork'
|
3034
3037
|
property :billing_type, as: 'billingType'
|
3035
3038
|
property :ca_certificate, :base64 => true, as: 'caCertificate'
|
3039
|
+
property :control_plane_encryption_key_name, as: 'controlPlaneEncryptionKeyName'
|
3036
3040
|
property :created_at, :numeric_string => true, as: 'createdAt'
|
3037
3041
|
property :customer_name, as: 'customerName'
|
3038
3042
|
property :description, as: 'description'
|
@@ -9214,13 +9214,7 @@ module Google
|
|
9214
9214
|
end
|
9215
9215
|
|
9216
9216
|
# Lists operations that match the specified filter in the request. If the server
|
9217
|
-
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
9218
|
-
# binding allows API services to override the binding to use different resource
|
9219
|
-
# name schemes, such as `users/*/operations`. To override the binding, API
|
9220
|
-
# services can add a binding such as `"/v1/`name=users/*`/operations"` to their
|
9221
|
-
# service configuration. For backwards compatibility, the default name includes
|
9222
|
-
# the operations collection id, however overriding users must ensure the name
|
9223
|
-
# binding is the parent resource, without the operations collection id.
|
9217
|
+
# doesn't support this method, it returns `UNIMPLEMENTED`.
|
9224
9218
|
# @param [String] name
|
9225
9219
|
# The name of the operation's parent resource.
|
9226
9220
|
# @param [String] filter
|
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.67.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-04-23 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.67.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: []
|