google-apis-apigee_v1 0.112.0 → 0.114.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/apigee_v1/classes.rb +265 -2
- data/lib/google/apis/apigee_v1/gem_version.rb +2 -2
- data/lib/google/apis/apigee_v1/representations.rb +115 -0
- data/lib/google/apis/apigee_v1/service.rb +192 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e5ec9c3f844812018b59b8ac0811c28753f2df782e4811aae4b9fb34d469977b
|
4
|
+
data.tar.gz: 7266a5b0c44b441fbbe6122efaa815f35e8b846d04f36cff0365a45939e84cb0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0bb7d1398229f0fa7077340ce5feed04dd88ef05147fe513bb2aacd547360b4b2f7d0b161ce1cfd1b09f120063413ebcaf5dd7f1308ab0c6b1860295661fd24
|
7
|
+
data.tar.gz: af441c5fa6743e002325775f476ddccc7b358a71ec421df7c0bf4f351bbd0e3ce74da6c0892b74e481ed4e5a013359951fb523901569bee5ca67f15ffcda326b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-apigee_v1
|
2
2
|
|
3
|
+
### v0.114.0 (2025-10-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250929
|
6
|
+
|
7
|
+
### v0.113.0 (2025-09-14)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250908
|
10
|
+
|
3
11
|
### v0.112.0 (2025-08-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250808
|
@@ -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]
|
@@ -5598,6 +5598,14 @@ module Google
|
|
5598
5598
|
# @return [String]
|
5599
5599
|
attr_accessor :ip_range
|
5600
5600
|
|
5601
|
+
# Output only. Indicates whether the instance is version locked. If true, the
|
5602
|
+
# instance will not be updated by automated runtime rollouts. This is only
|
5603
|
+
# supported for Apigee X instances.
|
5604
|
+
# Corresponds to the JSON property `isVersionLocked`
|
5605
|
+
# @return [Boolean]
|
5606
|
+
attr_accessor :is_version_locked
|
5607
|
+
alias_method :is_version_locked?, :is_version_locked
|
5608
|
+
|
5601
5609
|
# Output only. Time the instance was last modified in milliseconds since epoch.
|
5602
5610
|
# Corresponds to the JSON property `lastModifiedAt`
|
5603
5611
|
# @return [Fixnum]
|
@@ -5608,6 +5616,12 @@ module Google
|
|
5608
5616
|
# @return [String]
|
5609
5617
|
attr_accessor :location
|
5610
5618
|
|
5619
|
+
# MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
|
5620
|
+
# on the instance (day of the week and time of day).
|
5621
|
+
# Corresponds to the JSON property `maintenanceUpdatePolicy`
|
5622
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy]
|
5623
|
+
attr_accessor :maintenance_update_policy
|
5624
|
+
|
5611
5625
|
# Required. Resource ID of the instance. Values must match the regular
|
5612
5626
|
# expression `^a-z`0,30`[a-z\d]$`.
|
5613
5627
|
# Corresponds to the JSON property `name`
|
@@ -5633,6 +5647,11 @@ module Google
|
|
5633
5647
|
# @return [String]
|
5634
5648
|
attr_accessor :runtime_version
|
5635
5649
|
|
5650
|
+
# Scheduled maintenance information for an instance.
|
5651
|
+
# Corresponds to the JSON property `scheduledMaintenance`
|
5652
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance]
|
5653
|
+
attr_accessor :scheduled_maintenance
|
5654
|
+
|
5636
5655
|
# Output only. Resource name of the service attachment created for the instance
|
5637
5656
|
# in the format: `projects/*/regions/*/serviceAttachments/*` Apigee customers
|
5638
5657
|
# can privately forward traffic to this service attachment using the PSC
|
@@ -5661,12 +5680,15 @@ module Google
|
|
5661
5680
|
@display_name = args[:display_name] if args.key?(:display_name)
|
5662
5681
|
@host = args[:host] if args.key?(:host)
|
5663
5682
|
@ip_range = args[:ip_range] if args.key?(:ip_range)
|
5683
|
+
@is_version_locked = args[:is_version_locked] if args.key?(:is_version_locked)
|
5664
5684
|
@last_modified_at = args[:last_modified_at] if args.key?(:last_modified_at)
|
5665
5685
|
@location = args[:location] if args.key?(:location)
|
5686
|
+
@maintenance_update_policy = args[:maintenance_update_policy] if args.key?(:maintenance_update_policy)
|
5666
5687
|
@name = args[:name] if args.key?(:name)
|
5667
5688
|
@peering_cidr_range = args[:peering_cidr_range] if args.key?(:peering_cidr_range)
|
5668
5689
|
@port = args[:port] if args.key?(:port)
|
5669
5690
|
@runtime_version = args[:runtime_version] if args.key?(:runtime_version)
|
5691
|
+
@scheduled_maintenance = args[:scheduled_maintenance] if args.key?(:scheduled_maintenance)
|
5670
5692
|
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
5671
5693
|
@state = args[:state] if args.key?(:state)
|
5672
5694
|
end
|
@@ -6758,6 +6780,33 @@ module Google
|
|
6758
6780
|
end
|
6759
6781
|
end
|
6760
6782
|
|
6783
|
+
# Response for ListSecurityFeedback
|
6784
|
+
class GoogleCloudApigeeV1ListSecurityFeedbackResponse
|
6785
|
+
include Google::Apis::Core::Hashable
|
6786
|
+
|
6787
|
+
# A token that can be sent as `page_token` in `ListSecurityFeedbackRequest` to
|
6788
|
+
# retrieve the next page. If this field is omitted, there are no subsequent
|
6789
|
+
# pages.
|
6790
|
+
# Corresponds to the JSON property `nextPageToken`
|
6791
|
+
# @return [String]
|
6792
|
+
attr_accessor :next_page_token
|
6793
|
+
|
6794
|
+
# List of SecurityFeedback reports.
|
6795
|
+
# Corresponds to the JSON property `securityFeedback`
|
6796
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback>]
|
6797
|
+
attr_accessor :security_feedback
|
6798
|
+
|
6799
|
+
def initialize(**args)
|
6800
|
+
update!(**args)
|
6801
|
+
end
|
6802
|
+
|
6803
|
+
# Update properties of this object
|
6804
|
+
def update!(**args)
|
6805
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
6806
|
+
@security_feedback = args[:security_feedback] if args.key?(:security_feedback)
|
6807
|
+
end
|
6808
|
+
end
|
6809
|
+
|
6761
6810
|
# Response for ListSecurityIncidents.
|
6762
6811
|
class GoogleCloudApigeeV1ListSecurityIncidentsResponse
|
6763
6812
|
include Google::Apis::Core::Hashable
|
@@ -6990,6 +7039,60 @@ module Google
|
|
6990
7039
|
end
|
6991
7040
|
end
|
6992
7041
|
|
7042
|
+
# MaintenanceUpdatePolicy specifies the preferred window to perform maintenance
|
7043
|
+
# on the instance (day of the week and time of day).
|
7044
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
7045
|
+
include Google::Apis::Core::Hashable
|
7046
|
+
|
7047
|
+
# Optional. Maintenance channel to specify relative scheduling for maintenance.
|
7048
|
+
# Corresponds to the JSON property `maintenanceChannel`
|
7049
|
+
# @return [String]
|
7050
|
+
attr_accessor :maintenance_channel
|
7051
|
+
|
7052
|
+
# Optional. Preferred windows to perform maintenance. Currently limited to 1.
|
7053
|
+
# Corresponds to the JSON property `maintenanceWindows`
|
7054
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow>]
|
7055
|
+
attr_accessor :maintenance_windows
|
7056
|
+
|
7057
|
+
def initialize(**args)
|
7058
|
+
update!(**args)
|
7059
|
+
end
|
7060
|
+
|
7061
|
+
# Update properties of this object
|
7062
|
+
def update!(**args)
|
7063
|
+
@maintenance_channel = args[:maintenance_channel] if args.key?(:maintenance_channel)
|
7064
|
+
@maintenance_windows = args[:maintenance_windows] if args.key?(:maintenance_windows)
|
7065
|
+
end
|
7066
|
+
end
|
7067
|
+
|
7068
|
+
# MaintenanceWindow specifies the preferred day of the week and time of day to
|
7069
|
+
# perform maintenance.
|
7070
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
|
7071
|
+
include Google::Apis::Core::Hashable
|
7072
|
+
|
7073
|
+
# Required. Preferred day of the week for maintenance, e.g. MONDAY, TUESDAY, etc.
|
7074
|
+
# Corresponds to the JSON property `day`
|
7075
|
+
# @return [String]
|
7076
|
+
attr_accessor :day
|
7077
|
+
|
7078
|
+
# Represents a time of day. The date and time zone are either not significant or
|
7079
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
7080
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
7081
|
+
# Corresponds to the JSON property `startTime`
|
7082
|
+
# @return [Google::Apis::ApigeeV1::GoogleTypeTimeOfDay]
|
7083
|
+
attr_accessor :start_time
|
7084
|
+
|
7085
|
+
def initialize(**args)
|
7086
|
+
update!(**args)
|
7087
|
+
end
|
7088
|
+
|
7089
|
+
# Update properties of this object
|
7090
|
+
def update!(**args)
|
7091
|
+
@day = args[:day] if args.key?(:day)
|
7092
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
7093
|
+
end
|
7094
|
+
end
|
7095
|
+
|
6993
7096
|
# Encapsulates additional information about query execution.
|
6994
7097
|
class GoogleCloudApigeeV1Metadata
|
6995
7098
|
include Google::Apis::Core::Hashable
|
@@ -9586,6 +9689,25 @@ module Google
|
|
9586
9689
|
end
|
9587
9690
|
end
|
9588
9691
|
|
9692
|
+
# Scheduled maintenance information for an instance.
|
9693
|
+
class GoogleCloudApigeeV1ScheduledMaintenance
|
9694
|
+
include Google::Apis::Core::Hashable
|
9695
|
+
|
9696
|
+
# Output only. The start time (UTC) of the scheduled maintenance.
|
9697
|
+
# Corresponds to the JSON property `startTime`
|
9698
|
+
# @return [String]
|
9699
|
+
attr_accessor :start_time
|
9700
|
+
|
9701
|
+
def initialize(**args)
|
9702
|
+
update!(**args)
|
9703
|
+
end
|
9704
|
+
|
9705
|
+
# Update properties of this object
|
9706
|
+
def update!(**args)
|
9707
|
+
@start_time = args[:start_time] if args.key?(:start_time)
|
9708
|
+
end
|
9709
|
+
end
|
9710
|
+
|
9589
9711
|
# Response for Schema call
|
9590
9712
|
class GoogleCloudApigeeV1Schema
|
9591
9713
|
include Google::Apis::Core::Hashable
|
@@ -10376,6 +10498,94 @@ module Google
|
|
10376
10498
|
end
|
10377
10499
|
end
|
10378
10500
|
|
10501
|
+
# Represents a feedback report from an Advanced API Security customer.
|
10502
|
+
class GoogleCloudApigeeV1SecurityFeedback
|
10503
|
+
include Google::Apis::Core::Hashable
|
10504
|
+
|
10505
|
+
# Optional. Optional text the user can provide for additional, unstructured
|
10506
|
+
# context.
|
10507
|
+
# Corresponds to the JSON property `comment`
|
10508
|
+
# @return [String]
|
10509
|
+
attr_accessor :comment
|
10510
|
+
|
10511
|
+
# Output only. The time when this specific feedback id was created.
|
10512
|
+
# Corresponds to the JSON property `createTime`
|
10513
|
+
# @return [String]
|
10514
|
+
attr_accessor :create_time
|
10515
|
+
|
10516
|
+
# Optional. The display name of the feedback.
|
10517
|
+
# Corresponds to the JSON property `displayName`
|
10518
|
+
# @return [String]
|
10519
|
+
attr_accessor :display_name
|
10520
|
+
|
10521
|
+
# Required. One or more attribute/value pairs for constraining the feedback.
|
10522
|
+
# Corresponds to the JSON property `feedbackContexts`
|
10523
|
+
# @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedbackFeedbackContext>]
|
10524
|
+
attr_accessor :feedback_contexts
|
10525
|
+
|
10526
|
+
# Required. The type of feedback being submitted.
|
10527
|
+
# Corresponds to the JSON property `feedbackType`
|
10528
|
+
# @return [String]
|
10529
|
+
attr_accessor :feedback_type
|
10530
|
+
|
10531
|
+
# Output only. Identifier. The feedback name is intended to be a system-
|
10532
|
+
# generated uuid.
|
10533
|
+
# Corresponds to the JSON property `name`
|
10534
|
+
# @return [String]
|
10535
|
+
attr_accessor :name
|
10536
|
+
|
10537
|
+
# Optional. The reason for the feedback.
|
10538
|
+
# Corresponds to the JSON property `reason`
|
10539
|
+
# @return [String]
|
10540
|
+
attr_accessor :reason
|
10541
|
+
|
10542
|
+
# Output only. The time when this specific feedback id was updated.
|
10543
|
+
# Corresponds to the JSON property `updateTime`
|
10544
|
+
# @return [String]
|
10545
|
+
attr_accessor :update_time
|
10546
|
+
|
10547
|
+
def initialize(**args)
|
10548
|
+
update!(**args)
|
10549
|
+
end
|
10550
|
+
|
10551
|
+
# Update properties of this object
|
10552
|
+
def update!(**args)
|
10553
|
+
@comment = args[:comment] if args.key?(:comment)
|
10554
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
10555
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
10556
|
+
@feedback_contexts = args[:feedback_contexts] if args.key?(:feedback_contexts)
|
10557
|
+
@feedback_type = args[:feedback_type] if args.key?(:feedback_type)
|
10558
|
+
@name = args[:name] if args.key?(:name)
|
10559
|
+
@reason = args[:reason] if args.key?(:reason)
|
10560
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
10561
|
+
end
|
10562
|
+
end
|
10563
|
+
|
10564
|
+
# FeedbackContext captures the intent of the submitted feedback.
|
10565
|
+
class GoogleCloudApigeeV1SecurityFeedbackFeedbackContext
|
10566
|
+
include Google::Apis::Core::Hashable
|
10567
|
+
|
10568
|
+
# Required. The attribute the user is providing feedback about.
|
10569
|
+
# Corresponds to the JSON property `attribute`
|
10570
|
+
# @return [String]
|
10571
|
+
attr_accessor :attribute
|
10572
|
+
|
10573
|
+
# Required. The values of the attribute the user is providing feedback about.
|
10574
|
+
# Corresponds to the JSON property `values`
|
10575
|
+
# @return [Array<String>]
|
10576
|
+
attr_accessor :values
|
10577
|
+
|
10578
|
+
def initialize(**args)
|
10579
|
+
update!(**args)
|
10580
|
+
end
|
10581
|
+
|
10582
|
+
# Update properties of this object
|
10583
|
+
def update!(**args)
|
10584
|
+
@attribute = args[:attribute] if args.key?(:attribute)
|
10585
|
+
@values = args[:values] if args.key?(:values)
|
10586
|
+
end
|
10587
|
+
end
|
10588
|
+
|
10379
10589
|
# Represents an SecurityIncident resource.
|
10380
10590
|
class GoogleCloudApigeeV1SecurityIncident
|
10381
10591
|
include Google::Apis::Core::Hashable
|
@@ -10479,7 +10689,7 @@ module Google
|
|
10479
10689
|
# @return [String]
|
10480
10690
|
attr_accessor :profile
|
10481
10691
|
|
10482
|
-
#
|
10692
|
+
# Optional. Scope of the security monitoring condition. For Apigee, the
|
10483
10693
|
# environment is the scope of the resources.
|
10484
10694
|
# Corresponds to the JSON property `scope`
|
10485
10695
|
# @return [String]
|
@@ -12522,6 +12732,13 @@ module Google
|
|
12522
12732
|
# @return [Array<Google::Apis::ApigeeV1::GoogleLongrunningOperation>]
|
12523
12733
|
attr_accessor :operations
|
12524
12734
|
|
12735
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
12736
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
12737
|
+
# when attempting to list all resources across all supported locations.
|
12738
|
+
# Corresponds to the JSON property `unreachable`
|
12739
|
+
# @return [Array<String>]
|
12740
|
+
attr_accessor :unreachable
|
12741
|
+
|
12525
12742
|
def initialize(**args)
|
12526
12743
|
update!(**args)
|
12527
12744
|
end
|
@@ -12530,6 +12747,7 @@ module Google
|
|
12530
12747
|
def update!(**args)
|
12531
12748
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
12532
12749
|
@operations = args[:operations] if args.key?(:operations)
|
12750
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
12533
12751
|
end
|
12534
12752
|
end
|
12535
12753
|
|
@@ -12827,6 +13045,51 @@ module Google
|
|
12827
13045
|
@units = args[:units] if args.key?(:units)
|
12828
13046
|
end
|
12829
13047
|
end
|
13048
|
+
|
13049
|
+
# Represents a time of day. The date and time zone are either not significant or
|
13050
|
+
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
13051
|
+
# types are google.type.Date and `google.protobuf.Timestamp`.
|
13052
|
+
class GoogleTypeTimeOfDay
|
13053
|
+
include Google::Apis::Core::Hashable
|
13054
|
+
|
13055
|
+
# Hours of a day in 24 hour format. Must be greater than or equal to 0 and
|
13056
|
+
# typically must be less than or equal to 23. An API may choose to allow the
|
13057
|
+
# value "24:00:00" for scenarios like business closing time.
|
13058
|
+
# Corresponds to the JSON property `hours`
|
13059
|
+
# @return [Fixnum]
|
13060
|
+
attr_accessor :hours
|
13061
|
+
|
13062
|
+
# Minutes of an hour. Must be greater than or equal to 0 and less than or equal
|
13063
|
+
# to 59.
|
13064
|
+
# Corresponds to the JSON property `minutes`
|
13065
|
+
# @return [Fixnum]
|
13066
|
+
attr_accessor :minutes
|
13067
|
+
|
13068
|
+
# Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and
|
13069
|
+
# less than or equal to 999,999,999.
|
13070
|
+
# Corresponds to the JSON property `nanos`
|
13071
|
+
# @return [Fixnum]
|
13072
|
+
attr_accessor :nanos
|
13073
|
+
|
13074
|
+
# Seconds of a minute. Must be greater than or equal to 0 and typically must be
|
13075
|
+
# less than or equal to 59. An API may allow the value 60 if it allows leap-
|
13076
|
+
# seconds.
|
13077
|
+
# Corresponds to the JSON property `seconds`
|
13078
|
+
# @return [Fixnum]
|
13079
|
+
attr_accessor :seconds
|
13080
|
+
|
13081
|
+
def initialize(**args)
|
13082
|
+
update!(**args)
|
13083
|
+
end
|
13084
|
+
|
13085
|
+
# Update properties of this object
|
13086
|
+
def update!(**args)
|
13087
|
+
@hours = args[:hours] if args.key?(:hours)
|
13088
|
+
@minutes = args[:minutes] if args.key?(:minutes)
|
13089
|
+
@nanos = args[:nanos] if args.key?(:nanos)
|
13090
|
+
@seconds = args[:seconds] if args.key?(:seconds)
|
13091
|
+
end
|
13092
|
+
end
|
12830
13093
|
end
|
12831
13094
|
end
|
12832
13095
|
end
|
@@ -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.114.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 = "20250929"
|
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
|
|
@@ -1066,6 +1072,18 @@ module Google
|
|
1066
1072
|
include Google::Apis::Core::JsonObjectSupport
|
1067
1073
|
end
|
1068
1074
|
|
1075
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
|
+
|
1078
|
+
include Google::Apis::Core::JsonObjectSupport
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1083
|
+
|
1084
|
+
include Google::Apis::Core::JsonObjectSupport
|
1085
|
+
end
|
1086
|
+
|
1069
1087
|
class GoogleCloudApigeeV1Metadata
|
1070
1088
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1071
1089
|
|
@@ -1450,6 +1468,12 @@ module Google
|
|
1450
1468
|
include Google::Apis::Core::JsonObjectSupport
|
1451
1469
|
end
|
1452
1470
|
|
1471
|
+
class GoogleCloudApigeeV1ScheduledMaintenance
|
1472
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1473
|
+
|
1474
|
+
include Google::Apis::Core::JsonObjectSupport
|
1475
|
+
end
|
1476
|
+
|
1453
1477
|
class GoogleCloudApigeeV1Schema
|
1454
1478
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1455
1479
|
|
@@ -1576,6 +1600,18 @@ module Google
|
|
1576
1600
|
include Google::Apis::Core::JsonObjectSupport
|
1577
1601
|
end
|
1578
1602
|
|
1603
|
+
class GoogleCloudApigeeV1SecurityFeedback
|
1604
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1605
|
+
|
1606
|
+
include Google::Apis::Core::JsonObjectSupport
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
class GoogleCloudApigeeV1SecurityFeedbackFeedbackContext
|
1610
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1611
|
+
|
1612
|
+
include Google::Apis::Core::JsonObjectSupport
|
1613
|
+
end
|
1614
|
+
|
1579
1615
|
class GoogleCloudApigeeV1SecurityIncident
|
1580
1616
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1581
1617
|
|
@@ -1906,6 +1942,12 @@ module Google
|
|
1906
1942
|
include Google::Apis::Core::JsonObjectSupport
|
1907
1943
|
end
|
1908
1944
|
|
1945
|
+
class GoogleTypeTimeOfDay
|
1946
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1947
|
+
|
1948
|
+
include Google::Apis::Core::JsonObjectSupport
|
1949
|
+
end
|
1950
|
+
|
1909
1951
|
class EdgeConfigstoreBundleBadBundle
|
1910
1952
|
# @private
|
1911
1953
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3320,12 +3362,17 @@ module Google
|
|
3320
3362
|
property :display_name, as: 'displayName'
|
3321
3363
|
property :host, as: 'host'
|
3322
3364
|
property :ip_range, as: 'ipRange'
|
3365
|
+
property :is_version_locked, as: 'isVersionLocked'
|
3323
3366
|
property :last_modified_at, :numeric_string => true, as: 'lastModifiedAt'
|
3324
3367
|
property :location, as: 'location'
|
3368
|
+
property :maintenance_update_policy, as: 'maintenanceUpdatePolicy', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicy::Representation
|
3369
|
+
|
3325
3370
|
property :name, as: 'name'
|
3326
3371
|
property :peering_cidr_range, as: 'peeringCidrRange'
|
3327
3372
|
property :port, as: 'port'
|
3328
3373
|
property :runtime_version, as: 'runtimeVersion'
|
3374
|
+
property :scheduled_maintenance, as: 'scheduledMaintenance', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ScheduledMaintenance::Representation
|
3375
|
+
|
3329
3376
|
property :service_attachment, as: 'serviceAttachment'
|
3330
3377
|
property :state, as: 'state'
|
3331
3378
|
end
|
@@ -3702,6 +3749,15 @@ module Google
|
|
3702
3749
|
end
|
3703
3750
|
end
|
3704
3751
|
|
3752
|
+
class GoogleCloudApigeeV1ListSecurityFeedbackResponse
|
3753
|
+
# @private
|
3754
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3755
|
+
property :next_page_token, as: 'nextPageToken'
|
3756
|
+
collection :security_feedback, as: 'securityFeedback', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
3757
|
+
|
3758
|
+
end
|
3759
|
+
end
|
3760
|
+
|
3705
3761
|
class GoogleCloudApigeeV1ListSecurityIncidentsResponse
|
3706
3762
|
# @private
|
3707
3763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3782,6 +3838,24 @@ module Google
|
|
3782
3838
|
end
|
3783
3839
|
end
|
3784
3840
|
|
3841
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicy
|
3842
|
+
# @private
|
3843
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3844
|
+
property :maintenance_channel, as: 'maintenanceChannel'
|
3845
|
+
collection :maintenance_windows, as: 'maintenanceWindows', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow::Representation
|
3846
|
+
|
3847
|
+
end
|
3848
|
+
end
|
3849
|
+
|
3850
|
+
class GoogleCloudApigeeV1MaintenanceUpdatePolicyMaintenanceWindow
|
3851
|
+
# @private
|
3852
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3853
|
+
property :day, as: 'day'
|
3854
|
+
property :start_time, as: 'startTime', class: Google::Apis::ApigeeV1::GoogleTypeTimeOfDay, decorator: Google::Apis::ApigeeV1::GoogleTypeTimeOfDay::Representation
|
3855
|
+
|
3856
|
+
end
|
3857
|
+
end
|
3858
|
+
|
3785
3859
|
class GoogleCloudApigeeV1Metadata
|
3786
3860
|
# @private
|
3787
3861
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4458,6 +4532,13 @@ module Google
|
|
4458
4532
|
end
|
4459
4533
|
end
|
4460
4534
|
|
4535
|
+
class GoogleCloudApigeeV1ScheduledMaintenance
|
4536
|
+
# @private
|
4537
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4538
|
+
property :start_time, as: 'startTime'
|
4539
|
+
end
|
4540
|
+
end
|
4541
|
+
|
4461
4542
|
class GoogleCloudApigeeV1Schema
|
4462
4543
|
# @private
|
4463
4544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4679,6 +4760,29 @@ module Google
|
|
4679
4760
|
end
|
4680
4761
|
end
|
4681
4762
|
|
4763
|
+
class GoogleCloudApigeeV1SecurityFeedback
|
4764
|
+
# @private
|
4765
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4766
|
+
property :comment, as: 'comment'
|
4767
|
+
property :create_time, as: 'createTime'
|
4768
|
+
property :display_name, as: 'displayName'
|
4769
|
+
collection :feedback_contexts, as: 'feedbackContexts', class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedbackFeedbackContext, decorator: Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedbackFeedbackContext::Representation
|
4770
|
+
|
4771
|
+
property :feedback_type, as: 'feedbackType'
|
4772
|
+
property :name, as: 'name'
|
4773
|
+
property :reason, as: 'reason'
|
4774
|
+
property :update_time, as: 'updateTime'
|
4775
|
+
end
|
4776
|
+
end
|
4777
|
+
|
4778
|
+
class GoogleCloudApigeeV1SecurityFeedbackFeedbackContext
|
4779
|
+
# @private
|
4780
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4781
|
+
property :attribute, as: 'attribute'
|
4782
|
+
collection :values, as: 'values'
|
4783
|
+
end
|
4784
|
+
end
|
4785
|
+
|
4682
4786
|
class GoogleCloudApigeeV1SecurityIncident
|
4683
4787
|
# @private
|
4684
4788
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5196,6 +5300,7 @@ module Google
|
|
5196
5300
|
property :next_page_token, as: 'nextPageToken'
|
5197
5301
|
collection :operations, as: 'operations', class: Google::Apis::ApigeeV1::GoogleLongrunningOperation, decorator: Google::Apis::ApigeeV1::GoogleLongrunningOperation::Representation
|
5198
5302
|
|
5303
|
+
collection :unreachable, as: 'unreachable'
|
5199
5304
|
end
|
5200
5305
|
end
|
5201
5306
|
|
@@ -5269,6 +5374,16 @@ module Google
|
|
5269
5374
|
property :units, :numeric_string => true, as: 'units'
|
5270
5375
|
end
|
5271
5376
|
end
|
5377
|
+
|
5378
|
+
class GoogleTypeTimeOfDay
|
5379
|
+
# @private
|
5380
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5381
|
+
property :hours, as: 'hours'
|
5382
|
+
property :minutes, as: 'minutes'
|
5383
|
+
property :nanos, as: 'nanos'
|
5384
|
+
property :seconds, as: 'seconds'
|
5385
|
+
end
|
5386
|
+
end
|
5272
5387
|
end
|
5273
5388
|
end
|
5274
5389
|
end
|
@@ -11221,6 +11221,13 @@ module Google
|
|
11221
11221
|
# The standard list page size.
|
11222
11222
|
# @param [String] page_token
|
11223
11223
|
# The standard list page token.
|
11224
|
+
# @param [Boolean] return_partial_success
|
11225
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
11226
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
11227
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
11228
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
11229
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
11230
|
+
# explicitly documented otherwise in service or product specific documentation.
|
11224
11231
|
# @param [String] fields
|
11225
11232
|
# Selector specifying which fields to include in a partial response.
|
11226
11233
|
# @param [String] quota_user
|
@@ -11238,7 +11245,7 @@ module Google
|
|
11238
11245
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11239
11246
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11240
11247
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11241
|
-
def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11248
|
+
def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11242
11249
|
command = make_simple_command(:get, 'v1/{+name}/operations', options)
|
11243
11250
|
command.response_representation = Google::Apis::ApigeeV1::GoogleLongrunningListOperationsResponse::Representation
|
11244
11251
|
command.response_class = Google::Apis::ApigeeV1::GoogleLongrunningListOperationsResponse
|
@@ -11246,6 +11253,7 @@ module Google
|
|
11246
11253
|
command.query['filter'] = filter unless filter.nil?
|
11247
11254
|
command.query['pageSize'] = page_size unless page_size.nil?
|
11248
11255
|
command.query['pageToken'] = page_token unless page_token.nil?
|
11256
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
11249
11257
|
command.query['fields'] = fields unless fields.nil?
|
11250
11258
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11251
11259
|
execute_or_queue_command(command, &block)
|
@@ -11540,6 +11548,189 @@ module Google
|
|
11540
11548
|
execute_or_queue_command(command, &block)
|
11541
11549
|
end
|
11542
11550
|
|
11551
|
+
# Creates a new report containing customer feedback.
|
11552
|
+
# @param [String] parent
|
11553
|
+
# Required. Name of the organization. Use the following structure in your
|
11554
|
+
# request: `organizations/`org``.
|
11555
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] google_cloud_apigee_v1_security_feedback_object
|
11556
|
+
# @param [String] security_feedback_id
|
11557
|
+
# Optional. The id for this feedback report. If not provided, it will be set to
|
11558
|
+
# a system-generated UUID.
|
11559
|
+
# @param [String] fields
|
11560
|
+
# Selector specifying which fields to include in a partial response.
|
11561
|
+
# @param [String] quota_user
|
11562
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11563
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11564
|
+
# @param [Google::Apis::RequestOptions] options
|
11565
|
+
# Request-specific options
|
11566
|
+
#
|
11567
|
+
# @yield [result, err] Result & error if block supplied
|
11568
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] parsed result object
|
11569
|
+
# @yieldparam err [StandardError] error object if request failed
|
11570
|
+
#
|
11571
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback]
|
11572
|
+
#
|
11573
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11574
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11575
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11576
|
+
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)
|
11577
|
+
command = make_simple_command(:post, 'v1/{+parent}/securityFeedback', options)
|
11578
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11579
|
+
command.request_object = google_cloud_apigee_v1_security_feedback_object
|
11580
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11581
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback
|
11582
|
+
command.params['parent'] = parent unless parent.nil?
|
11583
|
+
command.query['securityFeedbackId'] = security_feedback_id unless security_feedback_id.nil?
|
11584
|
+
command.query['fields'] = fields unless fields.nil?
|
11585
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11586
|
+
execute_or_queue_command(command, &block)
|
11587
|
+
end
|
11588
|
+
|
11589
|
+
# Deletes a specific feedback report. Used for "undo" of a feedback submission.
|
11590
|
+
# @param [String] name
|
11591
|
+
# Required. Name of the SecurityFeedback to delete. Use the following structure
|
11592
|
+
# in your request: `organizations/`org`/securityFeedback/`feedback_id``
|
11593
|
+
# @param [String] fields
|
11594
|
+
# Selector specifying which fields to include in a partial response.
|
11595
|
+
# @param [String] quota_user
|
11596
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11597
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11598
|
+
# @param [Google::Apis::RequestOptions] options
|
11599
|
+
# Request-specific options
|
11600
|
+
#
|
11601
|
+
# @yield [result, err] Result & error if block supplied
|
11602
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleProtobufEmpty] parsed result object
|
11603
|
+
# @yieldparam err [StandardError] error object if request failed
|
11604
|
+
#
|
11605
|
+
# @return [Google::Apis::ApigeeV1::GoogleProtobufEmpty]
|
11606
|
+
#
|
11607
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11608
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11609
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11610
|
+
def delete_organization_security_feedback(name, fields: nil, quota_user: nil, options: nil, &block)
|
11611
|
+
command = make_simple_command(:delete, 'v1/{+name}', options)
|
11612
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleProtobufEmpty::Representation
|
11613
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleProtobufEmpty
|
11614
|
+
command.params['name'] = name unless name.nil?
|
11615
|
+
command.query['fields'] = fields unless fields.nil?
|
11616
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11617
|
+
execute_or_queue_command(command, &block)
|
11618
|
+
end
|
11619
|
+
|
11620
|
+
# Gets a specific customer feedback report.
|
11621
|
+
# @param [String] name
|
11622
|
+
# Required. Name of the SecurityFeedback. Format: `organizations/`org`/
|
11623
|
+
# securityFeedback/`feedback_id`` Example: organizations/apigee-organization-
|
11624
|
+
# name/securityFeedback/feedback-id
|
11625
|
+
# @param [String] fields
|
11626
|
+
# Selector specifying which fields to include in a partial response.
|
11627
|
+
# @param [String] quota_user
|
11628
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11629
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11630
|
+
# @param [Google::Apis::RequestOptions] options
|
11631
|
+
# Request-specific options
|
11632
|
+
#
|
11633
|
+
# @yield [result, err] Result & error if block supplied
|
11634
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] parsed result object
|
11635
|
+
# @yieldparam err [StandardError] error object if request failed
|
11636
|
+
#
|
11637
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback]
|
11638
|
+
#
|
11639
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11640
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11641
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11642
|
+
def get_organization_security_feedback(name, fields: nil, quota_user: nil, options: nil, &block)
|
11643
|
+
command = make_simple_command(:get, 'v1/{+name}', options)
|
11644
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11645
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback
|
11646
|
+
command.params['name'] = name unless name.nil?
|
11647
|
+
command.query['fields'] = fields unless fields.nil?
|
11648
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11649
|
+
execute_or_queue_command(command, &block)
|
11650
|
+
end
|
11651
|
+
|
11652
|
+
# Lists all feedback reports which have already been submitted.
|
11653
|
+
# @param [String] parent
|
11654
|
+
# Required. Name of the organization. Format: `organizations/`org``. Example:
|
11655
|
+
# organizations/apigee-organization-name/securityFeedback
|
11656
|
+
# @param [Fixnum] page_size
|
11657
|
+
# Optional. The maximum number of feedback reports to return. The service may
|
11658
|
+
# return fewer than this value. LINT.IfChange(documented_page_size_limits) If
|
11659
|
+
# unspecified, at most 10 feedback reports will be returned. The maximum value
|
11660
|
+
# is 100; values above 100 will be coerced to 100. LINT.ThenChange( //depot/
|
11661
|
+
# google3/edge/sense/boq/service/v1/securityfeedback/securityfeedback_rpc.go:
|
11662
|
+
# page_size_limits )
|
11663
|
+
# @param [String] page_token
|
11664
|
+
# Optional. A page token, received from a previous `ListSecurityFeedback` call.
|
11665
|
+
# Provide this to retrieve the subsequent page. When paginating, all other
|
11666
|
+
# parameters provided to `ListSecurityFeedback` must match the call that
|
11667
|
+
# provided the page token.
|
11668
|
+
# @param [String] fields
|
11669
|
+
# Selector specifying which fields to include in a partial response.
|
11670
|
+
# @param [String] quota_user
|
11671
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11672
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11673
|
+
# @param [Google::Apis::RequestOptions] options
|
11674
|
+
# Request-specific options
|
11675
|
+
#
|
11676
|
+
# @yield [result, err] Result & error if block supplied
|
11677
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse] parsed result object
|
11678
|
+
# @yieldparam err [StandardError] error object if request failed
|
11679
|
+
#
|
11680
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse]
|
11681
|
+
#
|
11682
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11683
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11684
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11685
|
+
def list_organization_security_feedbacks(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
11686
|
+
command = make_simple_command(:get, 'v1/{+parent}/securityFeedback', options)
|
11687
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse::Representation
|
11688
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListSecurityFeedbackResponse
|
11689
|
+
command.params['parent'] = parent unless parent.nil?
|
11690
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
11691
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
11692
|
+
command.query['fields'] = fields unless fields.nil?
|
11693
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11694
|
+
execute_or_queue_command(command, &block)
|
11695
|
+
end
|
11696
|
+
|
11697
|
+
# Updates a specific feedback report.
|
11698
|
+
# @param [String] name
|
11699
|
+
# Output only. Identifier. The feedback name is intended to be a system-
|
11700
|
+
# generated uuid.
|
11701
|
+
# @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] google_cloud_apigee_v1_security_feedback_object
|
11702
|
+
# @param [String] update_mask
|
11703
|
+
# Optional. The list of fields to update.
|
11704
|
+
# @param [String] fields
|
11705
|
+
# Selector specifying which fields to include in a partial response.
|
11706
|
+
# @param [String] quota_user
|
11707
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
11708
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
11709
|
+
# @param [Google::Apis::RequestOptions] options
|
11710
|
+
# Request-specific options
|
11711
|
+
#
|
11712
|
+
# @yield [result, err] Result & error if block supplied
|
11713
|
+
# @yieldparam result [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback] parsed result object
|
11714
|
+
# @yieldparam err [StandardError] error object if request failed
|
11715
|
+
#
|
11716
|
+
# @return [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback]
|
11717
|
+
#
|
11718
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
11719
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
11720
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
11721
|
+
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)
|
11722
|
+
command = make_simple_command(:patch, 'v1/{+name}', options)
|
11723
|
+
command.request_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11724
|
+
command.request_object = google_cloud_apigee_v1_security_feedback_object
|
11725
|
+
command.response_representation = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback::Representation
|
11726
|
+
command.response_class = Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityFeedback
|
11727
|
+
command.params['name'] = name unless name.nil?
|
11728
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
11729
|
+
command.query['fields'] = fields unless fields.nil?
|
11730
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
11731
|
+
execute_or_queue_command(command, &block)
|
11732
|
+
end
|
11733
|
+
|
11543
11734
|
# Create a security monitoring condition.
|
11544
11735
|
# @param [String] parent
|
11545
11736
|
# 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.114.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.114.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:
|