google-apis-apigee_v1 0.72.0 → 0.73.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a3f9a948ebf0f08c1ad2658c045b08c355645d6a2b6d92453ae2b9f62a90d33
|
4
|
+
data.tar.gz: '075985470adb7660f04f3251008d041c2c4f919735bc4f411dd2bd535b471f78'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5fb5781b155d7750376bdb5d12610dc5172cdfb173d03b9e4e9c12c097357bf155ec1f1b4cd5d39904eb3a33e9e8f2bfc067c4ab0fbd775d3d922fc7dc517937
|
7
|
+
data.tar.gz: '084a148ddc73b6b66bb75e2010e1e7690029aabaeed55840233abc47bf192808a7ea38688157ee3324a84fb1bbeb03a81c97b80c48ad41e2caffd500a23fbf31'
|
data/CHANGELOG.md
CHANGED
@@ -589,6 +589,12 @@ module Google
|
|
589
589
|
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperationGroup]
|
590
590
|
attr_accessor :graphql_operation_group
|
591
591
|
|
592
|
+
# List of gRPC operation configuration details associated with Apigee API
|
593
|
+
# proxies.
|
594
|
+
# Corresponds to the JSON property `grpcOperationGroup`
|
595
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationGroup]
|
596
|
+
attr_accessor :grpc_operation_group
|
597
|
+
|
592
598
|
# Response only. Modified time of this environment as milliseconds since epoch.
|
593
599
|
# Corresponds to the JSON property `lastModifiedAt`
|
594
600
|
# @return [Fixnum]
|
@@ -669,6 +675,7 @@ module Google
|
|
669
675
|
@display_name = args[:display_name] if args.key?(:display_name)
|
670
676
|
@environments = args[:environments] if args.key?(:environments)
|
671
677
|
@graphql_operation_group = args[:graphql_operation_group] if args.key?(:graphql_operation_group)
|
678
|
+
@grpc_operation_group = args[:grpc_operation_group] if args.key?(:grpc_operation_group)
|
672
679
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
673
680
|
@name = args[:name] if args.key?(:name)
|
674
681
|
@operation_group = args[:operation_group] if args.key?(:operation_group)
|
@@ -3638,6 +3645,12 @@ module Google
|
|
3638
3645
|
# @return [String]
|
3639
3646
|
attr_accessor :forward_proxy_uri
|
3640
3647
|
|
3648
|
+
#
|
3649
|
+
# Corresponds to the JSON property `hasAttachedFlowHooks`
|
3650
|
+
# @return [Boolean]
|
3651
|
+
attr_accessor :has_attached_flow_hooks
|
3652
|
+
alias_method :has_attached_flow_hooks?, :has_attached_flow_hooks
|
3653
|
+
|
3641
3654
|
# Output only. Last modification time of this environment as milliseconds since
|
3642
3655
|
# epoch.
|
3643
3656
|
# Corresponds to the JSON property `lastModifiedAt`
|
@@ -3680,6 +3693,7 @@ module Google
|
|
3680
3693
|
@description = args[:description] if args.key?(:description)
|
3681
3694
|
@display_name = args[:display_name] if args.key?(:display_name)
|
3682
3695
|
@forward_proxy_uri = args[:forward_proxy_uri] if args.key?(:forward_proxy_uri)
|
3696
|
+
@has_attached_flow_hooks = args[:has_attached_flow_hooks] if args.key?(:has_attached_flow_hooks)
|
3683
3697
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
3684
3698
|
@name = args[:name] if args.key?(:name)
|
3685
3699
|
@node_config = args[:node_config] if args.key?(:node_config)
|
@@ -4458,6 +4472,81 @@ module Google
|
|
4458
4472
|
end
|
4459
4473
|
end
|
4460
4474
|
|
4475
|
+
# Binds the resources in a proxy or remote service with the gRPC operation and
|
4476
|
+
# its associated quota enforcement.
|
4477
|
+
class GoogleCloudApigeeV1GrpcOperationConfig
|
4478
|
+
include Google::Apis::Core::Hashable
|
4479
|
+
|
4480
|
+
# Required. Name of the API proxy with which the gRPC operation and quota are
|
4481
|
+
# associated.
|
4482
|
+
# Corresponds to the JSON property `apiSource`
|
4483
|
+
# @return [String]
|
4484
|
+
attr_accessor :api_source
|
4485
|
+
|
4486
|
+
# Custom attributes associated with the operation.
|
4487
|
+
# Corresponds to the JSON property `attributes`
|
4488
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute>]
|
4489
|
+
attr_accessor :attributes
|
4490
|
+
|
4491
|
+
# List of unqualified gRPC method names for the proxy to which quota will be
|
4492
|
+
# applied. If this field is empty, the Quota will apply to all operations on the
|
4493
|
+
# gRPC service defined on the proxy. Example: Given a proxy that is configured
|
4494
|
+
# to serve com.petstore.PetService, the methods com.petstore.PetService.ListPets
|
4495
|
+
# and com.petstore.PetService.GetPet would be specified here as simply ["
|
4496
|
+
# ListPets", "GetPet"].
|
4497
|
+
# Corresponds to the JSON property `methods`
|
4498
|
+
# @return [Array<String>]
|
4499
|
+
attr_accessor :methods_prop
|
4500
|
+
|
4501
|
+
# Quota contains the essential parameters needed that can be applied on the
|
4502
|
+
# resources, methods, API source combination associated with this API product.
|
4503
|
+
# While Quota is optional, setting it prevents requests from exceeding the
|
4504
|
+
# provisioned parameters.
|
4505
|
+
# Corresponds to the JSON property `quota`
|
4506
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota]
|
4507
|
+
attr_accessor :quota
|
4508
|
+
|
4509
|
+
# Required. gRPC Service name associated to be associated with the API proxy, on
|
4510
|
+
# which quota rules can be applied upon.
|
4511
|
+
# Corresponds to the JSON property `service`
|
4512
|
+
# @return [String]
|
4513
|
+
attr_accessor :service
|
4514
|
+
|
4515
|
+
def initialize(**args)
|
4516
|
+
update!(**args)
|
4517
|
+
end
|
4518
|
+
|
4519
|
+
# Update properties of this object
|
4520
|
+
def update!(**args)
|
4521
|
+
@api_source = args[:api_source] if args.key?(:api_source)
|
4522
|
+
@attributes = args[:attributes] if args.key?(:attributes)
|
4523
|
+
@methods_prop = args[:methods_prop] if args.key?(:methods_prop)
|
4524
|
+
@quota = args[:quota] if args.key?(:quota)
|
4525
|
+
@service = args[:service] if args.key?(:service)
|
4526
|
+
end
|
4527
|
+
end
|
4528
|
+
|
4529
|
+
# List of gRPC operation configuration details associated with Apigee API
|
4530
|
+
# proxies.
|
4531
|
+
class GoogleCloudApigeeV1GrpcOperationGroup
|
4532
|
+
include Google::Apis::Core::Hashable
|
4533
|
+
|
4534
|
+
# Required. List of operation configurations for either Apigee API proxies that
|
4535
|
+
# are associated with this API product.
|
4536
|
+
# Corresponds to the JSON property `operationConfigs`
|
4537
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationConfig>]
|
4538
|
+
attr_accessor :operation_configs
|
4539
|
+
|
4540
|
+
def initialize(**args)
|
4541
|
+
update!(**args)
|
4542
|
+
end
|
4543
|
+
|
4544
|
+
# Update properties of this object
|
4545
|
+
def update!(**args)
|
4546
|
+
@operation_configs = args[:operation_configs] if args.key?(:operation_configs)
|
4547
|
+
end
|
4548
|
+
end
|
4549
|
+
|
4461
4550
|
#
|
4462
4551
|
class GoogleCloudApigeeV1IngressConfig
|
4463
4552
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.73.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230715"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -586,6 +586,18 @@ module Google
|
|
586
586
|
include Google::Apis::Core::JsonObjectSupport
|
587
587
|
end
|
588
588
|
|
589
|
+
class GoogleCloudApigeeV1GrpcOperationConfig
|
590
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
591
|
+
|
592
|
+
include Google::Apis::Core::JsonObjectSupport
|
593
|
+
end
|
594
|
+
|
595
|
+
class GoogleCloudApigeeV1GrpcOperationGroup
|
596
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
|
+
|
598
|
+
include Google::Apis::Core::JsonObjectSupport
|
599
|
+
end
|
600
|
+
|
589
601
|
class GoogleCloudApigeeV1IngressConfig
|
590
602
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
591
603
|
|
@@ -1654,6 +1666,8 @@ module Google
|
|
1654
1666
|
collection :environments, as: 'environments'
|
1655
1667
|
property :graphql_operation_group, as: 'graphqlOperationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GraphQlOperationGroup::Representation
|
1656
1668
|
|
1669
|
+
property :grpc_operation_group, as: 'grpcOperationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationGroup::Representation
|
1670
|
+
|
1657
1671
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
1658
1672
|
property :name, as: 'name'
|
1659
1673
|
property :operation_group, as: 'operationGroup', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1OperationGroup::Representation
|
@@ -2391,6 +2405,7 @@ module Google
|
|
2391
2405
|
property :description, as: 'description'
|
2392
2406
|
property :display_name, as: 'displayName'
|
2393
2407
|
property :forward_proxy_uri, as: 'forwardProxyUri'
|
2408
|
+
property :has_attached_flow_hooks, as: 'hasAttachedFlowHooks'
|
2394
2409
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
2395
2410
|
property :name, as: 'name'
|
2396
2411
|
property :node_config, as: 'nodeConfig', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1NodeConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1NodeConfig::Representation
|
@@ -2607,6 +2622,27 @@ module Google
|
|
2607
2622
|
end
|
2608
2623
|
end
|
2609
2624
|
|
2625
|
+
class GoogleCloudApigeeV1GrpcOperationConfig
|
2626
|
+
# @private
|
2627
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2628
|
+
property :api_source, as: 'apiSource'
|
2629
|
+
collection :attributes, as: 'attributes', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Attribute::Representation
|
2630
|
+
|
2631
|
+
collection :methods_prop, as: 'methods'
|
2632
|
+
property :quota, as: 'quota', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Quota::Representation
|
2633
|
+
|
2634
|
+
property :service, as: 'service'
|
2635
|
+
end
|
2636
|
+
end
|
2637
|
+
|
2638
|
+
class GoogleCloudApigeeV1GrpcOperationGroup
|
2639
|
+
# @private
|
2640
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2641
|
+
collection :operation_configs, as: 'operationConfigs', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationConfig, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1GrpcOperationConfig::Representation
|
2642
|
+
|
2643
|
+
end
|
2644
|
+
end
|
2645
|
+
|
2610
2646
|
class GoogleCloudApigeeV1IngressConfig
|
2611
2647
|
# @private
|
2612
2648
|
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.
|
4
|
+
version: 0.73.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: 2023-07-
|
11
|
+
date: 2023-07-23 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.73.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: []
|