google-apis-securitycenter_v1 0.116.0 → 0.117.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: ee8c88e53624acf0a93c102718fa974eea51fab647cf01b68de255b3ce5f5d0a
|
|
4
|
+
data.tar.gz: 9218c5a6e8c1488c2731a2635aceb5ec747f6384aa6021ca8241713be40ca046
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '05527916febee2a6d77ad58ecbe38b0730d53f6fa13c279d4cb80302e7e3079e0cdda40fe205ec72da6d8e0b8d88bc1487dd032c54eca92382f880bd95354eaa'
|
|
7
|
+
data.tar.gz: 717ea6baf4da3619a99b1493b13ab951638f4a6bf054cd98bdec29dec039276ccee745a4943dc2454efa655f40dc6d9c0e982942cf0aca6ee72e535699fffa4c
|
data/CHANGELOG.md
CHANGED
|
@@ -2983,12 +2983,24 @@ module Google
|
|
|
2983
2983
|
class ExternalExposure
|
|
2984
2984
|
include Google::Apis::Core::Hashable
|
|
2985
2985
|
|
|
2986
|
+
# The full resource name of the load balancer backend bucket, for example, "//
|
|
2987
|
+
# compute.googleapis.com/projects/`project-id`/global/backendBuckets/`name`"
|
|
2988
|
+
# Corresponds to the JSON property `backendBucket`
|
|
2989
|
+
# @return [String]
|
|
2990
|
+
attr_accessor :backend_bucket
|
|
2991
|
+
|
|
2986
2992
|
# The full resource name of load balancer backend service, for example, "//
|
|
2987
2993
|
# compute.googleapis.com/projects/`project-id`/global/backendServices/`name`".
|
|
2988
2994
|
# Corresponds to the JSON property `backendService`
|
|
2989
2995
|
# @return [String]
|
|
2990
2996
|
attr_accessor :backend_service
|
|
2991
2997
|
|
|
2998
|
+
# The name and version of the exposed web application, for example, "Jenkins 2.
|
|
2999
|
+
# 184".
|
|
3000
|
+
# Corresponds to the JSON property `exposedApplication`
|
|
3001
|
+
# @return [String]
|
|
3002
|
+
attr_accessor :exposed_application
|
|
3003
|
+
|
|
2992
3004
|
# The resource which is running the exposed service, for example, "//compute.
|
|
2993
3005
|
# googleapis.com/projects/`project-id`/zones/`zone`/instances/`instance`.”
|
|
2994
3006
|
# Corresponds to the JSON property `exposedEndpoint`
|
|
@@ -3007,12 +3019,29 @@ module Google
|
|
|
3007
3019
|
# @return [String]
|
|
3008
3020
|
attr_accessor :forwarding_rule
|
|
3009
3021
|
|
|
3022
|
+
# Hostname of the exposed application, for example, "https://test-app.a.run.app/"
|
|
3023
|
+
# Corresponds to the JSON property `hostnameUri`
|
|
3024
|
+
# @return [String]
|
|
3025
|
+
attr_accessor :hostname_uri
|
|
3026
|
+
|
|
3027
|
+
# The http response returned by the web application.
|
|
3028
|
+
# Corresponds to the JSON property `httpResponse`
|
|
3029
|
+
# @return [Array<Google::Apis::SecuritycenterV1::HttpResponse>]
|
|
3030
|
+
attr_accessor :http_response
|
|
3031
|
+
|
|
3010
3032
|
# The full resource name of the instance group, for example, "//compute.
|
|
3011
3033
|
# googleapis.com/projects/`project-id`/global/instanceGroups/`name`".
|
|
3012
3034
|
# Corresponds to the JSON property `instanceGroup`
|
|
3013
3035
|
# @return [String]
|
|
3014
3036
|
attr_accessor :instance_group
|
|
3015
3037
|
|
|
3038
|
+
# The full resource name of load balancer backend service in the internal
|
|
3039
|
+
# project having resource exposed via PSC, for example, "//compute.googleapis.
|
|
3040
|
+
# com/projects/`project-id`/global/backendServices/`name`".
|
|
3041
|
+
# Corresponds to the JSON property `internalBackendService`
|
|
3042
|
+
# @return [String]
|
|
3043
|
+
attr_accessor :internal_backend_service
|
|
3044
|
+
|
|
3016
3045
|
# The full resource name of the load balancer firewall policy, for example, "//
|
|
3017
3046
|
# compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`policy-
|
|
3018
3047
|
# name`".
|
|
@@ -3026,6 +3055,12 @@ module Google
|
|
|
3026
3055
|
# @return [String]
|
|
3027
3056
|
attr_accessor :network_endpoint_group
|
|
3028
3057
|
|
|
3058
|
+
# The full resource name of the network ingress firewall policy, for example, "//
|
|
3059
|
+
# compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`name`".
|
|
3060
|
+
# Corresponds to the JSON property `networkIngressFirewallPolicy`
|
|
3061
|
+
# @return [String]
|
|
3062
|
+
attr_accessor :network_ingress_firewall_policy
|
|
3063
|
+
|
|
3029
3064
|
# Private IP address of the exposed endpoint.
|
|
3030
3065
|
# Corresponds to the JSON property `privateIpAddress`
|
|
3031
3066
|
# @return [String]
|
|
@@ -3036,6 +3071,22 @@ module Google
|
|
|
3036
3071
|
# @return [String]
|
|
3037
3072
|
attr_accessor :private_port
|
|
3038
3073
|
|
|
3074
|
+
# The full resource name of the PSC (Private Service Connect) network attachment
|
|
3075
|
+
# that network interface controller is attached to, for example, "//compute.
|
|
3076
|
+
# googleapis.com/projects/`project-id`/regions/`region`/networkAttachments/`name`
|
|
3077
|
+
# "
|
|
3078
|
+
# Corresponds to the JSON property `pscNetworkAttachment`
|
|
3079
|
+
# @return [String]
|
|
3080
|
+
attr_accessor :psc_network_attachment
|
|
3081
|
+
|
|
3082
|
+
# The full resource name of the PSC (Private Service Connect) service attachment
|
|
3083
|
+
# that the load balancer network endpoint group targets, for example, "//compute.
|
|
3084
|
+
# googleapis.com/projects/`project-id`/regions/`region`/serviceAttachments/`name`
|
|
3085
|
+
# "
|
|
3086
|
+
# Corresponds to the JSON property `pscServiceAttachment`
|
|
3087
|
+
# @return [String]
|
|
3088
|
+
attr_accessor :psc_service_attachment
|
|
3089
|
+
|
|
3039
3090
|
# Public IP address of the exposed endpoint.
|
|
3040
3091
|
# Corresponds to the JSON property `publicIpAddress`
|
|
3041
3092
|
# @return [String]
|
|
@@ -3059,15 +3110,23 @@ module Google
|
|
|
3059
3110
|
|
|
3060
3111
|
# Update properties of this object
|
|
3061
3112
|
def update!(**args)
|
|
3113
|
+
@backend_bucket = args[:backend_bucket] if args.key?(:backend_bucket)
|
|
3062
3114
|
@backend_service = args[:backend_service] if args.key?(:backend_service)
|
|
3115
|
+
@exposed_application = args[:exposed_application] if args.key?(:exposed_application)
|
|
3063
3116
|
@exposed_endpoint = args[:exposed_endpoint] if args.key?(:exposed_endpoint)
|
|
3064
3117
|
@exposed_service = args[:exposed_service] if args.key?(:exposed_service)
|
|
3065
3118
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
3119
|
+
@hostname_uri = args[:hostname_uri] if args.key?(:hostname_uri)
|
|
3120
|
+
@http_response = args[:http_response] if args.key?(:http_response)
|
|
3066
3121
|
@instance_group = args[:instance_group] if args.key?(:instance_group)
|
|
3122
|
+
@internal_backend_service = args[:internal_backend_service] if args.key?(:internal_backend_service)
|
|
3067
3123
|
@load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
|
|
3068
3124
|
@network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
|
|
3125
|
+
@network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
|
|
3069
3126
|
@private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
|
|
3070
3127
|
@private_port = args[:private_port] if args.key?(:private_port)
|
|
3128
|
+
@psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
|
|
3129
|
+
@psc_service_attachment = args[:psc_service_attachment] if args.key?(:psc_service_attachment)
|
|
3071
3130
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
|
3072
3131
|
@public_port = args[:public_port] if args.key?(:public_port)
|
|
3073
3132
|
@service_firewall_policy = args[:service_firewall_policy] if args.key?(:service_firewall_policy)
|
|
@@ -7468,12 +7527,24 @@ module Google
|
|
|
7468
7527
|
class GoogleCloudSecuritycenterV2ExternalExposure
|
|
7469
7528
|
include Google::Apis::Core::Hashable
|
|
7470
7529
|
|
|
7530
|
+
# The full resource name of the load balancer backend bucket, for example, "//
|
|
7531
|
+
# compute.googleapis.com/projects/`project-id`/global/backendBuckets/`name`"
|
|
7532
|
+
# Corresponds to the JSON property `backendBucket`
|
|
7533
|
+
# @return [String]
|
|
7534
|
+
attr_accessor :backend_bucket
|
|
7535
|
+
|
|
7471
7536
|
# The full resource name of load balancer backend service, for example, "//
|
|
7472
7537
|
# compute.googleapis.com/projects/`project-id`/global/backendServices/`name`".
|
|
7473
7538
|
# Corresponds to the JSON property `backendService`
|
|
7474
7539
|
# @return [String]
|
|
7475
7540
|
attr_accessor :backend_service
|
|
7476
7541
|
|
|
7542
|
+
# The name and version of the exposed web application, for example, "Jenkins 2.
|
|
7543
|
+
# 184".
|
|
7544
|
+
# Corresponds to the JSON property `exposedApplication`
|
|
7545
|
+
# @return [String]
|
|
7546
|
+
attr_accessor :exposed_application
|
|
7547
|
+
|
|
7477
7548
|
# The resource which is running the exposed service, for example, "//compute.
|
|
7478
7549
|
# googleapis.com/projects/`project-id`/zones/`zone`/instances/`instance`.”
|
|
7479
7550
|
# Corresponds to the JSON property `exposedEndpoint`
|
|
@@ -7492,12 +7563,29 @@ module Google
|
|
|
7492
7563
|
# @return [String]
|
|
7493
7564
|
attr_accessor :forwarding_rule
|
|
7494
7565
|
|
|
7566
|
+
# Hostname of the exposed application, for example, "https://test-app.a.run.app/"
|
|
7567
|
+
# Corresponds to the JSON property `hostnameUri`
|
|
7568
|
+
# @return [String]
|
|
7569
|
+
attr_accessor :hostname_uri
|
|
7570
|
+
|
|
7571
|
+
# The http response returned by the web application.
|
|
7572
|
+
# Corresponds to the JSON property `httpResponse`
|
|
7573
|
+
# @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2HttpResponse>]
|
|
7574
|
+
attr_accessor :http_response
|
|
7575
|
+
|
|
7495
7576
|
# The full resource name of the instance group, for example, "//compute.
|
|
7496
7577
|
# googleapis.com/projects/`project-id`/global/instanceGroups/`name`".
|
|
7497
7578
|
# Corresponds to the JSON property `instanceGroup`
|
|
7498
7579
|
# @return [String]
|
|
7499
7580
|
attr_accessor :instance_group
|
|
7500
7581
|
|
|
7582
|
+
# The full resource name of load balancer backend service in the internal
|
|
7583
|
+
# project having resource exposed via PSC, for example, "//compute.googleapis.
|
|
7584
|
+
# com/projects/`project-id`/global/backendServices/`name`".
|
|
7585
|
+
# Corresponds to the JSON property `internalBackendService`
|
|
7586
|
+
# @return [String]
|
|
7587
|
+
attr_accessor :internal_backend_service
|
|
7588
|
+
|
|
7501
7589
|
# The full resource name of the load balancer firewall policy, for example, "//
|
|
7502
7590
|
# compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`policy-
|
|
7503
7591
|
# name`".
|
|
@@ -7511,6 +7599,12 @@ module Google
|
|
|
7511
7599
|
# @return [String]
|
|
7512
7600
|
attr_accessor :network_endpoint_group
|
|
7513
7601
|
|
|
7602
|
+
# The full resource name of the network ingress firewall policy, for example, "//
|
|
7603
|
+
# compute.googleapis.com/projects/`project-id`/global/firewallPolicies/`name`".
|
|
7604
|
+
# Corresponds to the JSON property `networkIngressFirewallPolicy`
|
|
7605
|
+
# @return [String]
|
|
7606
|
+
attr_accessor :network_ingress_firewall_policy
|
|
7607
|
+
|
|
7514
7608
|
# Private IP address of the exposed endpoint.
|
|
7515
7609
|
# Corresponds to the JSON property `privateIpAddress`
|
|
7516
7610
|
# @return [String]
|
|
@@ -7521,6 +7615,22 @@ module Google
|
|
|
7521
7615
|
# @return [String]
|
|
7522
7616
|
attr_accessor :private_port
|
|
7523
7617
|
|
|
7618
|
+
# The full resource name of the PSC (Private Service Connect) network attachment
|
|
7619
|
+
# that network interface controller is attached to, for example, "//compute.
|
|
7620
|
+
# googleapis.com/projects/`project-id`/regions/`region`/networkAttachments/`name`
|
|
7621
|
+
# "
|
|
7622
|
+
# Corresponds to the JSON property `pscNetworkAttachment`
|
|
7623
|
+
# @return [String]
|
|
7624
|
+
attr_accessor :psc_network_attachment
|
|
7625
|
+
|
|
7626
|
+
# The full resource name of the PSC (Private Service Connect) service attachment
|
|
7627
|
+
# that the load balancer network endpoint group targets, for example, "//compute.
|
|
7628
|
+
# googleapis.com/projects/`project-id`/regions/`region`/serviceAttachments/`name`
|
|
7629
|
+
# "
|
|
7630
|
+
# Corresponds to the JSON property `pscServiceAttachment`
|
|
7631
|
+
# @return [String]
|
|
7632
|
+
attr_accessor :psc_service_attachment
|
|
7633
|
+
|
|
7524
7634
|
# Public IP address of the exposed endpoint.
|
|
7525
7635
|
# Corresponds to the JSON property `publicIpAddress`
|
|
7526
7636
|
# @return [String]
|
|
@@ -7544,15 +7654,23 @@ module Google
|
|
|
7544
7654
|
|
|
7545
7655
|
# Update properties of this object
|
|
7546
7656
|
def update!(**args)
|
|
7657
|
+
@backend_bucket = args[:backend_bucket] if args.key?(:backend_bucket)
|
|
7547
7658
|
@backend_service = args[:backend_service] if args.key?(:backend_service)
|
|
7659
|
+
@exposed_application = args[:exposed_application] if args.key?(:exposed_application)
|
|
7548
7660
|
@exposed_endpoint = args[:exposed_endpoint] if args.key?(:exposed_endpoint)
|
|
7549
7661
|
@exposed_service = args[:exposed_service] if args.key?(:exposed_service)
|
|
7550
7662
|
@forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
|
|
7663
|
+
@hostname_uri = args[:hostname_uri] if args.key?(:hostname_uri)
|
|
7664
|
+
@http_response = args[:http_response] if args.key?(:http_response)
|
|
7551
7665
|
@instance_group = args[:instance_group] if args.key?(:instance_group)
|
|
7666
|
+
@internal_backend_service = args[:internal_backend_service] if args.key?(:internal_backend_service)
|
|
7552
7667
|
@load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
|
|
7553
7668
|
@network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
|
|
7669
|
+
@network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
|
|
7554
7670
|
@private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
|
|
7555
7671
|
@private_port = args[:private_port] if args.key?(:private_port)
|
|
7672
|
+
@psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
|
|
7673
|
+
@psc_service_attachment = args[:psc_service_attachment] if args.key?(:psc_service_attachment)
|
|
7556
7674
|
@public_ip_address = args[:public_ip_address] if args.key?(:public_ip_address)
|
|
7557
7675
|
@public_port = args[:public_port] if args.key?(:public_port)
|
|
7558
7676
|
@service_firewall_policy = args[:service_firewall_policy] if args.key?(:service_firewall_policy)
|
|
@@ -8380,6 +8498,32 @@ module Google
|
|
|
8380
8498
|
end
|
|
8381
8499
|
end
|
|
8382
8500
|
|
|
8501
|
+
# The http response returned by the web application.
|
|
8502
|
+
class GoogleCloudSecuritycenterV2HttpResponse
|
|
8503
|
+
include Google::Apis::Core::Hashable
|
|
8504
|
+
|
|
8505
|
+
# The http path for which response code was returned by web application, for
|
|
8506
|
+
# example, "https://test-app.a.run.app/test".
|
|
8507
|
+
# Corresponds to the JSON property `path`
|
|
8508
|
+
# @return [String]
|
|
8509
|
+
attr_accessor :path
|
|
8510
|
+
|
|
8511
|
+
# The http response code returned by the web application, for example, 200.
|
|
8512
|
+
# Corresponds to the JSON property `statusCode`
|
|
8513
|
+
# @return [String]
|
|
8514
|
+
attr_accessor :status_code
|
|
8515
|
+
|
|
8516
|
+
def initialize(**args)
|
|
8517
|
+
update!(**args)
|
|
8518
|
+
end
|
|
8519
|
+
|
|
8520
|
+
# Update properties of this object
|
|
8521
|
+
def update!(**args)
|
|
8522
|
+
@path = args[:path] if args.key?(:path)
|
|
8523
|
+
@status_code = args[:status_code] if args.key?(:status_code)
|
|
8524
|
+
end
|
|
8525
|
+
end
|
|
8526
|
+
|
|
8383
8527
|
# Represents a particular IAM binding, which captures a member's role addition,
|
|
8384
8528
|
# removal, or state.
|
|
8385
8529
|
class GoogleCloudSecuritycenterV2IamBinding
|
|
@@ -11688,6 +11832,32 @@ module Google
|
|
|
11688
11832
|
end
|
|
11689
11833
|
end
|
|
11690
11834
|
|
|
11835
|
+
# The http response returned by the web application.
|
|
11836
|
+
class HttpResponse
|
|
11837
|
+
include Google::Apis::Core::Hashable
|
|
11838
|
+
|
|
11839
|
+
# The http path for which response code was returned by web application, for
|
|
11840
|
+
# example, "https://test-app.a.run.app/test".
|
|
11841
|
+
# Corresponds to the JSON property `path`
|
|
11842
|
+
# @return [String]
|
|
11843
|
+
attr_accessor :path
|
|
11844
|
+
|
|
11845
|
+
# The http response code returned by the web application, for example, 200.
|
|
11846
|
+
# Corresponds to the JSON property `statusCode`
|
|
11847
|
+
# @return [String]
|
|
11848
|
+
attr_accessor :status_code
|
|
11849
|
+
|
|
11850
|
+
def initialize(**args)
|
|
11851
|
+
update!(**args)
|
|
11852
|
+
end
|
|
11853
|
+
|
|
11854
|
+
# Update properties of this object
|
|
11855
|
+
def update!(**args)
|
|
11856
|
+
@path = args[:path] if args.key?(:path)
|
|
11857
|
+
@status_code = args[:status_code] if args.key?(:status_code)
|
|
11858
|
+
end
|
|
11859
|
+
end
|
|
11860
|
+
|
|
11691
11861
|
# Represents a particular IAM binding, which captures a member's role addition,
|
|
11692
11862
|
# removal, or state.
|
|
11693
11863
|
class IamBinding
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module SecuritycenterV1
|
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.117.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 = "20260424"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1114,6 +1114,12 @@ module Google
|
|
|
1114
1114
|
include Google::Apis::Core::JsonObjectSupport
|
|
1115
1115
|
end
|
|
1116
1116
|
|
|
1117
|
+
class GoogleCloudSecuritycenterV2HttpResponse
|
|
1118
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
|
+
|
|
1120
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1121
|
+
end
|
|
1122
|
+
|
|
1117
1123
|
class GoogleCloudSecuritycenterV2IamBinding
|
|
1118
1124
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1119
1125
|
|
|
@@ -1648,6 +1654,12 @@ module Google
|
|
|
1648
1654
|
include Google::Apis::Core::JsonObjectSupport
|
|
1649
1655
|
end
|
|
1650
1656
|
|
|
1657
|
+
class HttpResponse
|
|
1658
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1659
|
+
|
|
1660
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1661
|
+
end
|
|
1662
|
+
|
|
1651
1663
|
class IamBinding
|
|
1652
1664
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1653
1665
|
|
|
@@ -3000,15 +3012,24 @@ module Google
|
|
|
3000
3012
|
class ExternalExposure
|
|
3001
3013
|
# @private
|
|
3002
3014
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3015
|
+
property :backend_bucket, as: 'backendBucket'
|
|
3003
3016
|
property :backend_service, as: 'backendService'
|
|
3017
|
+
property :exposed_application, as: 'exposedApplication'
|
|
3004
3018
|
property :exposed_endpoint, as: 'exposedEndpoint'
|
|
3005
3019
|
property :exposed_service, as: 'exposedService'
|
|
3006
3020
|
property :forwarding_rule, as: 'forwardingRule'
|
|
3021
|
+
property :hostname_uri, as: 'hostnameUri'
|
|
3022
|
+
collection :http_response, as: 'httpResponse', class: Google::Apis::SecuritycenterV1::HttpResponse, decorator: Google::Apis::SecuritycenterV1::HttpResponse::Representation
|
|
3023
|
+
|
|
3007
3024
|
property :instance_group, as: 'instanceGroup'
|
|
3025
|
+
property :internal_backend_service, as: 'internalBackendService'
|
|
3008
3026
|
property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
|
|
3009
3027
|
property :network_endpoint_group, as: 'networkEndpointGroup'
|
|
3028
|
+
property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
|
|
3010
3029
|
property :private_ip_address, as: 'privateIpAddress'
|
|
3011
3030
|
property :private_port, as: 'privatePort'
|
|
3031
|
+
property :psc_network_attachment, as: 'pscNetworkAttachment'
|
|
3032
|
+
property :psc_service_attachment, as: 'pscServiceAttachment'
|
|
3012
3033
|
property :public_ip_address, as: 'publicIpAddress'
|
|
3013
3034
|
property :public_port, as: 'publicPort'
|
|
3014
3035
|
property :service_firewall_policy, as: 'serviceFirewallPolicy'
|
|
@@ -4134,15 +4155,24 @@ module Google
|
|
|
4134
4155
|
class GoogleCloudSecuritycenterV2ExternalExposure
|
|
4135
4156
|
# @private
|
|
4136
4157
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4158
|
+
property :backend_bucket, as: 'backendBucket'
|
|
4137
4159
|
property :backend_service, as: 'backendService'
|
|
4160
|
+
property :exposed_application, as: 'exposedApplication'
|
|
4138
4161
|
property :exposed_endpoint, as: 'exposedEndpoint'
|
|
4139
4162
|
property :exposed_service, as: 'exposedService'
|
|
4140
4163
|
property :forwarding_rule, as: 'forwardingRule'
|
|
4164
|
+
property :hostname_uri, as: 'hostnameUri'
|
|
4165
|
+
collection :http_response, as: 'httpResponse', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2HttpResponse, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2HttpResponse::Representation
|
|
4166
|
+
|
|
4141
4167
|
property :instance_group, as: 'instanceGroup'
|
|
4168
|
+
property :internal_backend_service, as: 'internalBackendService'
|
|
4142
4169
|
property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
|
|
4143
4170
|
property :network_endpoint_group, as: 'networkEndpointGroup'
|
|
4171
|
+
property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
|
|
4144
4172
|
property :private_ip_address, as: 'privateIpAddress'
|
|
4145
4173
|
property :private_port, as: 'privatePort'
|
|
4174
|
+
property :psc_network_attachment, as: 'pscNetworkAttachment'
|
|
4175
|
+
property :psc_service_attachment, as: 'pscServiceAttachment'
|
|
4146
4176
|
property :public_ip_address, as: 'publicIpAddress'
|
|
4147
4177
|
property :public_port, as: 'publicPort'
|
|
4148
4178
|
property :service_firewall_policy, as: 'serviceFirewallPolicy'
|
|
@@ -4350,6 +4380,14 @@ module Google
|
|
|
4350
4380
|
end
|
|
4351
4381
|
end
|
|
4352
4382
|
|
|
4383
|
+
class GoogleCloudSecuritycenterV2HttpResponse
|
|
4384
|
+
# @private
|
|
4385
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4386
|
+
property :path, as: 'path'
|
|
4387
|
+
property :status_code, as: 'statusCode'
|
|
4388
|
+
end
|
|
4389
|
+
end
|
|
4390
|
+
|
|
4353
4391
|
class GoogleCloudSecuritycenterV2IamBinding
|
|
4354
4392
|
# @private
|
|
4355
4393
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5268,6 +5306,14 @@ module Google
|
|
|
5268
5306
|
end
|
|
5269
5307
|
end
|
|
5270
5308
|
|
|
5309
|
+
class HttpResponse
|
|
5310
|
+
# @private
|
|
5311
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5312
|
+
property :path, as: 'path'
|
|
5313
|
+
property :status_code, as: 'statusCode'
|
|
5314
|
+
end
|
|
5315
|
+
end
|
|
5316
|
+
|
|
5271
5317
|
class IamBinding
|
|
5272
5318
|
# @private
|
|
5273
5319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-securitycenter_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.117.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-securitycenter_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.117.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|