google-apis-apigee_v1 0.86.0 → 0.88.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 +60 -13
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +16 -0
- 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: c6681a76955abe2eed16a9dbf429ed02eec50c2a45a384f467c1a2cfd1e13e30
|
4
|
+
data.tar.gz: 309a7da4748d92eddc878dbc48d4279f03f7ac9ac8db279170ce0c9936207a6c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4554a8396f8017841ba389241c66fb531038d36fa9274afccf51b1b263611f8f8fc8514490a3ef5efae9995bb2974792f00bd4cbca41357bdc142fcd6201e13a
|
7
|
+
data.tar.gz: d5c069ccd639f2097b00cd23a627153b945f29e82cad78531fd19e7df2d3a70322ba4df8cb2af52918eaaea6579ec7adf6399569ae49912940fc6495fee52d83
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.88.0 (2024-03-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240318
|
6
|
+
|
7
|
+
### v0.87.0 (2024-03-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240312
|
10
|
+
|
3
11
|
### v0.86.0 (2024-03-10)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240305
|
@@ -202,6 +202,40 @@ module Google
|
|
202
202
|
end
|
203
203
|
end
|
204
204
|
|
205
|
+
# Access logging configuration enables customers to ship the access logs from
|
206
|
+
# the tenant projects to their own project's cloud logging. The feature is at
|
207
|
+
# the instance level ad disabled by default. It can be enabled during
|
208
|
+
# CreateInstance or UpdateInstance.
|
209
|
+
class GoogleCloudApigeeV1AccessLoggingConfig
|
210
|
+
include Google::Apis::Core::Hashable
|
211
|
+
|
212
|
+
# Optional. Boolean flag that specifies whether the customer access log feature
|
213
|
+
# is enabled.
|
214
|
+
# Corresponds to the JSON property `enabled`
|
215
|
+
# @return [Boolean]
|
216
|
+
attr_accessor :enabled
|
217
|
+
alias_method :enabled?, :enabled
|
218
|
+
|
219
|
+
# Optional. Ship the access log entries that match the status_code defined in
|
220
|
+
# the filter. The status_code is the only expected/supported filter field. (Ex:
|
221
|
+
# status_code) The filter will parse it to the Common Expression Language
|
222
|
+
# semantics for expression evaluation to build the filter condition. (Ex: "
|
223
|
+
# filter": status_code >= 200 && status_code < 300 )
|
224
|
+
# Corresponds to the JSON property `filter`
|
225
|
+
# @return [String]
|
226
|
+
attr_accessor :filter
|
227
|
+
|
228
|
+
def initialize(**args)
|
229
|
+
update!(**args)
|
230
|
+
end
|
231
|
+
|
232
|
+
# Update properties of this object
|
233
|
+
def update!(**args)
|
234
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
235
|
+
@filter = args[:filter] if args.key?(:filter)
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
205
239
|
# Remove action. For example, "Remove" : ` "name" : "target.name", "success" :
|
206
240
|
# true `
|
207
241
|
class GoogleCloudApigeeV1AccessRemove
|
@@ -563,14 +597,17 @@ module Google
|
|
563
597
|
include Google::Apis::Core::Hashable
|
564
598
|
|
565
599
|
# Optional. Boolean flag that manages user access to the catalog item. When true,
|
566
|
-
# the catalog item can be viewed anonymously;
|
567
|
-
# may view it. Note: when the parent portal is
|
568
|
-
# management feature](https://cloud.google.com/apigee/
|
569
|
-
# portal/portal-audience#
|
570
|
-
# enrolling_in_the_beta_release_of_the_audience_management_feature), this
|
571
|
-
# is
|
572
|
-
# see [Manage the visibility of an
|
573
|
-
# apigee/docs/api-platform/publish/
|
600
|
+
# the catalog item has public visibility and can be viewed anonymously;
|
601
|
+
# otherwise, only registered users may view it. Note: when the parent portal is
|
602
|
+
# enrolled in the [audience management feature](https://cloud.google.com/apigee/
|
603
|
+
# docs/api-platform/publish/portal/portal-audience#
|
604
|
+
# enrolling_in_the_beta_release_of_the_audience_management_feature), and this
|
605
|
+
# flag is set to false, visibility is set to an indeterminate state and must be
|
606
|
+
# explicitly specified in the management UI (see [Manage the visibility of an
|
607
|
+
# API in your portal](https://cloud.google.com/apigee/docs/api-platform/publish/
|
608
|
+
# portal/publish-apis#visibility)). Additionally, when enrolled in the audience
|
609
|
+
# management feature, updates to this flag will be ignored as visibility
|
610
|
+
# permissions must be updated in the management UI.
|
574
611
|
# Corresponds to the JSON property `anonAllowed`
|
575
612
|
# @return [Boolean]
|
576
613
|
attr_accessor :anon_allowed
|
@@ -639,11 +676,12 @@ module Google
|
|
639
676
|
# feature](https://cloud.google.com/apigee/docs/api-platform/publish/portal/
|
640
677
|
# portal-audience#
|
641
678
|
# enrolling_in_the_beta_release_of_the_audience_management_feature), the
|
642
|
-
# visibility
|
643
|
-
#
|
644
|
-
# platform/publish/
|
645
|
-
#
|
646
|
-
# is
|
679
|
+
# visibility can be set to public on creation by setting the anonAllowed flag to
|
680
|
+
# true or further managed in the management UI (see [Manage the visibility of an
|
681
|
+
# API in your portal](https://cloud.google.com/apigee/docs/api-platform/publish/
|
682
|
+
# portal/publish-apis#visibility)) before it can be visible to any users. If not
|
683
|
+
# enrolled in the audience management feature, the visibility is managed by the `
|
684
|
+
# anonAllowed` flag.
|
647
685
|
# Corresponds to the JSON property `published`
|
648
686
|
# @return [Boolean]
|
649
687
|
attr_accessor :published
|
@@ -5064,6 +5102,14 @@ module Google
|
|
5064
5102
|
class GoogleCloudApigeeV1Instance
|
5065
5103
|
include Google::Apis::Core::Hashable
|
5066
5104
|
|
5105
|
+
# Access logging configuration enables customers to ship the access logs from
|
5106
|
+
# the tenant projects to their own project's cloud logging. The feature is at
|
5107
|
+
# the instance level ad disabled by default. It can be enabled during
|
5108
|
+
# CreateInstance or UpdateInstance.
|
5109
|
+
# Corresponds to the JSON property `accessLoggingConfig`
|
5110
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessLoggingConfig]
|
5111
|
+
attr_accessor :access_logging_config
|
5112
|
+
|
5067
5113
|
# Optional. Customer accept list represents the list of projects (id/number) on
|
5068
5114
|
# customer side that can privately connect to the service attachment. It is an
|
5069
5115
|
# optional field which the customers can provide during the instance creation.
|
@@ -5168,6 +5214,7 @@ module Google
|
|
5168
5214
|
|
5169
5215
|
# Update properties of this object
|
5170
5216
|
def update!(**args)
|
5217
|
+
@access_logging_config = args[:access_logging_config] if args.key?(:access_logging_config)
|
5171
5218
|
@consumer_accept_list = args[:consumer_accept_list] if args.key?(:consumer_accept_list)
|
5172
5219
|
@created_at = args[:created_at] if args.key?(:created_at)
|
5173
5220
|
@description = args[:description] if args.key?(:description)
|
@@ -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.88.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240318"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -58,6 +58,12 @@ module Google
|
|
58
58
|
include Google::Apis::Core::JsonObjectSupport
|
59
59
|
end
|
60
60
|
|
61
|
+
class GoogleCloudApigeeV1AccessLoggingConfig
|
62
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
|
+
|
64
|
+
include Google::Apis::Core::JsonObjectSupport
|
65
|
+
end
|
66
|
+
|
61
67
|
class GoogleCloudApigeeV1AccessRemove
|
62
68
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
63
69
|
|
@@ -1767,6 +1773,14 @@ module Google
|
|
1767
1773
|
end
|
1768
1774
|
end
|
1769
1775
|
|
1776
|
+
class GoogleCloudApigeeV1AccessLoggingConfig
|
1777
|
+
# @private
|
1778
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1779
|
+
property :enabled, as: 'enabled'
|
1780
|
+
property :filter, as: 'filter'
|
1781
|
+
end
|
1782
|
+
end
|
1783
|
+
|
1770
1784
|
class GoogleCloudApigeeV1AccessRemove
|
1771
1785
|
# @private
|
1772
1786
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2986,6 +3000,8 @@ module Google
|
|
2986
3000
|
class GoogleCloudApigeeV1Instance
|
2987
3001
|
# @private
|
2988
3002
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3003
|
+
property :access_logging_config, as: 'accessLoggingConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessLoggingConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1AccessLoggingConfig::Representation
|
3004
|
+
|
2989
3005
|
collection :consumer_accept_list, as: 'consumerAcceptList'
|
2990
3006
|
property :created_at, :numeric_string => true, as: 'createdAt'
|
2991
3007
|
property :description, as: 'description'
|
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.88.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: 2024-03-
|
11
|
+
date: 2024-03-24 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.88.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: []
|