google-apis-securitycenter_v1 0.55.0 → 0.56.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: 8bfd38e23ba11666879c88f28e2ddce4881662c322f4aaf18c3f6d746751fb86
4
- data.tar.gz: 3b8729b73cb27581459e662919203584cad697d8db25b73c588959cd4ebebe9f
3
+ metadata.gz: b496f1d85054d5421118f0a2124e127b90e4736382ead725713367dc4fc5cc70
4
+ data.tar.gz: 835521abd6edd0d15aba5c7307ba748466e1f7f487064aee5da94084a3faa7ee
5
5
  SHA512:
6
- metadata.gz: 58bcac671f97e5f5c12d7b36f72b6d9d9b06ec86942c2328a22bd59ee37a4e966eb52149b1ef0997fe47f37ef72e67b98df91574a52bd07a6cc4305d2acf907a
7
- data.tar.gz: e983ba174a776a156c19e14cfb740f853070b98290f463d34be0723b4391584cc84c50b23137cee6c1e5abcdd88af40bbe41cb1c827b5d12ac2179e51fe4bfff
6
+ metadata.gz: d53eaf7e8dba0c534e9853798879cd177f3234a60f2bef9ad4f2223330027d598bb3c6ee8d92390fd4d3bbd114e89537f8b2882bb8102fc9a9b826ecd12732c1
7
+ data.tar.gz: 713dfd074c33bbb6c6eee4edcc26b63c2fdbdc67fc717aa984b2ef89a55ad45b41053c45785448f3ecfe170067265f71665728be0eb557eafddee36df2ba2866
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.56.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230420
6
+
3
7
  ### v0.55.0 (2023-04-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20230414
@@ -120,17 +120,19 @@ module Google
120
120
  end
121
121
  end
122
122
 
123
- # Conveys information about a Kubernetes access review (e.g. kubectl auth can-i .
124
- # ..) that was involved in a finding.
123
+ # Conveys information about a Kubernetes access review (such as one returned by
124
+ # a [`kubectl auth can-i`](https://kubernetes.io/docs/reference/access-authn-
125
+ # authz/authorization/#checking-api-access) command) that was involved in a
126
+ # finding.
125
127
  class AccessReview
126
128
  include Google::Apis::Core::Hashable
127
129
 
128
- # Group is the API Group of the Resource. "*" means all.
130
+ # The API group of the resource. "*" means all.
129
131
  # Corresponds to the JSON property `group`
130
132
  # @return [String]
131
133
  attr_accessor :group
132
134
 
133
- # Name is the name of the resource being requested. Empty means all.
135
+ # The name of the resource being requested. Empty means all.
134
136
  # Corresponds to the JSON property `name`
135
137
  # @return [String]
136
138
  attr_accessor :name
@@ -141,23 +143,23 @@ module Google
141
143
  # @return [String]
142
144
  attr_accessor :ns
143
145
 
144
- # Resource is the optional resource type requested. "*" means all.
146
+ # The optional resource type requested. "*" means all.
145
147
  # Corresponds to the JSON property `resource`
146
148
  # @return [String]
147
149
  attr_accessor :resource
148
150
 
149
- # Subresource is the optional subresource type.
151
+ # The optional subresource type.
150
152
  # Corresponds to the JSON property `subresource`
151
153
  # @return [String]
152
154
  attr_accessor :subresource
153
155
 
154
- # Verb is a Kubernetes resource API verb, like: get, list, watch, create, update,
155
- # delete, proxy. "*" means all.
156
+ # A Kubernetes resource API verb, like get, list, watch, create, update, delete,
157
+ # proxy. "*" means all.
156
158
  # Corresponds to the JSON property `verb`
157
159
  # @return [String]
158
160
  attr_accessor :verb
159
161
 
160
- # Version is the API Version of the Resource. "*" means all.
162
+ # The API version of the resource. "*" means all.
161
163
  # Corresponds to the JSON property `version`
162
164
  # @return [String]
163
165
  attr_accessor :version
@@ -503,8 +505,8 @@ module Google
503
505
  attr_accessor :full_scan
504
506
  alias_method :full_scan?, :full_scan
505
507
 
506
- # The [type of information](https://cloud.google.com/dlp/docs/infotypes-
507
- # reference) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
508
+ # The type of information (or *[infoType](https://cloud.google.com/dlp/docs/
509
+ # infotypes-reference)*) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
508
510
  # Corresponds to the JSON property `infoType`
509
511
  # @return [String]
510
512
  attr_accessor :info_type
@@ -538,18 +540,17 @@ module Google
538
540
  class Compliance
539
541
  include Google::Apis::Core::Hashable
540
542
 
541
- # Policies within the standard/benchmark e.g. A.12.4.1
543
+ # Policies within the standard or benchmark, for example, A.12.4.1
542
544
  # Corresponds to the JSON property `ids`
543
545
  # @return [Array<String>]
544
546
  attr_accessor :ids
545
547
 
546
- # Refers to industry wide standards or benchmarks e.g. "cis", "pci", "owasp",
547
- # etc.
548
+ # Industry-wide compliance standards or benchmarks, such as CIS, PCI, and OWASP.
548
549
  # Corresponds to the JSON property `standard`
549
550
  # @return [String]
550
551
  attr_accessor :standard
551
552
 
552
- # Version of the standard/benchmark e.g. 1.1
553
+ # Version of the standard or benchmark, for example, 1.1
553
554
  # Corresponds to the JSON property `version`
554
555
  # @return [String]
555
556
  attr_accessor :version
@@ -629,7 +630,7 @@ module Google
629
630
  end
630
631
  end
631
632
 
632
- # The details pertaining to specific contacts
633
+ # Details about specific contacts
633
634
  class ContactDetails
634
635
  include Google::Apis::Core::Hashable
635
636
 
@@ -652,7 +653,7 @@ module Google
652
653
  class Container
653
654
  include Google::Apis::Core::Hashable
654
655
 
655
- # Optional container image id, when provided by the container runtime. Uniquely
656
+ # Optional container image ID, if provided by the container runtime. Uniquely
656
657
  # identifies the container image launched using a container image digest.
657
658
  # Corresponds to the JSON property `imageId`
658
659
  # @return [String]
@@ -663,13 +664,13 @@ module Google
663
664
  # @return [Array<Google::Apis::SecuritycenterV1::Label>]
664
665
  attr_accessor :labels
665
666
 
666
- # Container name.
667
+ # Name of the container.
667
668
  # Corresponds to the JSON property `name`
668
669
  # @return [String]
669
670
  attr_accessor :name
670
671
 
671
- # Container image URI provided when configuring a pod/container. May identify a
672
- # container image version using mutable tags.
672
+ # Container image URI provided when configuring a pod or container. This string
673
+ # can identify a container image version using mutable tags.
673
674
  # Corresponds to the JSON property `uri`
674
675
  # @return [String]
675
676
  attr_accessor :uri
@@ -805,38 +806,43 @@ module Google
805
806
  end
806
807
 
807
808
  # Represents database access information, such as queries. A database may be a
808
- # sub-resource of an instance (as in the case of CloudSQL instances or Cloud
809
+ # sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
809
810
  # Spanner instances), or the database instance itself. Some database resources
810
- # may not have the full resource name populated because these resource types are
811
- # not yet supported by Cloud Asset Inventory (e.g. CloudSQL databases). In these
812
- # cases only the display name will be provided.
811
+ # might not have the [full resource name](https://google.aip.dev/122#full-
812
+ # resource-names) populated because these resource types, such as Cloud SQL
813
+ # databases, are not yet supported by Cloud Asset Inventory. In these cases only
814
+ # the display name is provided. Some database resources may not have the [full
815
+ # resource name](https://google.aip.dev/122#full-resource-names) populated
816
+ # because these resource types are not yet supported by Cloud Asset Inventory (e.
817
+ # g. Cloud SQL databases). In these cases only the display name will be provided.
813
818
  class Database
814
819
  include Google::Apis::Core::Hashable
815
820
 
816
- # The human readable name of the database the user connected to.
821
+ # The human-readable name of the database that the user connected to.
817
822
  # Corresponds to the JSON property `displayName`
818
823
  # @return [String]
819
824
  attr_accessor :display_name
820
825
 
821
- # The target usernames/roles/groups of a SQL privilege grant (not an IAM policy
822
- # change).
826
+ # The target usernames, roles, or groups of an SQL privilege grant, which is not
827
+ # an IAM policy change.
823
828
  # Corresponds to the JSON property `grantees`
824
829
  # @return [Array<String>]
825
830
  attr_accessor :grantees
826
831
 
827
- # The full resource name of the database the user connected to, if it is
828
- # supported by CAI. (https://google.aip.dev/122#full-resource-names)
832
+ # The [full resource name](https://google.aip.dev/122#full-resource-names) of
833
+ # the database that the user connected to, if it is supported by Cloud Asset
834
+ # Inventory.
829
835
  # Corresponds to the JSON property `name`
830
836
  # @return [String]
831
837
  attr_accessor :name
832
838
 
833
- # The SQL statement associated with the relevant access.
839
+ # The SQL statement that is associated with the database access.
834
840
  # Corresponds to the JSON property `query`
835
841
  # @return [String]
836
842
  attr_accessor :query
837
843
 
838
- # The username used to connect to the DB. This may not necessarily be an IAM
839
- # principal, and has no required format.
844
+ # The username used to connect to the database. The username might not be an IAM
845
+ # principal and does not have a set format.
840
846
  # Corresponds to the JSON property `userName`
841
847
  # @return [String]
842
848
  attr_accessor :user_name
@@ -896,8 +902,8 @@ module Google
896
902
  end
897
903
  end
898
904
 
899
- # EnvironmentVariable is a name-value pair to store environment variables for
900
- # Process.
905
+ # A name-value pair representing an environment variable used in an operating
906
+ # system process.
901
907
  class EnvironmentVariable
902
908
  include Google::Apis::Core::Hashable
903
909
 
@@ -922,19 +928,20 @@ module Google
922
928
  end
923
929
  end
924
930
 
925
- # Resource that has been exfiltrated or exfiltrated_to.
931
+ # Resource where data was exfiltrated from or exfiltrated to.
926
932
  class ExfilResource
927
933
  include Google::Apis::Core::Hashable
928
934
 
929
- # Subcomponents of the asset that is exfiltrated - these could be URIs used
930
- # during exfiltration, table names, databases, filenames, etc. For example,
931
- # multiple tables may be exfiltrated from the same CloudSQL instance, or
932
- # multiple files from the same Cloud Storage bucket.
935
+ # Subcomponents of the asset that was exfiltrated, like URIs used during
936
+ # exfiltration, table names, databases, and filenames. For example, multiple
937
+ # tables might have been exfiltrated from the same Cloud SQL instance, or
938
+ # multiple files might have been exfiltrated from the same Cloud Storage bucket.
933
939
  # Corresponds to the JSON property `components`
934
940
  # @return [Array<String>]
935
941
  attr_accessor :components
936
942
 
937
- # Resource's URI (https://google.aip.dev/122#full-resource-names)
943
+ # The resource's [full resource name](https://cloud.google.com/apis/design/
944
+ # resource_names#full_resource_name).
938
945
  # Corresponds to the JSON property `name`
939
946
  # @return [String]
940
947
  attr_accessor :name
@@ -950,9 +957,10 @@ module Google
950
957
  end
951
958
  end
952
959
 
953
- # Exfiltration represents a data exfiltration attempt of one or more sources to
954
- # one or more targets. Sources represent the source of data that is exfiltrated,
955
- # and Targets represents the destination the data was copied to.
960
+ # Exfiltration represents a data exfiltration attempt from one or more sources
961
+ # to one or more targets. The `sources` attribute lists the sources of the
962
+ # exfiltrated data. The `targets` attribute lists the destinations the data was
963
+ # copied to.
956
964
  class Exfiltration
957
965
  include Google::Apis::Core::Hashable
958
966
 
@@ -1039,8 +1047,7 @@ module Google
1039
1047
  class File
1040
1048
  include Google::Apis::Core::Hashable
1041
1049
 
1042
- # Prefix of the file contents as a JSON encoded string. (Currently only
1043
- # populated for Malicious Script Executed findings.)
1050
+ # Prefix of the file contents as a JSON-encoded string.
1044
1051
  # Corresponds to the JSON property `contents`
1045
1052
  # @return [String]
1046
1053
  attr_accessor :contents
@@ -1162,11 +1169,15 @@ module Google
1162
1169
  attr_accessor :create_time
1163
1170
 
1164
1171
  # Represents database access information, such as queries. A database may be a
1165
- # sub-resource of an instance (as in the case of CloudSQL instances or Cloud
1172
+ # sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
1166
1173
  # Spanner instances), or the database instance itself. Some database resources
1167
- # may not have the full resource name populated because these resource types are
1168
- # not yet supported by Cloud Asset Inventory (e.g. CloudSQL databases). In these
1169
- # cases only the display name will be provided.
1174
+ # might not have the [full resource name](https://google.aip.dev/122#full-
1175
+ # resource-names) populated because these resource types, such as Cloud SQL
1176
+ # databases, are not yet supported by Cloud Asset Inventory. In these cases only
1177
+ # the display name is provided. Some database resources may not have the [full
1178
+ # resource name](https://google.aip.dev/122#full-resource-names) populated
1179
+ # because these resource types are not yet supported by Cloud Asset Inventory (e.
1180
+ # g. Cloud SQL databases). In these cases only the display name will be provided.
1170
1181
  # Corresponds to the JSON property `database`
1171
1182
  # @return [Google::Apis::SecuritycenterV1::Database]
1172
1183
  attr_accessor :database
@@ -1186,9 +1197,10 @@ module Google
1186
1197
  # @return [String]
1187
1198
  attr_accessor :event_time
1188
1199
 
1189
- # Exfiltration represents a data exfiltration attempt of one or more sources to
1190
- # one or more targets. Sources represent the source of data that is exfiltrated,
1191
- # and Targets represents the destination the data was copied to.
1200
+ # Exfiltration represents a data exfiltration attempt from one or more sources
1201
+ # to one or more targets. The `sources` attribute lists the sources of the
1202
+ # exfiltrated data. The `targets` attribute lists the destinations the data was
1203
+ # copied to.
1192
1204
  # Corresponds to the JSON property `exfiltration`
1193
1205
  # @return [Google::Apis::SecuritycenterV1::Exfiltration]
1194
1206
  attr_accessor :exfiltration
@@ -1571,12 +1583,12 @@ module Google
1571
1583
  class GoogleCloudSecuritycenterV1Binding
1572
1584
  include Google::Apis::Core::Hashable
1573
1585
 
1574
- # Name for binding.
1586
+ # Name for the binding.
1575
1587
  # Corresponds to the JSON property `name`
1576
1588
  # @return [String]
1577
1589
  attr_accessor :name
1578
1590
 
1579
- # Namespace for binding.
1591
+ # Namespace for the binding.
1580
1592
  # Corresponds to the JSON property `ns`
1581
1593
  # @return [String]
1582
1594
  attr_accessor :ns
@@ -2796,8 +2808,8 @@ module Google
2796
2808
  # @return [String]
2797
2809
  attr_accessor :action
2798
2810
 
2799
- # A single identity requesting access for a Cloud Platform resource, e.g. "foo@
2800
- # google.com".
2811
+ # A single identity requesting access for a Cloud Platform resource, for example,
2812
+ # "foo@google.com".
2801
2813
  # Corresponds to the JSON property `member`
2802
2814
  # @return [String]
2803
2815
  attr_accessor :member
@@ -2888,60 +2900,60 @@ module Google
2888
2900
  class KernelRootkit
2889
2901
  include Google::Apis::Core::Hashable
2890
2902
 
2891
- # Rootkit name when available.
2903
+ # Rootkit name, when available.
2892
2904
  # Corresponds to the JSON property `name`
2893
2905
  # @return [String]
2894
2906
  attr_accessor :name
2895
2907
 
2896
- # True when unexpected modifications of kernel code memory are present.
2908
+ # True if unexpected modifications of kernel code memory are present.
2897
2909
  # Corresponds to the JSON property `unexpectedCodeModification`
2898
2910
  # @return [Boolean]
2899
2911
  attr_accessor :unexpected_code_modification
2900
2912
  alias_method :unexpected_code_modification?, :unexpected_code_modification
2901
2913
 
2902
- # True when `ftrace` points are present with callbacks pointing to regions that
2914
+ # True if `ftrace` points are present with callbacks pointing to regions that
2903
2915
  # are not in the expected kernel or module code range.
2904
2916
  # Corresponds to the JSON property `unexpectedFtraceHandler`
2905
2917
  # @return [Boolean]
2906
2918
  attr_accessor :unexpected_ftrace_handler
2907
2919
  alias_method :unexpected_ftrace_handler?, :unexpected_ftrace_handler
2908
2920
 
2909
- # True when interrupt handlers that are are not in the expected kernel or module
2921
+ # True if interrupt handlers that are are not in the expected kernel or module
2910
2922
  # code regions are present.
2911
2923
  # Corresponds to the JSON property `unexpectedInterruptHandler`
2912
2924
  # @return [Boolean]
2913
2925
  attr_accessor :unexpected_interrupt_handler
2914
2926
  alias_method :unexpected_interrupt_handler?, :unexpected_interrupt_handler
2915
2927
 
2916
- # True when kernel code pages that are not in the expected kernel or module code
2928
+ # True if kernel code pages that are not in the expected kernel or module code
2917
2929
  # regions are present.
2918
2930
  # Corresponds to the JSON property `unexpectedKernelCodePages`
2919
2931
  # @return [Boolean]
2920
2932
  attr_accessor :unexpected_kernel_code_pages
2921
2933
  alias_method :unexpected_kernel_code_pages?, :unexpected_kernel_code_pages
2922
2934
 
2923
- # True when `kprobe` points are present with callbacks pointing to regions that
2935
+ # True if `kprobe` points are present with callbacks pointing to regions that
2924
2936
  # are not in the expected kernel or module code range.
2925
2937
  # Corresponds to the JSON property `unexpectedKprobeHandler`
2926
2938
  # @return [Boolean]
2927
2939
  attr_accessor :unexpected_kprobe_handler
2928
2940
  alias_method :unexpected_kprobe_handler?, :unexpected_kprobe_handler
2929
2941
 
2930
- # True when unexpected processes in the scheduler run queue are present. Such
2942
+ # True if unexpected processes in the scheduler run queue are present. Such
2931
2943
  # processes are in the run queue, but not in the process task list.
2932
2944
  # Corresponds to the JSON property `unexpectedProcessesInRunqueue`
2933
2945
  # @return [Boolean]
2934
2946
  attr_accessor :unexpected_processes_in_runqueue
2935
2947
  alias_method :unexpected_processes_in_runqueue?, :unexpected_processes_in_runqueue
2936
2948
 
2937
- # True when unexpected modifications of kernel read-only data memory are present.
2949
+ # True if unexpected modifications of kernel read-only data memory are present.
2938
2950
  # Corresponds to the JSON property `unexpectedReadOnlyDataModification`
2939
2951
  # @return [Boolean]
2940
2952
  attr_accessor :unexpected_read_only_data_modification
2941
2953
  alias_method :unexpected_read_only_data_modification?, :unexpected_read_only_data_modification
2942
2954
 
2943
- # True when system call handlers that are are not in the expected kernel or
2944
- # module code regions are present.
2955
+ # True if system call handlers that are are not in the expected kernel or module
2956
+ # code regions are present.
2945
2957
  # Corresponds to the JSON property `unexpectedSystemCallHandler`
2946
2958
  # @return [Boolean]
2947
2959
  attr_accessor :unexpected_system_call_handler
@@ -2969,37 +2981,42 @@ module Google
2969
2981
  class Kubernetes
2970
2982
  include Google::Apis::Core::Hashable
2971
2983
 
2972
- # Provides information on any Kubernetes access reviews (i.e. privilege checks)
2984
+ # Provides information on any Kubernetes access reviews (privilege checks)
2973
2985
  # relevant to the finding.
2974
2986
  # Corresponds to the JSON property `accessReviews`
2975
2987
  # @return [Array<Google::Apis::SecuritycenterV1::AccessReview>]
2976
2988
  attr_accessor :access_reviews
2977
2989
 
2978
- # Provides Kubernetes role binding information for findings that involve
2979
- # RoleBindings or ClusterRoleBindings.
2990
+ # Provides Kubernetes role binding information for findings that involve [
2991
+ # RoleBindings or ClusterRoleBindings](https://cloud.google.com/kubernetes-
2992
+ # engine/docs/how-to/role-based-access-control).
2980
2993
  # Corresponds to the JSON property `bindings`
2981
2994
  # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1Binding>]
2982
2995
  attr_accessor :bindings
2983
2996
 
2984
- # GKE Node Pools associated with the finding. This field will contain NodePool
2985
- # information for each Node, when it is available.
2997
+ # GKE [node pools](https://cloud.google.com/kubernetes-engine/docs/concepts/node-
2998
+ # pools) associated with the finding. This field contains node pool information
2999
+ # for each node, when it is available.
2986
3000
  # Corresponds to the JSON property `nodePools`
2987
3001
  # @return [Array<Google::Apis::SecuritycenterV1::NodePool>]
2988
3002
  attr_accessor :node_pools
2989
3003
 
2990
- # Provides Kubernetes Node information.
3004
+ # Provides Kubernetes [node](https://cloud.google.com/kubernetes-engine/docs/
3005
+ # concepts/cluster-architecture#nodes) information.
2991
3006
  # Corresponds to the JSON property `nodes`
2992
3007
  # @return [Array<Google::Apis::SecuritycenterV1::Node>]
2993
3008
  attr_accessor :nodes
2994
3009
 
2995
- # Kubernetes Pods associated with the finding. This field will contain Pod
2996
- # records for each container that is owned by a Pod.
3010
+ # Kubernetes [Pods](https://cloud.google.com/kubernetes-engine/docs/concepts/pod)
3011
+ # associated with the finding. This field contains Pod records for each
3012
+ # container that is owned by a Pod.
2997
3013
  # Corresponds to the JSON property `pods`
2998
3014
  # @return [Array<Google::Apis::SecuritycenterV1::Pod>]
2999
3015
  attr_accessor :pods
3000
3016
 
3001
- # Provides Kubernetes role information for findings that involve Roles or
3002
- # ClusterRoles.
3017
+ # Provides Kubernetes role information for findings that involve [Roles or
3018
+ # ClusterRoles](https://cloud.google.com/kubernetes-engine/docs/how-to/role-
3019
+ # based-access-control).
3003
3020
  # Corresponds to the JSON property `roles`
3004
3021
  # @return [Array<Google::Apis::SecuritycenterV1::Role>]
3005
3022
  attr_accessor :roles
@@ -3019,17 +3036,20 @@ module Google
3019
3036
  end
3020
3037
  end
3021
3038
 
3022
- # Label represents a generic name=value label. Label has separate name and value
3023
- # fields to support filtering with contains().
3039
+ # Represents a generic name-value label. A label has separate name and value
3040
+ # fields to support filtering with the `contains()` function. For more
3041
+ # information, see [Filtering on array-type fields](https://cloud.google.com/
3042
+ # security-command-center/docs/how-to-api-list-findings#array-contains-filtering)
3043
+ # .
3024
3044
  class Label
3025
3045
  include Google::Apis::Core::Hashable
3026
3046
 
3027
- # Label name.
3047
+ # Name of the label.
3028
3048
  # Corresponds to the JSON property `name`
3029
3049
  # @return [String]
3030
3050
  attr_accessor :name
3031
3051
 
3032
- # Label value.
3052
+ # Value that corresponds to the label's name.
3033
3053
  # Corresponds to the JSON property `value`
3034
3054
  # @return [String]
3035
3055
  attr_accessor :value
@@ -3468,11 +3488,12 @@ module Google
3468
3488
  end
3469
3489
  end
3470
3490
 
3471
- # Kubernetes Nodes associated with the finding.
3491
+ # Kubernetes nodes associated with the finding.
3472
3492
  class Node
3473
3493
  include Google::Apis::Core::Hashable
3474
3494
 
3475
- # Full Resource name of the Compute Engine VM running the cluster node.
3495
+ # [Full resource name](https://google.aip.dev/122#full-resource-names) of the
3496
+ # Compute Engine VM running the cluster node.
3476
3497
  # Corresponds to the JSON property `name`
3477
3498
  # @return [String]
3478
3499
  attr_accessor :name
@@ -3487,11 +3508,11 @@ module Google
3487
3508
  end
3488
3509
  end
3489
3510
 
3490
- # Provides GKE Node Pool information.
3511
+ # Provides GKE node pool information.
3491
3512
  class NodePool
3492
3513
  include Google::Apis::Core::Hashable
3493
3514
 
3494
- # Kubernetes Node pool name.
3515
+ # Kubernetes node pool name.
3495
3516
  # Corresponds to the JSON property `name`
3496
3517
  # @return [String]
3497
3518
  attr_accessor :name
@@ -3663,7 +3684,7 @@ module Google
3663
3684
  end
3664
3685
  end
3665
3686
 
3666
- # Kubernetes Pod.
3687
+ # A Kubernetes Pod.
3667
3688
  class Pod
3668
3689
  include Google::Apis::Core::Hashable
3669
3690
 
@@ -3832,18 +3853,18 @@ module Google
3832
3853
  # @return [Array<Google::Apis::SecuritycenterV1::File>]
3833
3854
  attr_accessor :libraries
3834
3855
 
3835
- # The process name visible in utilities like `top` and `ps`; it can be accessed
3836
- # via `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`.
3856
+ # The process name, as displayed in utilities like `top` and `ps`. This name can
3857
+ # be accessed through `/proc/[pid]/comm` and changed with `prctl(PR_SET_NAME)`.
3837
3858
  # Corresponds to the JSON property `name`
3838
3859
  # @return [String]
3839
3860
  attr_accessor :name
3840
3861
 
3841
- # The parent process id.
3862
+ # The parent process ID.
3842
3863
  # Corresponds to the JSON property `parentPid`
3843
3864
  # @return [Fixnum]
3844
3865
  attr_accessor :parent_pid
3845
3866
 
3846
- # The process id.
3867
+ # The process ID.
3847
3868
  # Corresponds to the JSON property `pid`
3848
3869
  # @return [Fixnum]
3849
3870
  attr_accessor :pid
@@ -4403,21 +4424,21 @@ module Google
4403
4424
  end
4404
4425
  end
4405
4426
 
4406
- # Represents a Kubernetes Subject.
4427
+ # Represents a Kubernetes subject.
4407
4428
  class Subject
4408
4429
  include Google::Apis::Core::Hashable
4409
4430
 
4410
- # Authentication type for subject.
4431
+ # Authentication type for the subject.
4411
4432
  # Corresponds to the JSON property `kind`
4412
4433
  # @return [String]
4413
4434
  attr_accessor :kind
4414
4435
 
4415
- # Name for subject.
4436
+ # Name for the subject.
4416
4437
  # Corresponds to the JSON property `name`
4417
4438
  # @return [String]
4418
4439
  attr_accessor :name
4419
4440
 
4420
- # Namespace for subject.
4441
+ # Namespace for the subject.
4421
4442
  # Corresponds to the JSON property `ns`
4422
4443
  # @return [String]
4423
4444
  attr_accessor :ns
@@ -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.55.0"
19
+ GEM_VERSION = "0.56.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230414"
25
+ REVISION = "20230420"
26
26
  end
27
27
  end
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.56.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-04-23 00:00:00.000000000 Z
11
+ date: 2023-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.55.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.56.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
63
63
  post_install_message:
64
64
  rdoc_options: []