google-apis-apigee_v1 0.29.0 → 0.33.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: b7553941e160f976a17757cc0d453e593ff8166fbf0fb57c9e81b473b52351aa
4
- data.tar.gz: f418c01d6482b359d9fab980de5c1078533fdb46ae81ed2271e35d28e71b9881
3
+ metadata.gz: b215f17311989d86700e89952f729a740ef5c2801c4e06213e2e69594f8efefd
4
+ data.tar.gz: 3875836b7868a657eb84f5e02dd2b6908f93f910d18e0035e92870e8c25590de
5
5
  SHA512:
6
- metadata.gz: e7246bcd7f167eb347398804a56f24dca232b67b23f2b97c1d8364182fffdcdfd27808f27fc46a42598e9126cb7c1d2d17d784d14306cf130825da234a918495
7
- data.tar.gz: d78fbb643d698095ee46349cc6d371bd900d03f0786f2c0baef5e40ee94ad6480cfae355e717b8451e75ddc9d85a783b527e23c29c34ad74d82c4a9985566612
6
+ metadata.gz: 619dafc595aa59b6069b338342362046eb16be5d4cb00c1423a466705d1efffade2c4eedef9082ed5bd39e84f8bab150f829c9679f8ada723697c63a804ebeb0
7
+ data.tar.gz: 15cc013073a8ddcdc53ff498cb699f6a8060b4d2f54e937ea07eb638302c1c43112afdb469c34514852330b5fb5b54db44adbba4e09ca1db2ffb71f395053409
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.33.0 (2022-02-01)
4
+
5
+ * Regenerated from discovery document revision 20220127
6
+
7
+ ### v0.32.0 (2022-01-21)
8
+
9
+ * Regenerated from discovery document revision 20220119
10
+ * Regenerated using generator version 0.4.1
11
+
12
+ ### v0.31.0 (2022-01-11)
13
+
14
+ * Regenerated from discovery document revision 20220105
15
+
16
+ ### v0.30.0 (2021-12-14)
17
+
18
+ * Regenerated from discovery document revision 20211209
19
+
3
20
  ### v0.29.0 (2021-12-07)
4
21
 
5
22
  * Regenerated from discovery document revision 20211203
data/OVERVIEW.md CHANGED
@@ -51,7 +51,7 @@ require "google/apis/apigee_v1"
51
51
  client = Google::Apis::ApigeeV1::ApigeeService.new
52
52
 
53
53
  # Authenticate calls
54
- client.authentication = # ... use the googleauth gem to create credentials
54
+ client.authorization = # ... use the googleauth gem to create credentials
55
55
  ```
56
56
 
57
57
  See the class reference docs for information on the methods you can call from a client.
@@ -639,7 +639,7 @@ module Google
639
639
  # @return [String]
640
640
  attr_accessor :apiproduct
641
641
 
642
- # Status of the API product.
642
+ # Status of the API product. Valid values are `approved` or `revoked`.
643
643
  # Corresponds to the JSON property `status`
644
644
  # @return [String]
645
645
  attr_accessor :status
@@ -2094,6 +2094,11 @@ module Google
2094
2094
  # @return [Fixnum]
2095
2095
  attr_accessor :count
2096
2096
 
2097
+ # Output only. The first transaction creation timestamp, recorded by UAP.
2098
+ # Corresponds to the JSON property `createTime`
2099
+ # @return [String]
2100
+ attr_accessor :create_time
2101
+
2097
2102
  # Optional. A conditional statement which is evaluated against the request
2098
2103
  # message to determine if it should be traced. Syntax matches that of on API
2099
2104
  # Proxy bundle flow Condition.
@@ -2132,6 +2137,7 @@ module Google
2132
2137
  # Update properties of this object
2133
2138
  def update!(**args)
2134
2139
  @count = args[:count] if args.key?(:count)
2140
+ @create_time = args[:create_time] if args.key?(:create_time)
2135
2141
  @filter = args[:filter] if args.key?(:filter)
2136
2142
  @name = args[:name] if args.key?(:name)
2137
2143
  @timeout = args[:timeout] if args.key?(:timeout)
@@ -3758,6 +3764,18 @@ module Google
3758
3764
  # @return [String]
3759
3765
  attr_accessor :host
3760
3766
 
3767
+ # Optional. IP range represents the customer-provided CIDR block of length 22
3768
+ # that will be used for the Apigee instance creation. This optional range, if
3769
+ # provided, should be freely available as part of larger named range the
3770
+ # customer has allocated to the Service Networking peering. If this is not
3771
+ # provided, Apigee will automatically request for any available /22 CIDR block
3772
+ # from Service Networking. The customer should use this CIDR block for
3773
+ # configuring their firewall needs to allow traffic from Apigee. Input format: "
3774
+ # a.b.c.d/22", Output format: a.b.c.d/22, e.f.g.h/28"
3775
+ # Corresponds to the JSON property `ipRange`
3776
+ # @return [String]
3777
+ attr_accessor :ip_range
3778
+
3761
3779
  # Output only. Time the instance was last modified in milliseconds since epoch.
3762
3780
  # Corresponds to the JSON property `lastModifiedAt`
3763
3781
  # @return [Fixnum]
@@ -3810,6 +3828,7 @@ module Google
3810
3828
  @disk_encryption_key_name = args[:disk_encryption_key_name] if args.key?(:disk_encryption_key_name)
3811
3829
  @display_name = args[:display_name] if args.key?(:display_name)
3812
3830
  @host = args[:host] if args.key?(:host)
3831
+ @ip_range = args[:ip_range] if args.key?(:ip_range)
3813
3832
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
3814
3833
  @location = args[:location] if args.key?(:location)
3815
3834
  @name = args[:name] if args.key?(:name)
@@ -3992,17 +4011,18 @@ module Google
3992
4011
  end
3993
4012
  end
3994
4013
 
3995
- # A collection of key, value string pairs
4014
+ # Collection of key/value string pairs.
3996
4015
  class GoogleCloudApigeeV1KeyValueMap
3997
4016
  include Google::Apis::Core::Hashable
3998
4017
 
3999
- # Optional. If `true` entry values will be encrypted.
4018
+ # Optional. Flag that specifies whether entry values will be encrypted. Enable
4019
+ # to encrypt entry values.
4000
4020
  # Corresponds to the JSON property `encrypted`
4001
4021
  # @return [Boolean]
4002
4022
  attr_accessor :encrypted
4003
4023
  alias_method :encrypted?, :encrypted
4004
4024
 
4005
- # Required. The id of the key value map.
4025
+ # Required. ID of the key value map.
4006
4026
  # Corresponds to the JSON property `name`
4007
4027
  # @return [String]
4008
4028
  attr_accessor :name
@@ -5224,7 +5244,13 @@ module Google
5224
5244
  # @return [String]
5225
5245
  attr_accessor :organization
5226
5246
 
5227
- # List of GCP projects associated with the Apigee organization.
5247
+ # GCP project associated with the Apigee organization
5248
+ # Corresponds to the JSON property `projectId`
5249
+ # @return [String]
5250
+ attr_accessor :project_id
5251
+
5252
+ # DEPRECATED: Use `project_id`. An Apigee Organization is mapped to a single
5253
+ # project.
5228
5254
  # Corresponds to the JSON property `projectIds`
5229
5255
  # @return [Array<String>]
5230
5256
  attr_accessor :project_ids
@@ -5236,6 +5262,7 @@ module Google
5236
5262
  # Update properties of this object
5237
5263
  def update!(**args)
5238
5264
  @organization = args[:organization] if args.key?(:organization)
5265
+ @project_id = args[:project_id] if args.key?(:project_id)
5239
5266
  @project_ids = args[:project_ids] if args.key?(:project_ids)
5240
5267
  end
5241
5268
  end
@@ -6622,7 +6649,7 @@ module Google
6622
6649
  # @return [String]
6623
6650
  attr_accessor :id
6624
6651
 
6625
- # The first transaction creation timestamp in millisecond, recoreded by UAP.
6652
+ # The first transaction creation timestamp in millisecond, recorded by UAP.
6626
6653
  # Corresponds to the JSON property `timestampMs`
6627
6654
  # @return [Fixnum]
6628
6655
  attr_accessor :timestamp_ms
@@ -7011,7 +7038,7 @@ module Google
7011
7038
  # @return [String]
7012
7039
  attr_accessor :protocol
7013
7040
 
7014
- # TLS configuration information for VirtualHosts and TargetServers.
7041
+ # TLS configuration information for virtual hosts and TargetServers.
7015
7042
  # Corresponds to the JSON property `sSLInfo`
7016
7043
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfo]
7017
7044
  attr_accessor :s_sl_info
@@ -7109,7 +7136,7 @@ module Google
7109
7136
  end
7110
7137
  end
7111
7138
 
7112
- # TLS configuration information for VirtualHosts and TargetServers.
7139
+ # TLS configuration information for virtual hosts and TargetServers.
7113
7140
  class GoogleCloudApigeeV1TlsInfo
7114
7141
  include Google::Apis::Core::Hashable
7115
7142
 
@@ -7156,7 +7183,6 @@ module Google
7156
7183
  attr_accessor :key_alias
7157
7184
 
7158
7185
  # Required if `client_auth_enabled` is true. The resource ID of the keystore.
7159
- # References not yet supported.
7160
7186
  # Corresponds to the JSON property `keyStore`
7161
7187
  # @return [String]
7162
7188
  attr_accessor :key_store
@@ -7166,7 +7192,7 @@ module Google
7166
7192
  # @return [Array<String>]
7167
7193
  attr_accessor :protocols
7168
7194
 
7169
- # The resource ID of the truststore. References not yet supported.
7195
+ # The resource ID of the truststore.
7170
7196
  # Corresponds to the JSON property `trustStore`
7171
7197
  # @return [String]
7172
7198
  attr_accessor :trust_store
@@ -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.29.0"
19
+ GEM_VERSION = "0.33.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211203"
25
+ REVISION = "20220127"
26
26
  end
27
27
  end
28
28
  end
@@ -1727,6 +1727,7 @@ module Google
1727
1727
  # @private
1728
1728
  class Representation < Google::Apis::Core::JsonRepresentation
1729
1729
  property :count, as: 'count'
1730
+ property :create_time, as: 'createTime'
1730
1731
  property :filter, as: 'filter'
1731
1732
  property :name, as: 'name'
1732
1733
  property :timeout, :numeric_string => true, as: 'timeout'
@@ -2158,6 +2159,7 @@ module Google
2158
2159
  property :disk_encryption_key_name, as: 'diskEncryptionKeyName'
2159
2160
  property :display_name, as: 'displayName'
2160
2161
  property :host, as: 'host'
2162
+ property :ip_range, as: 'ipRange'
2161
2163
  property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
2162
2164
  property :location, as: 'location'
2163
2165
  property :name, as: 'name'
@@ -2613,6 +2615,7 @@ module Google
2613
2615
  # @private
2614
2616
  class Representation < Google::Apis::Core::JsonRepresentation
2615
2617
  property :organization, as: 'organization'
2618
+ property :project_id, as: 'projectId'
2616
2619
  collection :project_ids, as: 'projectIds'
2617
2620
  end
2618
2621
  end
@@ -1454,10 +1454,10 @@ module Google
1454
1454
  execute_or_queue_command(command, &block)
1455
1455
  end
1456
1456
 
1457
- # Creates a key value map in an api proxy.
1457
+ # Creates a key value map in an API proxy.
1458
1458
  # @param [String] parent
1459
- # Required. The name of the environment in which to create the key value map.
1460
- # Must be of the form `organizations/`organization`/apis/`api``.
1459
+ # Required. Name of the environment in which to create the key value map. Use
1460
+ # the following structure in your request: `organizations/`org`/apis/`api``
1461
1461
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
1462
1462
  # @param [String] fields
1463
1463
  # Selector specifying which fields to include in a partial response.
@@ -1488,10 +1488,10 @@ module Google
1488
1488
  execute_or_queue_command(command, &block)
1489
1489
  end
1490
1490
 
1491
- # Delete a key value map in an api proxy.
1491
+ # Deletes a key value map from an API proxy.
1492
1492
  # @param [String] name
1493
- # Required. The name of the key value map. Must be of the form `organizations/`
1494
- # organization`/apis/`api`/keyvaluemaps/`keyvaluemap``.
1493
+ # Required. Name of the key value map. Use the following structure in your
1494
+ # request: `organizations/`org`/apis/`api`/keyvaluemaps/`keyvaluemap``
1495
1495
  # @param [String] fields
1496
1496
  # Selector specifying which fields to include in a partial response.
1497
1497
  # @param [String] quota_user
@@ -4165,7 +4165,8 @@ module Google
4165
4165
  # existing properties to the API, even if they are not being changed. If you
4166
4166
  # omit properties from the payload, the properties are removed. To get the
4167
4167
  # current list of properties for the environment, use the [Get Environment API](
4168
- # get).
4168
+ # get). **Note**: Both `PUT` and `POST` methods are supported for updating an
4169
+ # existing environment.
4169
4170
  # @param [String] name
4170
4171
  # Required. Name of the environment. Use the following structure in your request:
4171
4172
  # `organizations/`org`/environments/`env``
@@ -4244,7 +4245,8 @@ module Google
4244
4245
  # existing properties to the API, even if they are not being changed. If you
4245
4246
  # omit properties from the payload, the properties are removed. To get the
4246
4247
  # current list of properties for the environment, use the [Get Environment API](
4247
- # get).
4248
+ # get). **Note**: Both `PUT` and `POST` methods are supported for updating an
4249
+ # existing environment.
4248
4250
  # @param [String] name
4249
4251
  # Required. Name of the environment. Use the following structure in your request:
4250
4252
  # `organizations/`org`/environments/`env``
@@ -5661,8 +5663,9 @@ module Google
5661
5663
 
5662
5664
  # Creates a key value map in an environment.
5663
5665
  # @param [String] parent
5664
- # Required. The name of the environment in which to create the key value map.
5665
- # Must be of the form `organizations/`organization`/environments/`environment``.
5666
+ # Required. Name of the environment in which to create the key value map. Use
5667
+ # the following structure in your request: `organizations/`org`/environments/`
5668
+ # env``
5666
5669
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
5667
5670
  # @param [String] fields
5668
5671
  # Selector specifying which fields to include in a partial response.
@@ -5693,10 +5696,10 @@ module Google
5693
5696
  execute_or_queue_command(command, &block)
5694
5697
  end
5695
5698
 
5696
- # Delete a key value map in an environment.
5699
+ # Deletes a key value map from an environment.
5697
5700
  # @param [String] name
5698
- # Required. The name of the key value map. Must be of the form `organizations/`
5699
- # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap``.
5701
+ # Required. Name of the key value map. Use the following structure in your
5702
+ # request: `organizations/`org`/environments/`env`/keyvaluemaps/`keyvaluemap``
5700
5703
  # @param [String] fields
5701
5704
  # Selector specifying which fields to include in a partial response.
5702
5705
  # @param [String] quota_user
@@ -7784,8 +7787,8 @@ module Google
7784
7787
 
7785
7788
  # Creates a key value map in an organization.
7786
7789
  # @param [String] parent
7787
- # Required. The name of the organization in which to create the key value map
7788
- # file. Must be of the form `organizations/`organization``.
7790
+ # Required. Name of the organization in which to create the key value map file.
7791
+ # Use the following structure in your request: `organizations/`org``
7789
7792
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
7790
7793
  # @param [String] fields
7791
7794
  # Selector specifying which fields to include in a partial response.
@@ -7816,10 +7819,10 @@ module Google
7816
7819
  execute_or_queue_command(command, &block)
7817
7820
  end
7818
7821
 
7819
- # Delete a key value map in an organization.
7822
+ # Deletes a key value map from an organization.
7820
7823
  # @param [String] name
7821
- # Required. The name of the key value map. Must be of the form `organizations/`
7822
- # organization`/keyvaluemaps/`keyvaluemap``.
7824
+ # Required. Name of the key value map. Use the following structure in your
7825
+ # request: `organizations/`org`/keyvaluemaps/`keyvaluemap``
7823
7826
  # @param [String] fields
7824
7827
  # Selector specifying which fields to include in a partial response.
7825
7828
  # @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.29.0
4
+ version: 0.33.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: 2021-12-13 00:00:00.000000000 Z
11
+ date: 2022-02-07 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.33.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.2.17
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Apigee API V1