google-apis-apigee_v1 0.30.0 → 0.34.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: 720f238f3c52bfd321cc5cc3284a9a08b018e42dfff656747f5a8e2efe9c23ee
4
- data.tar.gz: 26ea7d36d6e435cbdd98e5ebb3ddd4e6c574153bde1f071f8e462fe0fd6b0a87
3
+ metadata.gz: d044dc5ccd8945937a6ffef690ffec6d012e532266992af9bd3c8451c9f1f3a6
4
+ data.tar.gz: 4bb078b5158ab959509ac90db27dca9dda72996838c7be58ad94f56490f47b87
5
5
  SHA512:
6
- metadata.gz: 73d4f766c8178f6ea72ef4a24fe2c04dc7d24165edf10397a6fc6e93e73474fbb564ccae75edad9fad5af172ef14a3bad74cba09cb84c7038b8db7c4aa9e7bb8
7
- data.tar.gz: b37c1db2a6633ab39b7b9d8c7641859117c55693dd21a147ed4c82b02f98d34eca72f7e0979e8f86732182a5aba24c06713f0bcca933ba4117bebe0af6abc341
6
+ metadata.gz: 8da60016af457ad4c1f06a861ae91fcd67ad6b7c6915e15d9b4c559226e66af479ddc098cd9b8c3d8b0adfaca2de55b04cf35b10e2c8721234dc83c9571a2b4f
7
+ data.tar.gz: 19dc40bc9de5dd75dc8bb28260083127d4fc8183eee0ed6555f097dc4adc867853db7b6c845032083d9223071a4685a565b54063d2de65d03b18578d73ae56f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.34.0 (2022-02-08)
4
+
5
+ * Regenerated from discovery document revision 20220205
6
+
7
+ ### v0.33.0 (2022-02-01)
8
+
9
+ * Regenerated from discovery document revision 20220127
10
+
11
+ ### v0.32.0 (2022-01-21)
12
+
13
+ * Regenerated from discovery document revision 20220119
14
+ * Regenerated using generator version 0.4.1
15
+
16
+ ### v0.31.0 (2022-01-11)
17
+
18
+ * Regenerated from discovery document revision 20220105
19
+
3
20
  ### v0.30.0 (2021-12-14)
4
21
 
5
22
  * Regenerated from discovery document revision 20211209
@@ -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)
@@ -2903,6 +2909,45 @@ module Google
2903
2909
  end
2904
2910
  end
2905
2911
 
2912
+ # Apigee Endpoint Attachment.
2913
+ class GoogleCloudApigeeV1EndpointAttachment
2914
+ include Google::Apis::Core::Hashable
2915
+
2916
+ # Output only. Host that can be used in either HTTP Target Endpoint directly, or
2917
+ # as the host in Target Server.
2918
+ # Corresponds to the JSON property `host`
2919
+ # @return [String]
2920
+ attr_accessor :host
2921
+
2922
+ # Required. Location of the endpoint attachment.
2923
+ # Corresponds to the JSON property `location`
2924
+ # @return [String]
2925
+ attr_accessor :location
2926
+
2927
+ # Name of the Endpoint Attachment in the following format: `organizations/`
2928
+ # organization`/endpointAttachments/`endpoint_attachment``.
2929
+ # Corresponds to the JSON property `name`
2930
+ # @return [String]
2931
+ attr_accessor :name
2932
+
2933
+ # Format: projects/*/regions/*/serviceAttachments/*
2934
+ # Corresponds to the JSON property `serviceAttachment`
2935
+ # @return [String]
2936
+ attr_accessor :service_attachment
2937
+
2938
+ def initialize(**args)
2939
+ update!(**args)
2940
+ end
2941
+
2942
+ # Update properties of this object
2943
+ def update!(**args)
2944
+ @host = args[:host] if args.key?(:host)
2945
+ @location = args[:location] if args.key?(:location)
2946
+ @name = args[:name] if args.key?(:name)
2947
+ @service_attachment = args[:service_attachment] if args.key?(:service_attachment)
2948
+ end
2949
+ end
2950
+
2906
2951
  # Metadata common to many entities in this API.
2907
2952
  class GoogleCloudApigeeV1EntityMetadata
2908
2953
  include Google::Apis::Core::Hashable
@@ -3758,6 +3803,18 @@ module Google
3758
3803
  # @return [String]
3759
3804
  attr_accessor :host
3760
3805
 
3806
+ # Optional. IP range represents the customer-provided CIDR block of length 22
3807
+ # that will be used for the Apigee instance creation. This optional range, if
3808
+ # provided, should be freely available as part of larger named range the
3809
+ # customer has allocated to the Service Networking peering. If this is not
3810
+ # provided, Apigee will automatically request for any available /22 CIDR block
3811
+ # from Service Networking. The customer should use this CIDR block for
3812
+ # configuring their firewall needs to allow traffic from Apigee. Input format: "
3813
+ # a.b.c.d/22", Output format: a.b.c.d/22, e.f.g.h/28"
3814
+ # Corresponds to the JSON property `ipRange`
3815
+ # @return [String]
3816
+ attr_accessor :ip_range
3817
+
3761
3818
  # Output only. Time the instance was last modified in milliseconds since epoch.
3762
3819
  # Corresponds to the JSON property `lastModifiedAt`
3763
3820
  # @return [Fixnum]
@@ -3810,6 +3867,7 @@ module Google
3810
3867
  @disk_encryption_key_name = args[:disk_encryption_key_name] if args.key?(:disk_encryption_key_name)
3811
3868
  @display_name = args[:display_name] if args.key?(:display_name)
3812
3869
  @host = args[:host] if args.key?(:host)
3870
+ @ip_range = args[:ip_range] if args.key?(:ip_range)
3813
3871
  @last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
3814
3872
  @location = args[:location] if args.key?(:location)
3815
3873
  @name = args[:name] if args.key?(:name)
@@ -3992,17 +4050,18 @@ module Google
3992
4050
  end
3993
4051
  end
3994
4052
 
3995
- # A collection of key, value string pairs
4053
+ # Collection of key/value string pairs.
3996
4054
  class GoogleCloudApigeeV1KeyValueMap
3997
4055
  include Google::Apis::Core::Hashable
3998
4056
 
3999
- # Optional. If `true` entry values will be encrypted.
4057
+ # Optional. Flag that specifies whether entry values will be encrypted. Enable
4058
+ # to encrypt entry values.
4000
4059
  # Corresponds to the JSON property `encrypted`
4001
4060
  # @return [Boolean]
4002
4061
  attr_accessor :encrypted
4003
4062
  alias_method :encrypted?, :encrypted
4004
4063
 
4005
- # Required. The id of the key value map.
4064
+ # Required. ID of the key value map.
4006
4065
  # Corresponds to the JSON property `name`
4007
4066
  # @return [String]
4008
4067
  attr_accessor :name
@@ -4370,6 +4429,32 @@ module Google
4370
4429
  end
4371
4430
  end
4372
4431
 
4432
+ # Response for ListEndpointAttachments method.
4433
+ class GoogleCloudApigeeV1ListEndpointAttachmentsResponse
4434
+ include Google::Apis::Core::Hashable
4435
+
4436
+ # Endpoint Attachments in the specified organization.
4437
+ # Corresponds to the JSON property `endpointAttachments`
4438
+ # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment>]
4439
+ attr_accessor :endpoint_attachments
4440
+
4441
+ # Page token that you can include in a ListEndpointAttachments request to
4442
+ # retrieve the next page. If omitted, no subsequent pages exist.
4443
+ # Corresponds to the JSON property `nextPageToken`
4444
+ # @return [String]
4445
+ attr_accessor :next_page_token
4446
+
4447
+ def initialize(**args)
4448
+ update!(**args)
4449
+ end
4450
+
4451
+ # Update properties of this object
4452
+ def update!(**args)
4453
+ @endpoint_attachments = args[:endpoint_attachments] if args.key?(:endpoint_attachments)
4454
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4455
+ end
4456
+ end
4457
+
4373
4458
  # Response for ListEnvironmentGroupAttachments.
4374
4459
  class GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
4375
4460
  include Google::Apis::Core::Hashable
@@ -6629,7 +6714,7 @@ module Google
6629
6714
  # @return [String]
6630
6715
  attr_accessor :id
6631
6716
 
6632
- # The first transaction creation timestamp in millisecond, recoreded by UAP.
6717
+ # The first transaction creation timestamp in millisecond, recorded by UAP.
6633
6718
  # Corresponds to the JSON property `timestampMs`
6634
6719
  # @return [Fixnum]
6635
6720
  attr_accessor :timestamp_ms
@@ -7018,7 +7103,7 @@ module Google
7018
7103
  # @return [String]
7019
7104
  attr_accessor :protocol
7020
7105
 
7021
- # TLS configuration information for VirtualHosts and TargetServers.
7106
+ # TLS configuration information for virtual hosts and TargetServers.
7022
7107
  # Corresponds to the JSON property `sSLInfo`
7023
7108
  # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1TlsInfo]
7024
7109
  attr_accessor :s_sl_info
@@ -7116,7 +7201,7 @@ module Google
7116
7201
  end
7117
7202
  end
7118
7203
 
7119
- # TLS configuration information for VirtualHosts and TargetServers.
7204
+ # TLS configuration information for virtual hosts and TargetServers.
7120
7205
  class GoogleCloudApigeeV1TlsInfo
7121
7206
  include Google::Apis::Core::Hashable
7122
7207
 
@@ -7163,7 +7248,6 @@ module Google
7163
7248
  attr_accessor :key_alias
7164
7249
 
7165
7250
  # Required if `client_auth_enabled` is true. The resource ID of the keystore.
7166
- # References not yet supported.
7167
7251
  # Corresponds to the JSON property `keyStore`
7168
7252
  # @return [String]
7169
7253
  attr_accessor :key_store
@@ -7173,7 +7257,7 @@ module Google
7173
7257
  # @return [Array<String>]
7174
7258
  attr_accessor :protocols
7175
7259
 
7176
- # The resource ID of the truststore. References not yet supported.
7260
+ # The resource ID of the truststore.
7177
7261
  # Corresponds to the JSON property `trustStore`
7178
7262
  # @return [String]
7179
7263
  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.30.0"
19
+ GEM_VERSION = "0.34.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 = "20211209"
25
+ REVISION = "20220205"
26
26
  end
27
27
  end
28
28
  end
@@ -388,6 +388,12 @@ module Google
388
388
  include Google::Apis::Core::JsonObjectSupport
389
389
  end
390
390
 
391
+ class GoogleCloudApigeeV1EndpointAttachment
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
391
397
  class GoogleCloudApigeeV1EntityMetadata
392
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
399
 
@@ -646,6 +652,12 @@ module Google
646
652
  include Google::Apis::Core::JsonObjectSupport
647
653
  end
648
654
 
655
+ class GoogleCloudApigeeV1ListEndpointAttachmentsResponse
656
+ class Representation < Google::Apis::Core::JsonRepresentation; end
657
+
658
+ include Google::Apis::Core::JsonObjectSupport
659
+ end
660
+
649
661
  class GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
650
662
  class Representation < Google::Apis::Core::JsonRepresentation; end
651
663
 
@@ -1727,6 +1739,7 @@ module Google
1727
1739
  # @private
1728
1740
  class Representation < Google::Apis::Core::JsonRepresentation
1729
1741
  property :count, as: 'count'
1742
+ property :create_time, as: 'createTime'
1730
1743
  property :filter, as: 'filter'
1731
1744
  property :name, as: 'name'
1732
1745
  property :timeout, :numeric_string => true, as: 'timeout'
@@ -1932,6 +1945,16 @@ module Google
1932
1945
  end
1933
1946
  end
1934
1947
 
1948
+ class GoogleCloudApigeeV1EndpointAttachment
1949
+ # @private
1950
+ class Representation < Google::Apis::Core::JsonRepresentation
1951
+ property :host, as: 'host'
1952
+ property :location, as: 'location'
1953
+ property :name, as: 'name'
1954
+ property :service_attachment, as: 'serviceAttachment'
1955
+ end
1956
+ end
1957
+
1935
1958
  class GoogleCloudApigeeV1EntityMetadata
1936
1959
  # @private
1937
1960
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2158,6 +2181,7 @@ module Google
2158
2181
  property :disk_encryption_key_name, as: 'diskEncryptionKeyName'
2159
2182
  property :display_name, as: 'displayName'
2160
2183
  property :host, as: 'host'
2184
+ property :ip_range, as: 'ipRange'
2161
2185
  property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
2162
2186
  property :location, as: 'location'
2163
2187
  property :name, as: 'name'
@@ -2358,6 +2382,15 @@ module Google
2358
2382
  end
2359
2383
  end
2360
2384
 
2385
+ class GoogleCloudApigeeV1ListEndpointAttachmentsResponse
2386
+ # @private
2387
+ class Representation < Google::Apis::Core::JsonRepresentation
2388
+ collection :endpoint_attachments, as: 'endpointAttachments', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment::Representation
2389
+
2390
+ property :next_page_token, as: 'nextPageToken'
2391
+ end
2392
+ end
2393
+
2361
2394
  class GoogleCloudApigeeV1ListEnvironmentGroupAttachmentsResponse
2362
2395
  # @private
2363
2396
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -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
@@ -3470,6 +3470,144 @@ module Google
3470
3470
  execute_or_queue_command(command, &block)
3471
3471
  end
3472
3472
 
3473
+ # Creates an EndpointAttachment. **Note:** Not supported for Apigee hybrid.
3474
+ # @param [String] parent
3475
+ # Required. The Organization this EndpointAttachment will be created in.
3476
+ # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment] google_cloud_apigee_v1_endpoint_attachment_object
3477
+ # @param [String] endpoint_attachment_id
3478
+ # The ID to use for the endpoint attachment. ID must be a 1-20 characters string
3479
+ # with lowercase letters and numbers and must start with a letter.
3480
+ # @param [String] fields
3481
+ # Selector specifying which fields to include in a partial response.
3482
+ # @param [String] quota_user
3483
+ # Available to use for quota purposes for server-side applications. Can be any
3484
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3485
+ # @param [Google::Apis::RequestOptions] options
3486
+ # Request-specific options
3487
+ #
3488
+ # @yield [result, err] Result & error if block supplied
3489
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleLongrunningOperation] parsed result object
3490
+ # @yieldparam err [StandardError] error object if request failed
3491
+ #
3492
+ # @return [Google::Apis::ApigeeV1::GoogleLongrunningOperation]
3493
+ #
3494
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3495
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3496
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3497
+ def create_organization_endpoint_attachment(parent, google_cloud_apigee_v1_endpoint_attachment_object = nil, endpoint_attachment_id: nil, fields: nil, quota_user: nil, options: nil, &block)
3498
+ command = make_simple_command(:post, 'v1/{+parent}/endpointAttachments', options)
3499
+ command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment::Representation
3500
+ command.request_object = google_cloud_apigee_v1_endpoint_attachment_object
3501
+ command.response_representation = Google::Apis::ApigeeV1::GoogleLongrunningOperation::Representation
3502
+ command.response_class = Google::Apis::ApigeeV1::GoogleLongrunningOperation
3503
+ command.params['parent'] = parent unless parent.nil?
3504
+ command.query['endpointAttachmentId'] = endpoint_attachment_id unless endpoint_attachment_id.nil?
3505
+ command.query['fields'] = fields unless fields.nil?
3506
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3507
+ execute_or_queue_command(command, &block)
3508
+ end
3509
+
3510
+ # Deletes an endpoint attachment.
3511
+ # @param [String] name
3512
+ # Required. Name of the Endpoint Attachment in the following format: `
3513
+ # organizations/`organization`/endpointAttachments/`endpoint_attachment``.
3514
+ # @param [String] fields
3515
+ # Selector specifying which fields to include in a partial response.
3516
+ # @param [String] quota_user
3517
+ # Available to use for quota purposes for server-side applications. Can be any
3518
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3519
+ # @param [Google::Apis::RequestOptions] options
3520
+ # Request-specific options
3521
+ #
3522
+ # @yield [result, err] Result & error if block supplied
3523
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleLongrunningOperation] parsed result object
3524
+ # @yieldparam err [StandardError] error object if request failed
3525
+ #
3526
+ # @return [Google::Apis::ApigeeV1::GoogleLongrunningOperation]
3527
+ #
3528
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3529
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3530
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3531
+ def delete_organization_endpoint_attachment(name, fields: nil, quota_user: nil, options: nil, &block)
3532
+ command = make_simple_command(:delete, 'v1/{+name}', options)
3533
+ command.response_representation = Google::Apis::ApigeeV1::GoogleLongrunningOperation::Representation
3534
+ command.response_class = Google::Apis::ApigeeV1::GoogleLongrunningOperation
3535
+ command.params['name'] = name unless name.nil?
3536
+ command.query['fields'] = fields unless fields.nil?
3537
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3538
+ execute_or_queue_command(command, &block)
3539
+ end
3540
+
3541
+ # Gets the specified EndpointAttachment.
3542
+ # @param [String] name
3543
+ # Required. Name of the Endpoint Attachment in the following format: `
3544
+ # organizations/`organization`/endpointAttachments/`endpoint_attachment``.
3545
+ # @param [String] fields
3546
+ # Selector specifying which fields to include in a partial response.
3547
+ # @param [String] quota_user
3548
+ # Available to use for quota purposes for server-side applications. Can be any
3549
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3550
+ # @param [Google::Apis::RequestOptions] options
3551
+ # Request-specific options
3552
+ #
3553
+ # @yield [result, err] Result & error if block supplied
3554
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment] parsed result object
3555
+ # @yieldparam err [StandardError] error object if request failed
3556
+ #
3557
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment]
3558
+ #
3559
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3560
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3561
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3562
+ def get_organization_endpoint_attachment(name, fields: nil, quota_user: nil, options: nil, &block)
3563
+ command = make_simple_command(:get, 'v1/{+name}', options)
3564
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment::Representation
3565
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment
3566
+ command.params['name'] = name unless name.nil?
3567
+ command.query['fields'] = fields unless fields.nil?
3568
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3569
+ execute_or_queue_command(command, &block)
3570
+ end
3571
+
3572
+ # Lists the EndpointAttachments in the specified Organization.
3573
+ # @param [String] parent
3574
+ # Required. Name of the Organization for which to list Endpoint Attachments in
3575
+ # the format: `organizations/`organization``.
3576
+ # @param [Fixnum] page_size
3577
+ # Optional. Maximum number of Endpoint Attachments to return. If unspecified, at
3578
+ # most 25 attachments will be returned.
3579
+ # @param [String] page_token
3580
+ # Optional. Page token, returned from a previous ListEndpointAttachments call,
3581
+ # that you can use to retrieve the next page.
3582
+ # @param [String] fields
3583
+ # Selector specifying which fields to include in a partial response.
3584
+ # @param [String] quota_user
3585
+ # Available to use for quota purposes for server-side applications. Can be any
3586
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3587
+ # @param [Google::Apis::RequestOptions] options
3588
+ # Request-specific options
3589
+ #
3590
+ # @yield [result, err] Result & error if block supplied
3591
+ # @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEndpointAttachmentsResponse] parsed result object
3592
+ # @yieldparam err [StandardError] error object if request failed
3593
+ #
3594
+ # @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEndpointAttachmentsResponse]
3595
+ #
3596
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3597
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3598
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3599
+ def list_organization_endpoint_attachments(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3600
+ command = make_simple_command(:get, 'v1/{+parent}/endpointAttachments', options)
3601
+ command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEndpointAttachmentsResponse::Representation
3602
+ command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListEndpointAttachmentsResponse
3603
+ command.params['parent'] = parent unless parent.nil?
3604
+ command.query['pageSize'] = page_size unless page_size.nil?
3605
+ command.query['pageToken'] = page_token unless page_token.nil?
3606
+ command.query['fields'] = fields unless fields.nil?
3607
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3608
+ execute_or_queue_command(command, &block)
3609
+ end
3610
+
3473
3611
  # Creates a new environment group.
3474
3612
  # @param [String] parent
3475
3613
  # Required. Name of the organization in which to create the environment group in
@@ -4165,7 +4303,8 @@ module Google
4165
4303
  # existing properties to the API, even if they are not being changed. If you
4166
4304
  # omit properties from the payload, the properties are removed. To get the
4167
4305
  # current list of properties for the environment, use the [Get Environment API](
4168
- # get).
4306
+ # get). **Note**: Both `PUT` and `POST` methods are supported for updating an
4307
+ # existing environment.
4169
4308
  # @param [String] name
4170
4309
  # Required. Name of the environment. Use the following structure in your request:
4171
4310
  # `organizations/`org`/environments/`env``
@@ -4244,7 +4383,8 @@ module Google
4244
4383
  # existing properties to the API, even if they are not being changed. If you
4245
4384
  # omit properties from the payload, the properties are removed. To get the
4246
4385
  # current list of properties for the environment, use the [Get Environment API](
4247
- # get).
4386
+ # get). **Note**: Both `PUT` and `POST` methods are supported for updating an
4387
+ # existing environment.
4248
4388
  # @param [String] name
4249
4389
  # Required. Name of the environment. Use the following structure in your request:
4250
4390
  # `organizations/`org`/environments/`env``
@@ -5661,8 +5801,9 @@ module Google
5661
5801
 
5662
5802
  # Creates a key value map in an environment.
5663
5803
  # @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``.
5804
+ # Required. Name of the environment in which to create the key value map. Use
5805
+ # the following structure in your request: `organizations/`org`/environments/`
5806
+ # env``
5666
5807
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
5667
5808
  # @param [String] fields
5668
5809
  # Selector specifying which fields to include in a partial response.
@@ -5693,10 +5834,10 @@ module Google
5693
5834
  execute_or_queue_command(command, &block)
5694
5835
  end
5695
5836
 
5696
- # Delete a key value map in an environment.
5837
+ # Deletes a key value map from an environment.
5697
5838
  # @param [String] name
5698
- # Required. The name of the key value map. Must be of the form `organizations/`
5699
- # organization`/environments/`environment`/keyvaluemaps/`keyvaluemap``.
5839
+ # Required. Name of the key value map. Use the following structure in your
5840
+ # request: `organizations/`org`/environments/`env`/keyvaluemaps/`keyvaluemap``
5700
5841
  # @param [String] fields
5701
5842
  # Selector specifying which fields to include in a partial response.
5702
5843
  # @param [String] quota_user
@@ -7784,8 +7925,8 @@ module Google
7784
7925
 
7785
7926
  # Creates a key value map in an organization.
7786
7927
  # @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``.
7928
+ # Required. Name of the organization in which to create the key value map file.
7929
+ # Use the following structure in your request: `organizations/`org``
7789
7930
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueMap] google_cloud_apigee_v1_key_value_map_object
7790
7931
  # @param [String] fields
7791
7932
  # Selector specifying which fields to include in a partial response.
@@ -7816,10 +7957,10 @@ module Google
7816
7957
  execute_or_queue_command(command, &block)
7817
7958
  end
7818
7959
 
7819
- # Delete a key value map in an organization.
7960
+ # Deletes a key value map from an organization.
7820
7961
  # @param [String] name
7821
- # Required. The name of the key value map. Must be of the form `organizations/`
7822
- # organization`/keyvaluemaps/`keyvaluemap``.
7962
+ # Required. Name of the key value map. Use the following structure in your
7963
+ # request: `organizations/`org`/keyvaluemaps/`keyvaluemap``
7823
7964
  # @param [String] fields
7824
7965
  # Selector specifying which fields to include in a partial response.
7825
7966
  # @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.30.0
4
+ version: 0.34.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-02-14 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.30.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.34.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.3.4
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