You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self.oauth_register_endpoint = oauth_register_endpoint if oauth_register_endpoint is not None else ''
19599
-
'''
19600
-
The OAuth 2.0 dynamic client registration endpoint URL.
19601
-
'''
19602
19594
self.oauth_token_endpoint = oauth_token_endpoint if oauth_token_endpoint is not None else ''
19603
19595
'''
19604
19596
The OAuth 2.0 token endpoint URL.
@@ -19607,10 +19599,6 @@ def __init__(
19607
19599
'''
19608
19600
OAuth App Client Secret
19609
19601
'''
19610
-
self.port = port if port is not None else 0
19611
-
'''
19612
-
The port to dial to initiate a connection from the egress node to this resource.
19613
-
'''
19614
19602
self.port_override = port_override if port_override is not None else 0
19615
19603
'''
19616
19604
The local port used by clients to connect to this resource. It is automatically generated if not provided on create and may be re-generated on update by specifying a value of -1.
MCPDCR is currently unstable, and its API may change, or it may be removed,
19689
+
without a major version bump.
19690
+
'''
19691
+
__slots__ = [
19692
+
'bind_interface',
19693
+
'egress_filter',
19694
+
'healthy',
19695
+
'hostname',
19696
+
'id',
19697
+
'name',
19698
+
'oauth_auth_endpoint',
19699
+
'oauth_register_endpoint',
19700
+
'oauth_token_endpoint',
19701
+
'port_override',
19702
+
'proxy_cluster_id',
19703
+
'secret_store_id',
19704
+
'subdomain',
19705
+
'tags',
19706
+
]
19707
+
19708
+
def __init__(
19709
+
self,
19710
+
bind_interface=None,
19711
+
egress_filter=None,
19712
+
healthy=None,
19713
+
hostname=None,
19714
+
id=None,
19715
+
name=None,
19716
+
oauth_auth_endpoint=None,
19717
+
oauth_register_endpoint=None,
19718
+
oauth_token_endpoint=None,
19719
+
port_override=None,
19720
+
proxy_cluster_id=None,
19721
+
secret_store_id=None,
19722
+
subdomain=None,
19723
+
tags=None,
19724
+
):
19725
+
self.bind_interface = bind_interface if bind_interface is not None else ''
19726
+
'''
19727
+
The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided and may also be set to one of the ResourceIPAllocationMode constants to select between VNM, loopback, or default allocation.
19728
+
'''
19729
+
self.egress_filter = egress_filter if egress_filter is not None else ''
19730
+
'''
19731
+
A filter applied to the routing logic to pin datasource to nodes.
19732
+
'''
19733
+
self.healthy = healthy if healthy is not None else False
19734
+
'''
19735
+
True if the datasource is reachable and the credentials are valid.
19736
+
'''
19737
+
self.hostname = hostname if hostname is not None else ''
19738
+
'''
19739
+
The host to dial to initiate a connection from the egress node to this resource.
19740
+
'''
19741
+
self.id = id if id is not None else ''
19742
+
'''
19743
+
Unique identifier of the Resource.
19744
+
'''
19745
+
self.name = name if name is not None else ''
19746
+
'''
19747
+
Unique human-readable name of the Resource.
19748
+
'''
19749
+
self.oauth_auth_endpoint = oauth_auth_endpoint if oauth_auth_endpoint is not None else ''
19750
+
'''
19751
+
The OAuth 2.0 authorization endpoint URL.
19752
+
'''
19753
+
self.oauth_register_endpoint = oauth_register_endpoint if oauth_register_endpoint is not None else ''
19754
+
'''
19755
+
The OAuth 2.0 dynamic client registration endpoint URL.
19756
+
'''
19757
+
self.oauth_token_endpoint = oauth_token_endpoint if oauth_token_endpoint is not None else ''
19758
+
'''
19759
+
The OAuth 2.0 token endpoint URL.
19760
+
'''
19761
+
self.port_override = port_override if port_override is not None else 0
19762
+
'''
19763
+
The local port used by clients to connect to this resource. It is automatically generated if not provided on create and may be re-generated on update by specifying a value of -1.
19764
+
'''
19765
+
self.proxy_cluster_id = proxy_cluster_id if proxy_cluster_id is not None else ''
19766
+
'''
19767
+
ID of the proxy cluster for this resource, if any.
19768
+
'''
19769
+
self.secret_store_id = secret_store_id if secret_store_id is not None else ''
19770
+
'''
19771
+
ID of the secret store containing credentials for this resource, if any.
19772
+
'''
19773
+
self.subdomain = subdomain if subdomain is not None else ''
19774
+
'''
19775
+
DNS subdomain through which this resource may be accessed on clients. (e.g. "app-prod1" allows the resource to be accessed at "app-prod1.your-org-name.sdm-proxy-domain"). Only applicable to HTTP-based resources or resources using virtual networking mode.
19776
+
'''
19777
+
self.tags = tags if tags is not None else _porcelain_zero_value_tags()
0 commit comments