google-apis-apigee_v1 0.34.0 → 0.35.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: 176882c80e05b154bda00bc06cc235c21f5b53563f8c93d606cebe8039ba7ce3
4
+ data.tar.gz: 31893d4336737555fe65b052bdb0584469e4ed0659009c00a7a26665fdf887cd
5
5
  SHA512:
6
- metadata.gz: 8da60016af457ad4c1f06a861ae91fcd67ad6b7c6915e15d9b4c559226e66af479ddc098cd9b8c3d8b0adfaca2de55b04cf35b10e2c8721234dc83c9571a2b4f
7
- data.tar.gz: 19dc40bc9de5dd75dc8bb28260083127d4fc8183eee0ed6555f097dc4adc867853db7b6c845032083d9223071a4685a565b54063d2de65d03b18578d73ae56f3
6
+ metadata.gz: dcfa78db9fcf0a1deaf29c70fff0c75fb8d27964762ce776620708def3162171ad6023951dd77c8ca5a50b3e7ec9b6364475001f9710f11b52186ee5af50c1d6
7
+ data.tar.gz: 3b7f71e9cff7a61d31d0d877154de65096b384c3dfa088f807078558ebb026f988fe9008019e9b3ab3f22d54e23fb4e4a744e732d9d6a1826fafbd5458ceaa65
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.35.0 (2022-02-15)
4
+
5
+ * Regenerated from discovery document revision 20220210
6
+
3
7
  ### v0.34.0 (2022-02-08)
4
8
 
5
9
  * 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)
@@ -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.35.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 = "20220210"
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
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.35.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-02-21 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.35.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: []