google-apis-apigee_v1 0.112.0 → 0.113.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: e670d898145b359ba8c8f936674117899a8a76ab5dee9e3b5bb40822b1fd6d63
|
4
|
+
data.tar.gz: f0a919f05005098730af169cfaf4810ab2ae1f09fe71b73ea50a057850245135
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84e9857ef4d21f6e1c0ae6ca504e76dacf8cb6c7d96c2734f49ad5e2a1061ab257c2f0f96e930ed35f0b212e8a5c9f369cb19828ecee2ac8c796a90e07a5fafd
|
7
|
+
data.tar.gz: ca65d05761844dbf78af4a2a4ccf51bc1f6c9fb2359c6c546f709616f75abc7dd39c849bd16faf9787468c9c577a72c5addbce298aba2bb6ed160525ea700080
|
data/CHANGELOG.md
CHANGED
@@ -2096,7 +2096,7 @@ module Google
|
|
2096
2096
|
# @return [String]
|
2097
2097
|
attr_accessor :profile
|
2098
2098
|
|
2099
|
-
#
|
2099
|
+
# Optional. Scope of the resources for the computation. For Apigee, the
|
2100
2100
|
# environment is the scope of the resources.
|
2101
2101
|
# Corresponds to the JSON property `scope`
|
2102
2102
|
# @return [String]
|
@@ -6758,6 +6758,33 @@ module Google
|
|
6758
6758
|
end
|
6759
6759
|
end
|
6760
6760
|
|
6761
|
+
# Response for ListSecurityFeedback
|
6762
|
+
class GoogleCloudApigeeV1ListSecurityFeedbackResponse
|
6763
|
+
include Google::Apis::Core::Hashable
|
6764
|
+
|
6765
|
+
# A token that can be sent as `page_token` in `ListSecurityFeedbackRequest` to
|
6766
|
+
# retrieve the next page. If this field is omitted, there are no subsequent
|
6767
|
+
# pages.
|
6768
|
+
# Corresponds to the JSON property `nextPageToken`
|
6769
|
+
# @return [String]
|
6770
|
+
attr_accessor :next_page_token
|
6771
|
+
|
6772
|
+
# List of SecurityFeedback reports.
|
6773
|
+
# Corresponds to the JSON property `securityFeedback`
|
6774
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback>]
|
6775
|
+
attr_accessor :security_feedback
|
6776
|
+
|
6777
|
+
def initialize(**args)
|
6778
|
+
update!(**args)
|
6779
|
+
end
|
6780
|
+
|
6781
|
+
# Update properties of this object
|
6782
|
+
def update!(**args)
|
6783
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
6784
|
+
@security_feedback = args[:security_feedback] if args.key?(:security_feedback)
|
6785
|
+
end
|
6786
|
+
end
|
6787
|
+
|
6761
6788
|
# Response for ListSecurityIncidents.
|
6762
6789
|
class GoogleCloudApigeeV1ListSecurityIncidentsResponse
|
6763
6790
|
include Google::Apis::Core::Hashable
|
@@ -10376,6 +10403,94 @@ module Google
|
|
10376
10403
|
end
|
10377
10404
|
end
|
10378
10405
|
|
10406
|
+
# Represents a feedback report from an Advanced API Security customer.
|
10407
|
+
class GoogleCloudApigeeV1SecurityFeedback
|
10408
|
+
include Google::Apis::Core::Hashable
|
10409
|
+
|
10410
|
+
# Optional. Optional text the user can provide for additional, unstructured
|
10411
|
+
# context.
|
10412
|
+
# Corresponds to the JSON property `comment`
|
10413
|
+
# @return [String]
|
10414
|
+
attr_accessor :comment
|
10415
|
+
|
10416
|
+
# Output only. The time when this specific feedback id was created.
|
10417
|
+
# Corresponds to the JSON property `createTime`
|
10418
|
+
# @return [String]
|
10419
|
+
attr_accessor :create_time
|
10420
|
+
|
10421
|
+
# Optional. The display name of the feedback.
|
10422
|
+
# Corresponds to the JSON property `displayName`
|
10423
|
+
# @return [String]
|
10424
|
+
attr_accessor :display_name
|
10425
|
+
|
10426
|
+
# Required. One or more attribute/value pairs for constraining the feedback.
|
10427
|
+
# Corresponds to the JSON property `feedbackContexts`
|
10428
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedbackFeedbackContext>]
|
10429
|
+
attr_accessor :feedback_contexts
|
10430
|
+
|
10431
|
+
# Required. The type of feedback being submitted.
|
10432
|
+
# Corresponds to the JSON property `feedbackType`
|
10433
|
+
# @return [String]
|
10434
|
+
attr_accessor :feedback_type
|
10435
|
+
|
10436
|
+
# Output only. Identifier. The feedback name is intended to be a system-
|
10437
|
+
# generated uuid.
|
10438
|
+
# Corresponds to the JSON property `name`
|
10439
|
+
# @return [String]
|
10440
|
+
attr_accessor :name
|
10441
|
+
|
10442
|
+
# Optional. The reason for the feedback.
|
10443
|
+
# Corresponds to the JSON property `reason`
|
10444
|
+
# @return [String]
|
10445
|
+
attr_accessor :reason
|
10446
|
+
|
10447
|
+
# Output only. The time when this specific feedback id was updated.
|
10448
|
+
# Corresponds to the JSON property `updateTime`
|
10449
|
+
# @return [String]
|
10450
|
+
attr_accessor :update_time
|
10451
|
+
|
10452
|
+
def initialize(**args)
|
10453
|
+
update!(**args)
|
10454
|
+
end
|
10455
|
+
|
10456
|
+
# Update properties of this object
|
10457
|
+
def update!(**args)
|
10458
|
+
@comment = args[:comment] if args.key?(:comment)
|
10459
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
10460
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
10461
|
+
@feedback_contexts = args[:feedback_contexts] if args.key?(:feedback_contexts)
|
10462
|
+
@feedback_type = args[:feedback_type] if args.key?(:feedback_type)
|
10463
|
+
@name = args[:name] if args.key?(:name)
|
10464
|
+
@reason = args[:reason] if args.key?(:reason)
|
10465
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
10466
|
+
end
|
10467
|
+
end
|
10468
|
+
|
10469
|
+
# FeedbackContext captures the intent of the submitted feedback.
|
10470
|
+
class GoogleCloudApigeeV1SecurityFeedbackFeedbackContext
|
10471
|
+
include Google::Apis::Core::Hashable
|
10472
|
+
|
10473
|
+
# Required. The attribute the user is providing feedback about.
|
10474
|
+
# Corresponds to the JSON property `attribute`
|
10475
|
+
# @return [String]
|
10476
|
+
attr_accessor :attribute
|
10477
|
+
|
10478
|
+
# Required. The values of the attribute the user is providing feedback about.
|
10479
|
+
# Corresponds to the JSON property `values`
|
10480
|
+
# @return [Array<String>]
|
10481
|
+
attr_accessor :values
|
10482
|
+
|
10483
|
+
def initialize(**args)
|
10484
|
+
update!(**args)
|
10485
|
+
end
|
10486
|
+
|
10487
|
+
# Update properties of this object
|
10488
|
+
def update!(**args)
|
10489
|
+
@attribute = args[:attribute] if args.key?(:attribute)
|
10490
|
+
@values = args[:values] if args.key?(:values)
|
10491
|
+
end
|
10492
|
+
end
|
10493
|
+
|
10379
10494
|
# Represents an SecurityIncident resource.
|
10380
10495
|
class GoogleCloudApigeeV1SecurityIncident
|
10381
10496
|
include Google::Apis::Core::Hashable
|
@@ -10479,7 +10594,7 @@ module Google
|
|
10479
10594
|
# @return [String]
|
10480
10595
|
attr_accessor :profile
|
10481
10596
|
|
10482
|
-
#
|
10597
|
+
# Optional. Scope of the security monitoring condition. For Apigee, the
|
10483
10598
|
# environment is the scope of the resources.
|
10484
10599
|
# Corresponds to the JSON property `scope`
|
10485
10600
|
# @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.
|
19
|
+
GEM_VERSION = "0.113.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250908"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1012,6 +1012,12 @@ module Google
|
|
1012
1012
|
include Google::Apis::Core::JsonObjectSupport
|
1013
1013
|
end
|
1014
1014
|
|
1015
|
+
class GoogleCloudApigeeV1ListSecurityFeedbackResponse
|
1016
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1017
|
+
|
1018
|
+
include Google::Apis::Core::JsonObjectSupport
|
1019
|
+
end
|
1020
|
+
|
1015
1021
|
class GoogleCloudApigeeV1ListSecurityIncidentsResponse
|
1016
1022
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1017
1023
|
|
@@ -1576,6 +1582,18 @@ module Google
|
|
1576
1582
|
include Google::Apis::Core::JsonObjectSupport
|
1577
1583
|
end
|
1578
1584
|
|
1585
|
+
class GoogleCloudApigeeV1SecurityFeedback
|
1586
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1587
|
+
|
1588
|
+
include Google::Apis::Core::JsonObjectSupport
|
1589
|
+
end
|
1590
|
+
|
1591
|
+
class GoogleCloudApigeeV1SecurityFeedbackFeedbackContext
|
1592
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1593
|
+
|
1594
|
+
include Google::Apis::Core::JsonObjectSupport
|
1595
|
+
end
|
1596
|
+
|
1579
1597
|
class GoogleCloudApigeeV1SecurityIncident
|
1580
1598
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1581
1599
|
|
@@ -3702,6 +3720,15 @@ module Google
|
|
3702
3720
|
end
|
3703
3721
|
end
|
3704
3722
|
|
3723
|
+
class GoogleCloudApigeeV1ListSecurityFeedbackResponse
|
3724
|
+
# @private
|
3725
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3726
|
+
property :next_page_token, as: 'nextPageToken'
|
3727
|
+
collection :security_feedback, as: 'securityFeedback', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
3728
|
+
|
3729
|
+
end
|
3730
|
+
end
|
3731
|
+
|
3705
3732
|
class GoogleCloudApigeeV1ListSecurityIncidentsResponse
|
3706
3733
|
# @private
|
3707
3734
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4679,6 +4706,29 @@ module Google
|
|
4679
4706
|
end
|
4680
4707
|
end
|
4681
4708
|
|
4709
|
+
class GoogleCloudApigeeV1SecurityFeedback
|
4710
|
+
# @private
|
4711
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4712
|
+
property :comment, as: 'comment'
|
4713
|
+
property :create_time, as: 'createTime'
|
4714
|
+
property :display_name, as: 'displayName'
|
4715
|
+
collection :feedback_contexts, as: 'feedbackContexts', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedbackFeedbackContext, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedbackFeedbackContext::Representation
|
4716
|
+
|
4717
|
+
property :feedback_type, as: 'feedbackType'
|
4718
|
+
property :name, as: 'name'
|
4719
|
+
property :reason, as: 'reason'
|
4720
|
+
property :update_time, as: 'updateTime'
|
4721
|
+
end
|
4722
|
+
end
|
4723
|
+
|
4724
|
+
class GoogleCloudApigeeV1SecurityFeedbackFeedbackContext
|
4725
|
+
# @private
|
4726
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4727
|
+
property :attribute, as: 'attribute'
|
4728
|
+
collection :values, as: 'values'
|
4729
|
+
end
|
4730
|
+
end
|
4731
|
+
|
4682
4732
|
class GoogleCloudApigeeV1SecurityIncident
|
4683
4733
|
# @private
|
4684
4734
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11540,6 +11540,189 @@ module Google
|
|
11540
11540
|
execute_or_queue_command(command, &block)
|
11541
11541
|
end
|
11542
11542
|
|
11543
|
+
# Creates a new report containing customer feedback.
|
11544
|
+
# @param [String] parent
|
11545
|
+
# Required. Name of the organization. Use the following structure in your
|
11546
|
+
# request: `organizations/`org``.
|
11547
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] google_cloud_apigee_v1_security_feedback_object
|
11548
|
+
# @param [String] security_feedback_id
|
11549
|
+
# Optional. The id for this feedback report. If not provided, it will be set to
|
11550
|
+
# a system-generated UUID.
|
11551
|
+
# @param [String] fields
|
11552
|
+
# Selector specifying which fields to include in a partial response.
|
11553
|
+
# @param [String] quota_user
|
11554
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11555
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11556
|
+
# @param [Google::Apis::RequestOptions] options
|
11557
|
+
# Request-specific options
|
11558
|
+
#
|
11559
|
+
# @yield [result, err] Result & error if block supplied
|
11560
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] parsed result object
|
11561
|
+
# @yieldparam err [StandardError] error object if request failed
|
11562
|
+
#
|
11563
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback]
|
11564
|
+
#
|
11565
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11566
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11567
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11568
|
+
def create_organization_security_feedback(parent, google_cloud_apigee_v1_security_feedback_object = nil, security_feedback_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11569
|
+
command = make_simple_command(:post, 'v1/{+parent}/securityFeedback', options)
|
11570
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11571
|
+
command.request_object = google_cloud_apigee_v1_security_feedback_object
|
11572
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11573
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback
|
11574
|
+
command.params['parent'] = parent unless parent.nil?
|
11575
|
+
command.query['securityFeedbackId'] = security_feedback_id unless security_feedback_id.nil?
|
11576
|
+
command.query['fields'] = fields unless fields.nil?
|
11577
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11578
|
+
execute_or_queue_command(command, &block)
|
11579
|
+
end
|
11580
|
+
|
11581
|
+
# Deletes a specific feedback report. Used for "undo" of a feedback submission.
|
11582
|
+
# @param [String] name
|
11583
|
+
# Required. Name of the SecurityFeedback to delete. Use the following structure
|
11584
|
+
# in your request: `organizations/`org`/securityFeedback/`feedback_id``
|
11585
|
+
# @param [String] fields
|
11586
|
+
# Selector specifying which fields to include in a partial response.
|
11587
|
+
# @param [String] quota_user
|
11588
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11589
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11590
|
+
# @param [Google::Apis::RequestOptions] options
|
11591
|
+
# Request-specific options
|
11592
|
+
#
|
11593
|
+
# @yield [result, err] Result & error if block supplied
|
11594
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleProtobufEmpty] parsed result object
|
11595
|
+
# @yieldparam err [StandardError] error object if request failed
|
11596
|
+
#
|
11597
|
+
# @return [Google::Apis::ApigeeV1::GoogleProtobufEmpty]
|
11598
|
+
#
|
11599
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11600
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11601
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11602
|
+
def delete_organization_security_feedback(name, fields: nil, quota_user: nil, options: nil, &block)
|
11603
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
11604
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleProtobufEmpty::Representation
|
11605
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleProtobufEmpty
|
11606
|
+
command.params['name'] = name unless name.nil?
|
11607
|
+
command.query['fields'] = fields unless fields.nil?
|
11608
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11609
|
+
execute_or_queue_command(command, &block)
|
11610
|
+
end
|
11611
|
+
|
11612
|
+
# Gets a specific customer feedback report.
|
11613
|
+
# @param [String] name
|
11614
|
+
# Required. Name of the SecurityFeedback. Format: `organizations/`org`/
|
11615
|
+
# securityFeedback/`feedback_id`` Example: organizations/apigee-organization-
|
11616
|
+
# name/securityFeedback/feedback-id
|
11617
|
+
# @param [String] fields
|
11618
|
+
# Selector specifying which fields to include in a partial response.
|
11619
|
+
# @param [String] quota_user
|
11620
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11621
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11622
|
+
# @param [Google::Apis::RequestOptions] options
|
11623
|
+
# Request-specific options
|
11624
|
+
#
|
11625
|
+
# @yield [result, err] Result & error if block supplied
|
11626
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] parsed result object
|
11627
|
+
# @yieldparam err [StandardError] error object if request failed
|
11628
|
+
#
|
11629
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback]
|
11630
|
+
#
|
11631
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11632
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11633
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11634
|
+
def get_organization_security_feedback(name, fields: nil, quota_user: nil, options: nil, &block)
|
11635
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
11636
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11637
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback
|
11638
|
+
command.params['name'] = name unless name.nil?
|
11639
|
+
command.query['fields'] = fields unless fields.nil?
|
11640
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11641
|
+
execute_or_queue_command(command, &block)
|
11642
|
+
end
|
11643
|
+
|
11644
|
+
# Lists all feedback reports which have already been submitted.
|
11645
|
+
# @param [String] parent
|
11646
|
+
# Required. Name of the organization. Format: `organizations/`org``. Example:
|
11647
|
+
# organizations/apigee-organization-name/securityFeedback
|
11648
|
+
# @param [Fixnum] page_size
|
11649
|
+
# Optional. The maximum number of feedback reports to return. The service may
|
11650
|
+
# return fewer than this value. LINT.IfChange(documented_page_size_limits) If
|
11651
|
+
# unspecified, at most 10 feedback reports will be returned. The maximum value
|
11652
|
+
# is 100; values above 100 will be coerced to 100. LINT.ThenChange( //depot/
|
11653
|
+
# google3/edge/sense/boq/service/v1/securityfeedback/securityfeedback_rpc.go:
|
11654
|
+
# page_size_limits )
|
11655
|
+
# @param [String] page_token
|
11656
|
+
# Optional. A page token, received from a previous `ListSecurityFeedback` call.
|
11657
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
11658
|
+
# parameters provided to `ListSecurityFeedback` must match the call that
|
11659
|
+
# provided the page token.
|
11660
|
+
# @param [String] fields
|
11661
|
+
# Selector specifying which fields to include in a partial response.
|
11662
|
+
# @param [String] quota_user
|
11663
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11664
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11665
|
+
# @param [Google::Apis::RequestOptions] options
|
11666
|
+
# Request-specific options
|
11667
|
+
#
|
11668
|
+
# @yield [result, err] Result & error if block supplied
|
11669
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse] parsed result object
|
11670
|
+
# @yieldparam err [StandardError] error object if request failed
|
11671
|
+
#
|
11672
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse]
|
11673
|
+
#
|
11674
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11675
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11676
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11677
|
+
def list_organization_security_feedbacks(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11678
|
+
command = make_simple_command(:get, 'v1/{+parent}/securityFeedback', options)
|
11679
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse::Representation
|
11680
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse
|
11681
|
+
command.params['parent'] = parent unless parent.nil?
|
11682
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
11683
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
11684
|
+
command.query['fields'] = fields unless fields.nil?
|
11685
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11686
|
+
execute_or_queue_command(command, &block)
|
11687
|
+
end
|
11688
|
+
|
11689
|
+
# Updates a specific feedback report.
|
11690
|
+
# @param [String] name
|
11691
|
+
# Output only. Identifier. The feedback name is intended to be a system-
|
11692
|
+
# generated uuid.
|
11693
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] google_cloud_apigee_v1_security_feedback_object
|
11694
|
+
# @param [String] update_mask
|
11695
|
+
# Optional. The list of fields to update.
|
11696
|
+
# @param [String] fields
|
11697
|
+
# Selector specifying which fields to include in a partial response.
|
11698
|
+
# @param [String] quota_user
|
11699
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11700
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11701
|
+
# @param [Google::Apis::RequestOptions] options
|
11702
|
+
# Request-specific options
|
11703
|
+
#
|
11704
|
+
# @yield [result, err] Result & error if block supplied
|
11705
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] parsed result object
|
11706
|
+
# @yieldparam err [StandardError] error object if request failed
|
11707
|
+
#
|
11708
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback]
|
11709
|
+
#
|
11710
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11711
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11712
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11713
|
+
def patch_organization_security_feedback(name, google_cloud_apigee_v1_security_feedback_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11714
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
11715
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11716
|
+
command.request_object = google_cloud_apigee_v1_security_feedback_object
|
11717
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11718
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback
|
11719
|
+
command.params['name'] = name unless name.nil?
|
11720
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
11721
|
+
command.query['fields'] = fields unless fields.nil?
|
11722
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11723
|
+
execute_or_queue_command(command, &block)
|
11724
|
+
end
|
11725
|
+
|
11543
11726
|
# Create a security monitoring condition.
|
11544
11727
|
# @param [String] parent
|
11545
11728
|
# Required. The parent resource name. Format: `organizations/`org``
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.113.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.113.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|