google-apis-apigee_v1 0.34.0 → 0.37.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: d044dc5ccd8945937a6ffef690ffec6d012e532266992af9bd3c8451c9f1f3a6
4
- data.tar.gz: 4bb078b5158ab959509ac90db27dca9dda72996838c7be58ad94f56490f47b87
3
+ metadata.gz: 4efff66c60f653416c0b37fd19e54fa1e8c6b0597c64bf03c9ed123748ce8f4b
4
+ data.tar.gz: 62727e54a9590a78fb653fce48865bdb72df4e31c09081a95eccb7f54a9d1c91
5
5
  SHA512:
6
- metadata.gz: 8da60016af457ad4c1f06a861ae91fcd67ad6b7c6915e15d9b4c559226e66af479ddc098cd9b8c3d8b0adfaca2de55b04cf35b10e2c8721234dc83c9571a2b4f
7
- data.tar.gz: 19dc40bc9de5dd75dc8bb28260083127d4fc8183eee0ed6555f097dc4adc867853db7b6c845032083d9223071a4685a565b54063d2de65d03b18578d73ae56f3
6
+ metadata.gz: fe16dce328f954bcf2ac90cc3a7cbef93eb0661de082542e311f682897dd34426de9c30308a1439b9d8aa45012c01fefc781f3195d9d81cdf902107dfe0705c5
7
+ data.tar.gz: 67c2477d00fddb4ead8b928bc7cfc8042b6eb25322f788ffb56d58b770089003a8e36f1a19f8242705df05715485e0b3736ebd7208df0ed92e2cc7757149bd83
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.37.0 (2022-03-02)
4
+
5
+ * Regenerated from discovery document revision 20220301
6
+
7
+ ### v0.36.0 (2022-02-23)
8
+
9
+ * Regenerated from discovery document revision 20220217
10
+
11
+ ### v0.35.0 (2022-02-15)
12
+
13
+ * Regenerated from discovery document revision 20220210
14
+
3
15
  ### v0.34.0 (2022-02-08)
4
16
 
5
17
  * Regenerated from discovery document revision 20220205
@@ -659,6 +659,11 @@ module Google
659
659
  class GoogleCloudApigeeV1ApiProxy
660
660
  include Google::Apis::Core::Hashable
661
661
 
662
+ # Output only. The type of the API proxy.
663
+ # Corresponds to the JSON property `apiProxyType`
664
+ # @return [String]
665
+ attr_accessor :api_proxy_type
666
+
662
667
  # User labels applied to this API Proxy.
663
668
  # Corresponds to the JSON property `labels`
664
669
  # @return [Hash<String,String>]
@@ -679,6 +684,14 @@ module Google
679
684
  # @return [String]
680
685
  attr_accessor :name
681
686
 
687
+ # Output only. Whether this proxy is read-only. A read-only proxy cannot have
688
+ # new revisions created through calls to CreateApiProxyRevision. A proxy is read-
689
+ # only if it was generated by an archive.
690
+ # Corresponds to the JSON property `readOnly`
691
+ # @return [Boolean]
692
+ attr_accessor :read_only
693
+ alias_method :read_only?, :read_only
694
+
682
695
  # Output only. List of revisons defined for the API proxy.
683
696
  # Corresponds to the JSON property `revision`
684
697
  # @return [Array<String>]
@@ -690,10 +703,12 @@ module Google
690
703
 
691
704
  # Update properties of this object
692
705
  def update!(**args)
706
+ @api_proxy_type = args[:api_proxy_type] if args.key?(:api_proxy_type)
693
707
  @labels = args[:labels] if args.key?(:labels)
694
708
  @latest_revision_id = args[:latest_revision_id] if args.key?(:latest_revision_id)
695
709
  @meta_data = args[:meta_data] if args.key?(:meta_data)
696
710
  @name = args[:name] if args.key?(:name)
711
+ @read_only = args[:read_only] if args.key?(:read_only)
697
712
  @revision = args[:revision] if args.key?(:revision)
698
713
  end
699
714
  end
@@ -702,6 +717,14 @@ module Google
702
717
  class GoogleCloudApigeeV1ApiProxyRevision
703
718
  include Google::Apis::Core::Hashable
704
719
 
720
+ # Output only. The archive that generated this proxy revision. This field is
721
+ # only present on proxy revisions that were generated by an archive. Proxies
722
+ # generated by archives cannot be updated, deleted, or deployed to other
723
+ # environments. Format: `organizations/*/environments/*/archiveDeployments/*`
724
+ # Corresponds to the JSON property `archive`
725
+ # @return [String]
726
+ attr_accessor :archive
727
+
705
728
  # Base URL of the API proxy.
706
729
  # Corresponds to the JSON property `basepaths`
707
730
  # @return [Array<String>]
@@ -838,6 +861,7 @@ module Google
838
861
 
839
862
  # Update properties of this object
840
863
  def update!(**args)
864
+ @archive = args[:archive] if args.key?(:archive)
841
865
  @basepaths = args[:basepaths] if args.key?(:basepaths)
842
866
  @configuration_version = args[:configuration_version] if args.key?(:configuration_version)
843
867
  @context_info = args[:context_info] if args.key?(:context_info)
@@ -2909,12 +2933,13 @@ module Google
2909
2933
  end
2910
2934
  end
2911
2935
 
2912
- # Apigee Endpoint Attachment.
2936
+ # Apigee endpoint attachment. For more information, see Southbound networking
2937
+ # patterns.
2913
2938
  class GoogleCloudApigeeV1EndpointAttachment
2914
2939
  include Google::Apis::Core::Hashable
2915
2940
 
2916
- # Output only. Host that can be used in either HTTP Target Endpoint directly, or
2917
- # as the host in Target Server.
2941
+ # Output only. Host that can be used in either the HTTP target endpoint directly
2942
+ # or as the host in target server.
2918
2943
  # Corresponds to the JSON property `host`
2919
2944
  # @return [String]
2920
2945
  attr_accessor :host
@@ -2924,8 +2949,8 @@ module Google
2924
2949
  # @return [String]
2925
2950
  attr_accessor :location
2926
2951
 
2927
- # Name of the Endpoint Attachment in the following format: `organizations/`
2928
- # organization`/endpointAttachments/`endpoint_attachment``.
2952
+ # Name of the endpoint attachment. Use the following structure in your request: `
2953
+ # organizations/`org`/endpointAttachments/`endpoint_attachment``
2929
2954
  # Corresponds to the JSON property `name`
2930
2955
  # @return [String]
2931
2956
  attr_accessor :name
@@ -4433,12 +4458,12 @@ module Google
4433
4458
  class GoogleCloudApigeeV1ListEndpointAttachmentsResponse
4434
4459
  include Google::Apis::Core::Hashable
4435
4460
 
4436
- # Endpoint Attachments in the specified organization.
4461
+ # Endpoint attachments in the specified organization.
4437
4462
  # Corresponds to the JSON property `endpointAttachments`
4438
4463
  # @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment>]
4439
4464
  attr_accessor :endpoint_attachments
4440
4465
 
4441
- # Page token that you can include in a ListEndpointAttachments request to
4466
+ # Page token that you can include in an `ListEndpointAttachments` request to
4442
4467
  # retrieve the next page. If omitted, no subsequent pages exist.
4443
4468
  # Corresponds to the JSON property `nextPageToken`
4444
4469
  # @return [String]
@@ -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.34.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220205"
25
+ REVISION = "20220301"
26
26
  end
27
27
  end
28
28
  end
@@ -1390,11 +1390,13 @@ module Google
1390
1390
  class GoogleCloudApigeeV1ApiProxy
1391
1391
  # @private
1392
1392
  class Representation < Google::Apis::Core::JsonRepresentation
1393
+ property :api_proxy_type, as: 'apiProxyType'
1393
1394
  hash :labels, as: 'labels'
1394
1395
  property :latest_revision_id, as: 'latestRevisionId'
1395
1396
  property :meta_data, as: 'metaData', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1EntityMetadata::Representation
1396
1397
 
1397
1398
  property :name, as: 'name'
1399
+ property :read_only, as: 'readOnly'
1398
1400
  collection :revision, as: 'revision'
1399
1401
  end
1400
1402
  end
@@ -1402,6 +1404,7 @@ module Google
1402
1404
  class GoogleCloudApigeeV1ApiProxyRevision
1403
1405
  # @private
1404
1406
  class Representation < Google::Apis::Core::JsonRepresentation
1407
+ property :archive, as: 'archive'
1405
1408
  collection :basepaths, as: 'basepaths'
1406
1409
  property :configuration_version, as: 'configurationVersion', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConfigVersion, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ConfigVersion::Representation
1407
1410
 
@@ -2971,7 +2971,8 @@ module Google
2971
2971
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1DeveloperAppKey] google_cloud_apigee_v1_developer_app_key_object
2972
2972
  # @param [String] action
2973
2973
  # Approve or revoke the consumer key by setting this value to `approve` or `
2974
- # revoke`, respectively.
2974
+ # revoke`, respectively. The `Content-Type` header must be set to `application/
2975
+ # octet-stream`.
2975
2976
  # @param [String] fields
2976
2977
  # Selector specifying which fields to include in a partial response.
2977
2978
  # @param [String] quota_user
@@ -3470,13 +3471,13 @@ module Google
3470
3471
  execute_or_queue_command(command, &block)
3471
3472
  end
3472
3473
 
3473
- # Creates an EndpointAttachment. **Note:** Not supported for Apigee hybrid.
3474
+ # Creates an endpoint attachment. **Note:** Not supported for Apigee hybrid.
3474
3475
  # @param [String] parent
3475
- # Required. The Organization this EndpointAttachment will be created in.
3476
+ # Required. Organization the endpoint attachment will be created in.
3476
3477
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1EndpointAttachment] google_cloud_apigee_v1_endpoint_attachment_object
3477
3478
  # @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.
3479
+ # ID to use for the endpoint attachment. The ID can contain lowercase letters
3480
+ # and numbers, must start with a letter, and must be 1-20 characters in length.
3480
3481
  # @param [String] fields
3481
3482
  # Selector specifying which fields to include in a partial response.
3482
3483
  # @param [String] quota_user
@@ -3509,8 +3510,8 @@ module Google
3509
3510
 
3510
3511
  # Deletes an endpoint attachment.
3511
3512
  # @param [String] name
3512
- # Required. Name of the Endpoint Attachment in the following format: `
3513
- # organizations/`organization`/endpointAttachments/`endpoint_attachment``.
3513
+ # Required. Name of the endpoint attachment. Use the following structure in your
3514
+ # request: `organizations/`org`/endpointAttachments/`endpoint_attachment``
3514
3515
  # @param [String] fields
3515
3516
  # Selector specifying which fields to include in a partial response.
3516
3517
  # @param [String] quota_user
@@ -3538,10 +3539,10 @@ module Google
3538
3539
  execute_or_queue_command(command, &block)
3539
3540
  end
3540
3541
 
3541
- # Gets the specified EndpointAttachment.
3542
+ # Gets the endpoint attachment.
3542
3543
  # @param [String] name
3543
- # Required. Name of the Endpoint Attachment in the following format: `
3544
- # organizations/`organization`/endpointAttachments/`endpoint_attachment``.
3544
+ # Required. Name of the endpoint attachment. Use the following structure in your
3545
+ # request: `organizations/`org`/endpointAttachments/`endpoint_attachment``
3545
3546
  # @param [String] fields
3546
3547
  # Selector specifying which fields to include in a partial response.
3547
3548
  # @param [String] quota_user
@@ -3569,15 +3570,15 @@ module Google
3569
3570
  execute_or_queue_command(command, &block)
3570
3571
  end
3571
3572
 
3572
- # Lists the EndpointAttachments in the specified Organization.
3573
+ # Lists the endpoint attachments in an organization.
3573
3574
  # @param [String] parent
3574
- # Required. Name of the Organization for which to list Endpoint Attachments in
3575
- # the format: `organizations/`organization``.
3575
+ # Required. Name of the organization for which to list endpoint attachments. Use
3576
+ # the following structure in your request: `organizations/`org``
3576
3577
  # @param [Fixnum] page_size
3577
- # Optional. Maximum number of Endpoint Attachments to return. If unspecified, at
3578
+ # Optional. Maximum number of endpoint attachments to return. If unspecified, at
3578
3579
  # most 25 attachments will be returned.
3579
3580
  # @param [String] page_token
3580
- # Optional. Page token, returned from a previous ListEndpointAttachments call,
3581
+ # Optional. Page token, returned from a previous `ListEndpointAttachments` call,
3581
3582
  # that you can use to retrieve the next page.
3582
3583
  # @param [String] fields
3583
3584
  # Selector specifying which fields to include in a partial response.
@@ -4651,18 +4652,18 @@ module Google
4651
4652
  # deployment is rejected if other revisions of the API proxy are deployed in the
4652
4653
  # environment.
4653
4654
  # @param [Boolean] sequenced_rollout
4654
- # Flag that specifies whether to enable sequenced rollout. If set to `true`, a
4655
- # best-effort attempt will be made to roll out the routing rules corresponding
4656
- # to this deployment and the environment changes to add this deployment in a
4657
- # safe order. This reduces the risk of downtime that could be caused by changing
4658
- # the environment group's routing before the new destination for the affected
4659
- # traffic is ready to receive it. This should only be necessary if the new
4660
- # deployment will be capturing traffic from another environment under a shared
4661
- # environment group or if traffic will be rerouted to a different environment
4662
- # due to a base path removal. The [GenerateDeployChangeReport API](
4663
- # GenerateDeployChangeReport) may be used to examine routing changes before
4664
- # issuing the deployment request, and its response will indicate if a sequenced
4665
- # rollout is recommended for the deployment.
4655
+ # Flag that specifies whether to enable sequenced rollout. If set to `true`, the
4656
+ # routing rules for this deployment and the environment changes to add the
4657
+ # deployment will be rolled out in a safe order. This reduces the risk of
4658
+ # downtime that could be caused by changing the environment group's routing
4659
+ # before the new destination for the affected traffic is ready to receive it.
4660
+ # This should only be necessary if the new deployment will be capturing traffic
4661
+ # from another environment under a shared environment group or if traffic will
4662
+ # be rerouted to a different environment due to a base path removal. The [
4663
+ # GenerateDeployChangeReport API](GenerateDeployChangeReport) may be used to
4664
+ # examine routing changes before issuing the deployment request, and its
4665
+ # response will indicate if a sequenced rollout is recommended for the
4666
+ # deployment.
4666
4667
  # @param [String] service_account
4667
4668
  # Google Cloud IAM service account. The service account represents the identity
4668
4669
  # of the deployed proxy, and determines what permissions it has. The format must
@@ -4739,15 +4740,15 @@ module Google
4739
4740
  # Required. Name of the API proxy revision deployment in the following format: `
4740
4741
  # organizations/`org`/environments/`env`/apis/`api`/revisions/`rev``
4741
4742
  # @param [Boolean] sequenced_rollout
4742
- # Flag that specifies whether to enable sequenced rollout. If set to `true`, a
4743
- # best-effort attempt will be made to remove the environment group routing rules
4744
- # corresponding to this deployment before removing the deployment from the
4745
- # runtime. This is likely to be a rare use case; it is only needed when the
4746
- # intended effect of undeploying this proxy is to cause the traffic it currently
4747
- # handles to be rerouted to some other existing proxy in the environment group.
4748
- # The [GenerateUndeployChangeReport API](GenerateUndeployChangeReport) may be
4749
- # used to examine routing changes before issuing the undeployment request, and
4750
- # its response will indicate if a sequenced rollout is recommended for the
4743
+ # Flag that specifies whether to enable sequenced rollout. If set to `true`, the
4744
+ # environment group routing rules corresponding to this deployment will be
4745
+ # removed before removing the deployment from the runtime. This is likely to be
4746
+ # a rare use case; it is only needed when the intended effect of undeploying
4747
+ # this proxy is to cause the traffic it currently handles to be rerouted to some
4748
+ # other existing proxy in the environment group. The [
4749
+ # GenerateUndeployChangeReport API](GenerateUndeployChangeReport) may be used to
4750
+ # examine routing changes before issuing the undeployment request, and its
4751
+ # response will indicate if a sequenced rollout is recommended for the
4751
4752
  # undeployment.
4752
4753
  # @param [String] fields
4753
4754
  # Selector specifying which fields to include in a partial response.
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.34.0
4
+ version: 0.37.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-02-14 00:00:00.000000000 Z
11
+ date: 2022-03-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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.37.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: []