google-apis-apigee_v1 0.96.0 → 0.97.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: 0ede9b92648a914731efa3c5028c3bf8cadb55cdd6be11ed6fdab7849ff09f3a
4
- data.tar.gz: bf3f2bf0c9907961726ee1a0f052a29905b7d5096350c8a339c01a1913da4ed9
3
+ metadata.gz: 3dc4c42c032e2ba03fea76d9524f8c1ecc53f643f07292a67c5c3b4c17412294
4
+ data.tar.gz: 57512e22de379f6346402fb4838e729a9a10cb2c4da974a4b4929cd89175ef6b
5
5
  SHA512:
6
- metadata.gz: 1bafc6a295c785f444a961967f0e631fc3f7dd69a0d6f7a1adf96b1a3f148af154c0bf5559d51195a5cfe1f6f1f08c96a56aedf99a9c79f08cb4af511a032b46
7
- data.tar.gz: c74d2b46d574f9fd27478a962de9bd9abec610e7353d7219af7a5ce68fd878102f8ff741ebaddc67caedda7e11c4846b09a53826491d42337e3f67c4604860b8
6
+ metadata.gz: dd245fdd63ee93c0655a46d359978afaaa63b17f5688e90e322aee85c03de11f1739387538132aa9997e8e6fd380af2d71a2403519c35b3c71b9c5df31479f5a
7
+ data.tar.gz: 20e2da957fffb6fa51bbffecdd8de9f1bfffc1ab020a1a0c2bc02d1f006c7fd68c24f474ec80fff492191a07c2ba8a312703312d1e79f433b27b54abf7873020
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.96.0 (2024-10-20)
4
8
 
5
9
  * Regenerated from discovery document revision 20241011
@@ -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.96.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 = "20241011"
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
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.96.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-10-27 00:00:00.000000000 Z
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.96.0
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.21
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