google-apis-apigee_v1 0.95.0 → 0.97.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3dc4c42c032e2ba03fea76d9524f8c1ecc53f643f07292a67c5c3b4c17412294
|
4
|
+
data.tar.gz: 57512e22de379f6346402fb4838e729a9a10cb2c4da974a4b4929cd89175ef6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd245fdd63ee93c0655a46d359978afaaa63b17f5688e90e322aee85c03de11f1739387538132aa9997e8e6fd380af2d71a2403519c35b3c71b9c5df31479f5a
|
7
|
+
data.tar.gz: 20e2da957fffb6fa51bbffecdd8de9f1bfffc1ab020a1a0c2bc02d1f006c7fd68c24f474ec80fff492191a07c2ba8a312703312d1e79f433b27b54abf7873020
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.97.0 (2024-11-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241116
|
6
|
+
|
7
|
+
### v0.96.0 (2024-10-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241011
|
10
|
+
|
3
11
|
### v0.95.0 (2024-10-06)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241004
|
@@ -4382,6 +4382,11 @@ module Google
|
|
4382
4382
|
# @return [String]
|
4383
4383
|
attr_accessor :arc_config_location
|
4384
4384
|
|
4385
|
+
# Configuration for resolving the client ip.
|
4386
|
+
# Corresponds to the JSON property `clientIpResolutionConfig`
|
4387
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfig]
|
4388
|
+
attr_accessor :client_ip_resolution_config
|
4389
|
+
|
4385
4390
|
# Time that the environment configuration was created.
|
4386
4391
|
# Corresponds to the JSON property `createTime`
|
4387
4392
|
# @return [String]
|
@@ -4506,6 +4511,7 @@ module Google
|
|
4506
4511
|
def update!(**args)
|
4507
4512
|
@addons_config = args[:addons_config] if args.key?(:addons_config)
|
4508
4513
|
@arc_config_location = args[:arc_config_location] if args.key?(:arc_config_location)
|
4514
|
+
@client_ip_resolution_config = args[:client_ip_resolution_config] if args.key?(:client_ip_resolution_config)
|
4509
4515
|
@create_time = args[:create_time] if args.key?(:create_time)
|
4510
4516
|
@data_collectors = args[:data_collectors] if args.key?(:data_collectors)
|
4511
4517
|
@debug_mask = args[:debug_mask] if args.key?(:debug_mask)
|
@@ -4530,6 +4536,50 @@ module Google
|
|
4530
4536
|
end
|
4531
4537
|
end
|
4532
4538
|
|
4539
|
+
# Configuration for resolving the client ip.
|
4540
|
+
class GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfig
|
4541
|
+
include Google::Apis::Core::Hashable
|
4542
|
+
|
4543
|
+
# Resolves the client ip based on a custom header.
|
4544
|
+
# Corresponds to the JSON property `headerIndexAlgorithm`
|
4545
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfigHeaderIndexAlgorithm]
|
4546
|
+
attr_accessor :header_index_algorithm
|
4547
|
+
|
4548
|
+
def initialize(**args)
|
4549
|
+
update!(**args)
|
4550
|
+
end
|
4551
|
+
|
4552
|
+
# Update properties of this object
|
4553
|
+
def update!(**args)
|
4554
|
+
@header_index_algorithm = args[:header_index_algorithm] if args.key?(:header_index_algorithm)
|
4555
|
+
end
|
4556
|
+
end
|
4557
|
+
|
4558
|
+
# Resolves the client ip based on a custom header.
|
4559
|
+
class GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfigHeaderIndexAlgorithm
|
4560
|
+
include Google::Apis::Core::Hashable
|
4561
|
+
|
4562
|
+
# The index of the ip in the header. (By default, value is 0 if missing)
|
4563
|
+
# Corresponds to the JSON property `ipHeaderIndex`
|
4564
|
+
# @return [Fixnum]
|
4565
|
+
attr_accessor :ip_header_index
|
4566
|
+
|
4567
|
+
# The name of the header to extract the client ip from.
|
4568
|
+
# Corresponds to the JSON property `ipHeaderName`
|
4569
|
+
# @return [String]
|
4570
|
+
attr_accessor :ip_header_name
|
4571
|
+
|
4572
|
+
def initialize(**args)
|
4573
|
+
update!(**args)
|
4574
|
+
end
|
4575
|
+
|
4576
|
+
# Update properties of this object
|
4577
|
+
def update!(**args)
|
4578
|
+
@ip_header_index = args[:ip_header_index] if args.key?(:ip_header_index)
|
4579
|
+
@ip_header_name = args[:ip_header_name] if args.key?(:ip_header_name)
|
4580
|
+
end
|
4581
|
+
end
|
4582
|
+
|
4533
4583
|
# EnvironmentGroup configuration. An environment group is used to group one or
|
4534
4584
|
# more Apigee environments under a single host name.
|
4535
4585
|
class GoogleCloudApigeeV1EnvironmentGroup
|
@@ -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.97.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241116"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -580,6 +580,18 @@ module Google
|
|
580
580
|
include Google::Apis::Core::JsonObjectSupport
|
581
581
|
end
|
582
582
|
|
583
|
+
class GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfig
|
584
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
|
+
|
586
|
+
include Google::Apis::Core::JsonObjectSupport
|
587
|
+
end
|
588
|
+
|
589
|
+
class GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfigHeaderIndexAlgorithm
|
590
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
591
|
+
|
592
|
+
include Google::Apis::Core::JsonObjectSupport
|
593
|
+
end
|
594
|
+
|
583
595
|
class GoogleCloudApigeeV1EnvironmentGroup
|
584
596
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
597
|
|
@@ -2898,6 +2910,8 @@ module Google
|
|
2898
2910
|
property :addons_config, as: 'addonsConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeAddonsConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeAddonsConfig::Representation
|
2899
2911
|
|
2900
2912
|
property :arc_config_location, as: 'arcConfigLocation'
|
2913
|
+
property :client_ip_resolution_config, as: 'clientIpResolutionConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfig::Representation
|
2914
|
+
|
2901
2915
|
property :create_time, as: 'createTime'
|
2902
2916
|
collection :data_collectors, as: 'dataCollectors', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollectorConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1DataCollectorConfig::Representation
|
2903
2917
|
|
@@ -2932,6 +2946,22 @@ module Google
|
|
2932
2946
|
end
|
2933
2947
|
end
|
2934
2948
|
|
2949
|
+
class GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfig
|
2950
|
+
# @private
|
2951
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2952
|
+
property :header_index_algorithm, as: 'headerIndexAlgorithm', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfigHeaderIndexAlgorithm, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfigHeaderIndexAlgorithm::Representation
|
2953
|
+
|
2954
|
+
end
|
2955
|
+
end
|
2956
|
+
|
2957
|
+
class GoogleCloudApigeeV1EnvironmentConfigClientIpResolutionConfigHeaderIndexAlgorithm
|
2958
|
+
# @private
|
2959
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2960
|
+
property :ip_header_index, as: 'ipHeaderIndex'
|
2961
|
+
property :ip_header_name, as: 'ipHeaderName'
|
2962
|
+
end
|
2963
|
+
end
|
2964
|
+
|
2935
2965
|
class GoogleCloudApigeeV1EnvironmentGroup
|
2936
2966
|
# @private
|
2937
2967
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11310,7 +11310,7 @@ module Google
|
|
11310
11310
|
|
11311
11311
|
# Create a security profile v2.
|
11312
11312
|
# @param [String] parent
|
11313
|
-
# Required. The parent resource name.
|
11313
|
+
# Required. The parent resource name. Format: `organizations/`org``
|
11314
11314
|
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2] google_cloud_apigee_v1_security_profile_v2_object
|
11315
11315
|
# @param [String] security_profile_v2_id
|
11316
11316
|
# Required. The security profile id.
|
@@ -11346,7 +11346,8 @@ module Google
|
|
11346
11346
|
|
11347
11347
|
# Delete a security profile v2.
|
11348
11348
|
# @param [String] name
|
11349
|
-
# Required. The name of the security profile v2 to delete.
|
11349
|
+
# Required. The name of the security profile v2 to delete. Format: `
|
11350
|
+
# organizations/`org`/securityProfilesV2/`profile``
|
11350
11351
|
# @param [String] fields
|
11351
11352
|
# Selector specifying which fields to include in a partial response.
|
11352
11353
|
# @param [String] quota_user
|
@@ -11376,7 +11377,8 @@ module Google
|
|
11376
11377
|
|
11377
11378
|
# Get a security profile v2.
|
11378
11379
|
# @param [String] name
|
11379
|
-
# Required. The security profile
|
11380
|
+
# Required. The name of the security profile v2 to get. Format: `organizations/`
|
11381
|
+
# org`/securityProfilesV2/`profile``
|
11380
11382
|
# @param [String] fields
|
11381
11383
|
# Selector specifying which fields to include in a partial response.
|
11382
11384
|
# @param [String] quota_user
|
@@ -11448,7 +11450,8 @@ module Google
|
|
11448
11450
|
# org`/securityProfilesV2/`profile`
|
11449
11451
|
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityProfileV2] google_cloud_apigee_v1_security_profile_v2_object
|
11450
11452
|
# @param [String] update_mask
|
11451
|
-
#
|
11453
|
+
# Optional. The list of fields to update. Valid fields to update are `
|
11454
|
+
# description` and `profileAssessmentConfigs`.
|
11452
11455
|
# @param [String] fields
|
11453
11456
|
# Selector specifying which fields to include in a partial response.
|
11454
11457
|
# @param [String] quota_user
|
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.97.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-
|
11
|
+
date: 2024-12-04 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.97.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Apigee API V1
|